mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-19 06:19:38 -04:00
72358a1b5f
* 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
10 lines
404 B
SQL
10 lines
404 B
SQL
DROP TABLE IF EXISTS `gm_surveys`;
|
|
CREATE TABLE `gm_surveys` (
|
|
`surveyid` int(10) NOT NULL auto_increment,
|
|
`player` int(11) UNSIGNED NOT NULL DEFAULT '0',
|
|
`mainSurvey` int(11) UNSIGNED NOT NULL DEFAULT '0',
|
|
`overall_comment` longtext NOT NULL,
|
|
`timestamp` int(11) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`surveyid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|