From 0bf163bf8fae3d9fc0f116964f5420d8875c2623 Mon Sep 17 00:00:00 2001 From: Kinzcool Date: Sun, 19 Oct 2014 01:19:40 -0400 Subject: DB/Hotfixes: Created a `hotfixes` database for DB2 data that can be sent via SMSG_DB_REPLY * Added AreaPOI * Added AreaPOIState --- sql/create/create_mysql.sql | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sql/create/create_mysql.sql') 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; -- cgit v1.2.3