mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 10:31:59 -04:00
Add system to retrieve and manage donations in a local database
This commit is contained in:
parent
79c531aacb
commit
70a80d0e02
46 changed files with 782 additions and 910 deletions
9
config/sql/users.sql
Normal file
9
config/sql/users.sql
Normal file
|
@ -0,0 +1,9 @@
|
|||
create user 'alex'@'localhost' identified by unix_socket;
|
||||
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 on se.* to www-data@localhost identified via unix_socket;
|
||||
|
||||
flush privileges;
|
Loading…
Add table
Add a link
Reference in a new issue