Skip to content

Commit

Permalink
Added update permission needed for mysqldump
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jan 20, 2014
1 parent 8c4c0fe commit 4740dad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysqlConfig.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
-- Test database
CREATE USER 'imstest'@'localhost' identified by 'imstest';
CREATE DATABASE imstest;
GRANT CREATE, DROP, DELETE, INDEX, SELECT, INSERT, UPDATE on imstest.* TO 'imstest'@'localhost';
GRANT ALTER, CREATE, DROP, DELETE, INDEX, SELECT, INSERT, UPDATE on imstest.* TO 'imstest'@'localhost';

-- Default IMS database
CREATE USER 'ims'@'localhost' identified by 'ims';
CREATE DATABASE ims;
GRANT CREATE, DROP, DELETE, INDEX, SELECT, INSERT, UPDATE, ALTER on ims.* TO 'ims'@'localhost';
GRANT ALTER, CREATE, DROP, DELETE, INDEX, SELECT, INSERT, UPDATE, ALTER on ims.* TO 'ims'@'localhost';

0 comments on commit 4740dad

Please sign in to comment.