mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
9 lines
580 B
SQL
9 lines
580 B
SQL
create user if not exists 'se'@'localhost' identified via unix_socket;
|
|
create user if not exists 'www-data'@'localhost' identified via unix_socket;
|
|
create user if not exists 'se-vcs-bot'@'localhost' identified via unix_socket;
|
|
|
|
grant select, insert, update, delete, execute, lock tables on se.* to 'se'@'localhost' identified via unix_socket;
|
|
grant select, insert, update, delete, execute on se.* to 'www-data'@'localhost' identified via unix_socket;
|
|
grant select, insert, update, delete, execute on se.* to 'se-vcs-bot'@'localhost' identified via unix_socket;
|
|
|
|
flush privileges;
|