1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-06-15 05:13:11 +00:00
nyaa/.docker/mariadb-init-sql/50-grant-binlog-access.sql
Alex Headley 18ebf134d5 feature: docker development environment (#544)
Add docker support

It's self-contained so should not interfere with anything else and can easily be thrown out if nobody wants it anymore.
2019-01-15 18:02:59 +01:00

4 lines
117 B
SQL

GRANT REPLICATION SLAVE ON *.* TO 'nyaadev'@'%';
GRANT REPLICATION CLIENT ON *.* TO 'nyaadev'@'%';
FLUSH PRIVILEGES;