diff options
author | TDB Release <tdb-release@build.bot> | 2021-10-15 10:18:03 +0000 |
---|---|---|
committer | TDB Release <tdb-release@build.bot> | 2021-10-15 10:18:03 +0000 |
commit | 251ad7f8a838c0de1495b351ad6bead2e5968896 (patch) | |
tree | 0b0b57124142e16bcb4ac4396c6a624040fa3a11 /sql/base/dev/hotfixes_database.sql | |
parent | 990e4d86576751c517549eecc0747b2a8b65129a (diff) |
TDB 910.21101 - 2021/10/15TDB910.21101
Diffstat (limited to 'sql/base/dev/hotfixes_database.sql')
-rw-r--r-- | sql/base/dev/hotfixes_database.sql | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/sql/base/dev/hotfixes_database.sql b/sql/base/dev/hotfixes_database.sql index 917a38e1065..d27b8f2a777 100644 --- a/sql/base/dev/hotfixes_database.sql +++ b/sql/base/dev/hotfixes_database.sql @@ -7663,6 +7663,23 @@ CREATE TABLE `spell_reagents` ( /*!40101 SET character_set_client = @saved_cs_client */; -- +-- Table structure for table `spell_reagents_currency` +-- + +DROP TABLE IF EXISTS `spell_reagents_currency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `spell_reagents_currency` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `CurrencyTypesID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyCount` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- -- Table structure for table `spell_scaling` -- @@ -8799,4 +8816,4 @@ CREATE TABLE `world_state_expression` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2021-08-18 15:14:20 +-- Dump completed on 2021-10-15 10:11:51 |