From 14d6719960d0a551e448caa883aa64bbd55fc577 Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Thu, 7 Mar 2024 11:04:05 -0600 Subject: [PATCH] Update DB permissions for SE user --- config/sql/users.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sql/users.sql b/config/sql/users.sql index 94b5b5c3..efc6e83f 100644 --- a/config/sql/users.sql +++ b/config/sql/users.sql @@ -3,7 +3,7 @@ create user 'se'@'localhost' identified by unix_socket; create user 'www-data'@'localhost' identified by unix_socket; grant * on * to alex@localhost identified via unix_socket; -grant select, insert, update, delete, execute on se.* to se@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; flush privileges;