Last active
December 21, 2015 14:18
-
-
Save harmy/6318187 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| drop database if exists game; | |
| drop database if exists info; | |
| create database game default charset utf8; | |
| create database info default charset utf8; | |
| create user 'game'@'localhost' identified by 'game'; | |
| create user 'game'@'%' identified by 'game'; | |
| grant all privileges on game.* to 'game'@'localhost'; | |
| grant all privileges on game.* to 'game'@'%'; | |
| grant all privileges on info.* to 'game'@'localhost'; | |
| grant all privileges on info.* to 'game'@'%'; | |
| flush privileges; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment