diff options
| author | Shocker <none@none> | 2010-08-30 09:26:28 +0300 |
|---|---|---|
| committer | Shocker <none@none> | 2010-08-30 09:26:28 +0300 |
| commit | 72358a1b5f48e24560503243417db3541a6625c6 (patch) | |
| tree | 68ed03c2a6c9ee3a2f044633a36149c47a634746 /sql/base/characters_database.sql | |
| parent | 08205afcc94045c8d74ee4283821db68c5333b1d (diff) | |
* 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
Diffstat (limited to 'sql/base/characters_database.sql')
| -rw-r--r-- | sql/base/characters_database.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 1299a9a698f..52adfc53436 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -1320,7 +1320,7 @@ CREATE TABLE `gm_subsurveys` ( `surveyid` int(10) NOT NULL, `subsurveyid` int(11) UNSIGNED NOT NULL DEFAULT '0', `rank` int(11) UNSIGNED NOT NULL DEFAULT '0', - `comment` longtext NOT NULL DEFAULT '', + `comment` longtext NOT NULL, PRIMARY KEY (`surveyid`,`subsurveyid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1344,7 +1344,7 @@ 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 DEFAULT '', + `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'; |
