Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MrShepherd committed Nov 18, 2016
1 parent 055d6cb commit b575d90
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions sql/initialize.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
-- create user and database for dev-env
create user 'lolhfdev'@'localhost' identified by 'lolhfdev';
create database lolhfdev;
grant all on lolhfdev.* to 'lolhfdev'@'localhost';
CREATE USER 'lolhfdev'@'localhost';
IDENTIFIED BY 'lolhfdev';
CREATE DATABASE lolhfdev;
GRANT ALL ON lolhfdev.* TO 'lolhfdev'@'localhost';

-- create user and database for test-env
create user 'lolhftest'@'localhost' identified by 'lolhftest';
create database lolhftest;
grant all on lolhftest.* to 'lolhftest'@'localhost';
CREATE USER 'lolhftest'@'localhost';
IDENTIFIED BY 'lolhftest';
CREATE DATABASE lolhftest;
GRANT ALL ON lolhftest.* TO 'lolhftest'@'localhost';

0 comments on commit b575d90

Please sign in to comment.