Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: MySQL | Size: 1.98 KB | Hits: 93 | Expires: Never
Copy text to clipboard
  1. DROP TABLE IF EXISTS `vehicle_accessory`;
  2. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  3. /*!40101 SET character_set_client = utf8 */;
  4. CREATE TABLE `vehicle_accessory` (
  5.         `entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
  6.         `accessory_entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
  7.         `seat_id` TINYINT(1) SIGNED NOT NULL DEFAULT 0,
  8.         `minion` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
  9.         `description` TEXT NOT NULL,
  10.         PRIMARY KEY (`entry`, `seat_id`)
  11. )
  12. COLLATE=utf8_general_ci
  13. ENGINE=MyISAM
  14. ROW_FORMAT=FIXED
  15. AVG_ROW_LENGTH=0;
  16. /*!40101 SET character_set_client = @saved_cs_client */;
  17.  
  18. --
  19. -- Dumping data for table `version`
  20. --
  21.  
  22. LOCK TABLES `vehicle_accessory` WRITE;
  23. /*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */;
  24. INSERT INTO `vehicle_accessory` (`entry`,`accessory_entry`,`seat_id`,`minion`,`description`) VALUES
  25. (28782,28768,0,0, 'Acherus Deathcharger'),
  26. (28312,28319,7,1, 'Wintergrasp Siege Engine'),
  27. (32627,32629,7,1, 'Wintergrasp Siege Engine'),
  28. (32930,32933,0,1, 'Kologarn'),
  29. (32930,32934,1,1, 'Kologarn'),
  30. (33109,33167,1,1, 'Salvaged Demolisher'),
  31. (33060,33067,7,1, 'Salvaged Siege Engine'),
  32. (33113,33114,0,1, 'Flame Leviathan'),
  33. (33113,33114,1,1, 'Flame Leviathan'),
  34. (33113,33114,2,1, 'Flame Leviathan'),
  35. (33113,33114,3,1, 'Flame Leviathan'),
  36. (33113,33139,7,1, 'Flame Leviathan'),
  37. (33114,33142,1,1, 'Overload Control Device'),      
  38. (33114,33143,2,1, 'Leviathan Defense Turret'),      
  39. (33214,33218,1,1, 'Mechanolift 304-A'),      
  40. (35637,34705,0,0, 'Marshal Jacob Alerius'' Mount'),
  41. (35633,34702,0,0, 'Ambrose Boltspark''s Mount'),
  42. (35768,34701,0,0, 'Colosos'' Mount'),
  43. (34658,34657,0,0, 'Jaelyne Evensong''s Mount'),
  44. (35636,34703,0,0, 'Lana Stouthammer''s Mount'),
  45. (35638,35572,0,0, 'Mokra the Skullcrusher''s Mount'),
  46. (35635,35569,0,0, 'Eressea Dawnsinger''s Mount'),
  47. (35640,35571,0,0, 'Runok Wildmane''s Mount'),
  48. (35641,35570,0,0, 'Zul''tore''s Mount'),
  49. (35634,35617,0,0, 'Deathstalker Visceri''s Mount');