diff options
| author | Nay <dnpd.dd@gmail.com> | 2011-03-07 21:20:31 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2011-03-07 21:20:31 +0000 |
| commit | 05d6bef5f6edb35f6d4cdefafde9f4a26789cbca (patch) | |
| tree | 9571b9c8f8fef934ffc4379e5e3447530f988408 /sql/base/world_database.sql | |
| parent | 4bed6b7831fcd85e0ab6bd80bda54643af899564 (diff) | |
DB/NPC: Spawn Shango with pathing.
SQL: Fix typo and add missing changes to world_database.sql
Closes #883
Diffstat (limited to 'sql/base/world_database.sql')
| -rw-r--r-- | sql/base/world_database.sql | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 1bdfa3c6dbd..9cf17d7b551 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -27758,13 +27758,13 @@ INSERT INTO `trinity_string` (`entry`,`content_default`,`content_loc1`,`content_ UNLOCK TABLES; -- --- Table structure for table `vehicle_accessory` +-- Table structure for table `vehicle_template_accessory` -- -DROP TABLE IF EXISTS `vehicle_accessory`; +DROP TABLE IF EXISTS `vehicle_template_accessory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `vehicle_accessory` ( +CREATE TABLE `vehicle_template_accessory` ( `entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0, `accessory_entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0, `seat_id` TINYINT(1) SIGNED NOT NULL DEFAULT 0, @@ -27779,17 +27779,47 @@ AVG_ROW_LENGTH=0; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Dumping data for table `vehicle_accessory` +-- Dumping data for table `vehicle_template_accessory` -- -LOCK TABLES `vehicle_accessory` WRITE; -/*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */; -INSERT INTO `vehicle_accessory` VALUES +LOCK TABLES `vehicle_template_accessory` WRITE; +/*!40000 ALTER TABLE `vehicle_template_accessory` DISABLE KEYS */; +INSERT INTO `vehicle_template_accessory` VALUES (36476,36477,0,0, 'Krick and Ick'), (36661,36658,0,0, 'Scourgelord Tyrannus and Rimefang'), (36891,31260,0,0, 'Ymirjar Skycaller on Drake'), (36678,38309,0,1, 'Professor Putricide - trigger'), (36678,38308,1,1, 'Professor Putricide - trigger'); +/*!40000 ALTER TABLE `vehicle_template_accessory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `vehicle_accessory` +-- + +DROP TABLE IF EXISTS `vehicle_accessory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `vehicle_accessory` ( + `guid` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0, + `accessory_entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0, + `seat_id` TINYINT(1) SIGNED NOT NULL DEFAULT 0, + `minion` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, + `description` TEXT NOT NULL, + PRIMARY KEY (`entry`, `seat_id`) +) +COLLATE=utf8_general_ci +ENGINE=MyISAM +ROW_FORMAT=FIXED +AVG_ROW_LENGTH=0; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `vehicle_accessory` +-- + +LOCK TABLES `vehicle_accessory` WRITE; +/*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */; /*!40000 ALTER TABLE `vehicle_accessory` ENABLE KEYS */; UNLOCK TABLES; |
