aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/characters_database.sql4
-rw-r--r--sql/updates/9668_characters_gm_subsurveys.sql2
-rw-r--r--sql/updates/9668_characters_gm_surveys.sql2
-rw-r--r--sql/updates/9669_world_creature_template.sql8
4 files changed, 12 insertions, 4 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';
diff --git a/sql/updates/9668_characters_gm_subsurveys.sql b/sql/updates/9668_characters_gm_subsurveys.sql
index 4dae1442a3d..2deda4339fa 100644
--- a/sql/updates/9668_characters_gm_subsurveys.sql
+++ b/sql/updates/9668_characters_gm_subsurveys.sql
@@ -3,6 +3,6 @@ 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 DEFAULT '',
+ `comment` longtext NOT NULL,
PRIMARY KEY (`surveyid`,`subsurveyid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
diff --git a/sql/updates/9668_characters_gm_surveys.sql b/sql/updates/9668_characters_gm_surveys.sql
index 4f7aa5a6c91..e5146a404a7 100644
--- a/sql/updates/9668_characters_gm_surveys.sql
+++ b/sql/updates/9668_characters_gm_surveys.sql
@@ -3,7 +3,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';
diff --git a/sql/updates/9669_world_creature_template.sql b/sql/updates/9669_world_creature_template.sql
new file mode 100644
index 00000000000..dd82b6d9e47
--- /dev/null
+++ b/sql/updates/9669_world_creature_template.sql
@@ -0,0 +1,8 @@
+-- Icecrown Citadel needed vehicleIds
+
+-- Lord Marrowgar : Bone Spike vehicle
+UPDATE `creature_template` SET `vehicleId`=533 WHERE `entry`=36619;
+-- Deathbringer Saurfang
+UPDATE `creature_template` SET `VehicleId`=591 WHERE `entry` IN (37813, 3781301, 3781302, 3781303);
+ -- High Overlord Saurfang
+UPDATE `creature_template` SET `VehicleId`=599 WHERE `entry` IN (37187, 38156, 38637, 38638); \ No newline at end of file