EverWrath/sql/structure/CHARACTERS_BREW_OF_THE_MONTH.sql
Yehonal e8e94a0a66 First Commit
For Azeroth!
2016-06-26 10:39:44 +02:00

9 lines
364 B
SQL

-- ----------------------------
-- Table structure for character_brew_of_the_month
-- ----------------------------
DROP TABLE IF EXISTS `character_brew_of_the_month`;
CREATE TABLE `character_brew_of_the_month` (
`guid` int(10) unsigned NOT NULL,
`lastEventId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;