feat(DB): Release ACDB 9.0.0 (#16069)

* squishy
This commit is contained in:
Gultask 2023-04-25 01:48:38 -03:00 committed by GitHub
parent df77b5f4f7
commit 5ca6fe6fda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
785 changed files with 133828 additions and 126861 deletions

View file

@ -19,20 +19,20 @@ DROP TABLE IF EXISTS `instance_template`;
CREATE TABLE IF NOT EXISTS `instance_template` (
`map` smallint unsigned NOT NULL,
`parent` smallint unsigned NOT NULL,
`script` varchar(128) NOT NULL DEFAULT '',
`script` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`allowMount` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`map`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Dumping data for table acore_world.instance_template: 85 rows
-- Dumping data for table acore_world.instance_template: ~85 rows (approximately)
DELETE FROM `instance_template`;
/*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
INSERT INTO `instance_template` (`map`, `parent`, `script`, `allowMount`) VALUES
(30, 0, '', 1),
(33, 0, 'instance_shadowfang_keep', 0),
(34, 0, 'instance_the_stockade', 0),
(36, 0, 'instance_deadmines', 0),
(43, 1, 'instance_wailing_caverns', 0),
(44, 0, '', 0),
(47, 1, 'instance_razorfen_kraul', 0),
(48, 1, 'instance_blackfathom_deeps', 0),
(70, 0, 'instance_uldaman', 0),
@ -111,9 +111,7 @@ INSERT INTO `instance_template` (`map`, `parent`, `script`, `allowMount`) VALUES
(650, 571, 'instance_trial_of_the_champion', 0),
(658, 0, 'instance_pit_of_saron', 1),
(668, 0, 'instance_halls_of_reflection', 1),
(724, 0, 'instance_ruby_sanctum', 1),
(44, 0, '', 0);
/*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
(724, 0, 'instance_ruby_sanctum', 1);
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;