diff options
| author | TDB Release <tdb-release@build.bot> | 2021-01-15 08:31:35 +0000 |
|---|---|---|
| committer | TDB Release <tdb-release@build.bot> | 2021-01-15 08:31:35 +0000 |
| commit | 0b7b7f10f90eb5ef25c47749455572bcaa662d98 (patch) | |
| tree | ce88ffa0b2cded67829e285aa6098cfd8352f133 /sql/base/dev | |
| parent | 5d1075959aa01d6a0b36f1337de95d768967f57b (diff) | |
TDB 335.21011 - 2021/01/15TDB335.21011
Diffstat (limited to 'sql/base/dev')
| -rw-r--r-- | sql/base/dev/world_database.sql | 20 |
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 |
