diff options
| author | Kinzcool <kinzzcool@hotmail.com> | 2014-10-19 01:19:40 -0400 |
|---|---|---|
| committer | Kinzcool <kinzzcool@hotmail.com> | 2014-10-19 01:19:40 -0400 |
| commit | 0bf163bf8fae3d9fc0f116964f5420d8875c2623 (patch) | |
| tree | e6654c056a30cf57ce25fd7cde2a96da45df6b14 /sql/create/create_mysql.sql | |
| parent | 2c6f7734784c2f37f37650c82543625d9268fc15 (diff) | |
DB/Hotfixes: Created a `hotfixes` database for DB2 data that can be sent via SMSG_DB_REPLY
* Added AreaPOI
* Added AreaPOIState
Diffstat (limited to 'sql/create/create_mysql.sql')
| -rw-r--r-- | sql/create/create_mysql.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/create/create_mysql.sql b/sql/create/create_mysql.sql index e182e06168f..a5e00ed7330 100644 --- a/sql/create/create_mysql.sql +++ b/sql/create/create_mysql.sql @@ -6,8 +6,12 @@ CREATE DATABASE `characters` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE DATABASE `auth` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; +CREATE DATABASE `hotfixes` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; + GRANT ALL PRIVILEGES ON `world` . * TO 'trinity'@'localhost' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON `characters` . * TO 'trinity'@'localhost' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON `auth` . * TO 'trinity'@'localhost' WITH GRANT OPTION; + +GRANT ALL PRIVILEGES ON `hotfixes` . * TO 'trinity'@'localhost' WITH GRANT OPTION; |
