aboutsummaryrefslogtreecommitdiff
path: root/sql/base/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sql/base/dev')
-rw-r--r--sql/base/dev/world_database.sql20
1 files changed, 17 insertions, 3 deletions
diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql
index 2b15b896496..c6150505b32 100644
--- a/sql/base/dev/world_database.sql
+++ b/sql/base/dev/world_database.sql
@@ -1,8 +1,8 @@
--- MySQL dump 10.13 Distrib 5.7.30, for Linux (x86_64)
+-- MySQL dump 10.13 Distrib 5.7.32, for Linux (x86_64)
--
-- Host: localhost Database: world
-- ------------------------------------------------------
--- Server version 5.7.30-0ubuntu0.18.04.1
+-- Server version 5.7.32-0ubuntu0.18.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -3756,6 +3756,20 @@ CREATE TABLE `vehicle_seat_addon` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
+-- Table structure for table `vehicle_template`
+--
+
+DROP TABLE IF EXISTS `vehicle_template`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `vehicle_template` (
+ `creatureId` int(10) unsigned NOT NULL,
+ `despawnDelayMs` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`creatureId`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
-- Table structure for table `vehicle_template_accessory`
--
@@ -4028,4 +4042,4 @@ CREATE TABLE `waypoints` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2020-12-15 22:47:29
+-- Dump completed on 2021-01-15 8:29:39