Files
TrinityCore/sql/updates/9668_characters_gm_subsurveys.sql
T
Shocker 72358a1b5f * Include needed SQL data for Lord Marrowgar / Deathbringer Saurfang
* Small SQL correction from a previous commit, MySQL doesn't allow default value for a LONGTEXT on Windows, unlinke Linux where it's only a warning

--HG--
branch : trunk
2010-08-30 09:26:28 +03:00

9 lines
371 B
SQL

DROP TABLE IF EXISTS `gm_subsurveys`;
CREATE TABLE `gm_subsurveys` (
`surveyid` int(10) NOT NULL auto_increment,
`subsurveyid` int(11) UNSIGNED NOT NULL DEFAULT '0',
`rank` int(11) UNSIGNED NOT NULL DEFAULT '0',
`comment` longtext NOT NULL,
PRIMARY KEY (`surveyid`,`subsurveyid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';