aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql28
1 files changed, 28 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql
new file mode 100644
index 00000000000..2c814698f2b
--- /dev/null
+++ b/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql
@@ -0,0 +1,28 @@
+--
+-- Table structure for table `cinematic_camera`
+--
+
+DROP TABLE IF EXISTS `cinematic_camera`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cinematic_camera` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Model` text,
+ `OriginX` float NOT NULL DEFAULT '0',
+ `OriginY` float NOT NULL DEFAULT '0',
+ `OriginZ` float NOT NULL DEFAULT '0',
+ `OriginFacing` float NOT NULL DEFAULT '0',
+ `SoundID` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cinematic_camera`
+--
+
+LOCK TABLES `cinematic_camera` WRITE;
+/*!40000 ALTER TABLE `cinematic_camera` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cinematic_camera` ENABLE KEYS */;
+UNLOCK TABLES;