mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
TDB 335.21101 - 2021/10/15
This commit is contained in:
@@ -1993,7 +1993,8 @@ INSERT INTO `updates` VALUES
|
||||
('2021_06_20_00_auth.sql','7CA418D570DC1444C19AAD18F4A50FF187642310','ARCHIVED','2021-06-20 17:29:17',0),
|
||||
('2021_07_15_00_auth.sql','C8B29D477A5A6704775517EF8203871BFE3D4906','ARCHIVED','2021-07-15 07:32:48',0),
|
||||
('2021_08_15_00_auth.sql','256E06BF052C246B92B61AD7DD6233D98EEA6E9E','ARCHIVED','2021-08-15 16:59:31',0),
|
||||
('2021_09_28_00_auth.sql','07B3ECF2EBAF1F1C3692059CB3A05B1088A93E18','ARCHIVED','2021-09-28 20:48:10',0);
|
||||
('2021_09_28_00_auth.sql','07B3ECF2EBAF1F1C3692059CB3A05B1088A93E18','ARCHIVED','2021-09-28 20:48:10',0),
|
||||
('2021_10_15_00_auth.sql','4FFD29A3ED1DB13874E755A84BFD7ABA2DF5C2DB','ARCHIVED','2021-10-15 08:43:41',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
@@ -2132,4 +2133,4 @@ SET character_set_client = @saved_cs_client;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2021-09-28 20:48:13
|
||||
-- Dump completed on 2021-10-15 8:43:43
|
||||
|
||||
@@ -2667,7 +2667,8 @@ INSERT INTO `updates` VALUES
|
||||
('2021_07_15_00_characters.sql','2ACFF71253DEA0F059476AEA52A55196E6D5DCFE','ARCHIVED','2021-07-15 07:32:48',0),
|
||||
('2021_07_18_00_characters.sql','0BA579ED21F4E75AC2B4797421B5029568B3F6E2','ARCHIVED','2021-07-18 11:55:00',0),
|
||||
('2021_08_15_00_characters.sql','A8A32D47C65FB6A0C7995F8342D85B6A50C6C63F','ARCHIVED','2021-08-15 16:59:31',0),
|
||||
('2021_09_28_00_characters.sql','A57869AE14FFFA935AB57318F65F4F1217AA2421','ARCHIVED','2021-09-28 20:48:10',0);
|
||||
('2021_09_28_00_characters.sql','A57869AE14FFFA935AB57318F65F4F1217AA2421','ARCHIVED','2021-09-28 20:48:10',0),
|
||||
('2021_10_15_00_characters.sql','174355CFEA8FADA50B731F54E028561AFCF46AA6','ARCHIVED','2021-10-15 08:43:41',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
@@ -2838,4 +2839,4 @@ UNLOCK TABLES;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2021-09-28 20:48:13
|
||||
-- Dump completed on 2021-10-15 8:43:44
|
||||
|
||||
@@ -360,6 +360,7 @@ CREATE TABLE `creature_addon` (
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`path_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`MountCreatureID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int(10) unsigned NOT NULL DEFAULT '1',
|
||||
`emote` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
@@ -484,6 +485,21 @@ CREATE TABLE `creature_model_info` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `creature_movement_info`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `creature_movement_info`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `creature_movement_info` (
|
||||
`MovementID` int(8) unsigned NOT NULL DEFAULT '0' COMMENT 'creature_template.movementId value',
|
||||
`WalkSpeed` float unsigned DEFAULT NULL,
|
||||
`RunSpeed` float unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`MovementID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `creature_movement_override`
|
||||
--
|
||||
@@ -674,6 +690,7 @@ CREATE TABLE `creature_template_addon` (
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`path_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`MountCreatureID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int(10) unsigned NOT NULL DEFAULT '1',
|
||||
`emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
@@ -4044,4 +4061,4 @@ CREATE TABLE `waypoints` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2021-09-28 20:48:13
|
||||
-- Dump completed on 2021-10-15 8:43:44
|
||||
|
||||
2
sql/updates/auth/3.3.5/2021_10_15_00_auth.sql
Normal file
2
sql/updates/auth/3.3.5/2021_10_15_00_auth.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- TDB 335.21101 auth
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
@@ -0,0 +1,2 @@
|
||||
-- TDB 335.21101 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
3
sql/updates/world/3.3.5/2021_10_15_00_world.sql
Normal file
3
sql/updates/world/3.3.5/2021_10_15_00_world.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- TDB 335.21101 world
|
||||
UPDATE `version` SET `db_version`='TDB 335.21101', `cache_id`=21101 LIMIT 1;
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
Reference in New Issue
Block a user