Remove irrelevant user from SQL config

This commit is contained in:
Alex Cabal 2024-10-22 22:47:56 -05:00
parent 4a8ebb411b
commit b6fbcaba26

View file

@ -1,9 +1,7 @@
create user 'alex'@'localhost' identified via unix_socket;
create user 'se'@'localhost' identified via unix_socket;
create user 'www-data'@'localhost' identified via unix_socket;
create user 'se-vcs-bot'@'localhost' identified via unix_socket;
grant * on * to alex@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;