diff options
author | Meji <alvaromegias_46@hotmail.com> | 2021-10-16 00:48:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 00:48:54 +0200 |
commit | 82b3a409db4dfe689c84234f3ae427369325bf0b (patch) | |
tree | 3659688b099e811a4d263e647384508ed7bc3684 /sql/base | |
parent | 518c86f9acd87d6597b2e236cfc3a773ee700fd3 (diff) |
Core/BattlePets: Store declined names (#27025)
Diffstat (limited to 'sql/base')
-rw-r--r-- | sql/base/auth_database.sql | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 5c3f6b59337..5ca1ccfac57 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -200,6 +200,35 @@ LOCK TABLES `autobroadcast` WRITE; UNLOCK TABLES; -- +-- Table structure for table `battle_pet_declinedname` +-- + +DROP TABLE IF EXISTS `battle_pet_declinedname`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_declinedname` ( + `guid` bigint NOT NULL, + `genitive` varchar(12) NOT NULL DEFAULT '', + `dative` varchar(12) NOT NULL DEFAULT '', + `accusative` varchar(12) NOT NULL DEFAULT '', + `instrumental` varchar(12) NOT NULL DEFAULT '', + `prepositional` varchar(12) NOT NULL DEFAULT '', + PRIMARY KEY (`guid`), + CONSTRAINT `fk_battle_pet__battle_pet_declinedname` FOREIGN KEY (`guid`) REFERENCES `battle_pets` (`guid`) ON DELETE RESTRICT ON UPDATE RESTRICT +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_declinedname` +-- + +LOCK TABLES `battle_pet_declinedname` WRITE; +/*!40000 ALTER TABLE `battle_pet_declinedname` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_declinedname` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +-- -- Table structure for table `battle_pet_slots` -- @@ -2428,7 +2457,8 @@ INSERT INTO `updates` VALUES ('2021_09_10_00_auth.sql','DE94812ABC7B395C6C3405FB6718A8AF2C9F8FEC','ARCHIVED','2021-09-10 12:18:54',0), ('2021_10_07_00_auth.sql','45F2D92E28382F0CBE1F9B3A97693C0CC69E50BC','ARCHIVED','2021-10-07 10:32:05',0), ('2021_10_13_00_auth.sql','220E63385CACCBCEC36C57717DE369F2FCABCAAF','ARCHIVED','2021-10-13 21:15:05',0), -('2021_10_15_00_auth.sql','C8AA212AB2BB2DB5B3C2C9622A3874475AEFBD7B','ARCHIVED','2021-10-15 10:11:47',0); +('2021_10_15_00_auth.sql','C8AA212AB2BB2DB5B3C2C9622A3874475AEFBD7B','ARCHIVED','2021-10-15 10:11:47',0), +('2021_10_15_01_auth.sql','72A0437F0ADEC59FF9D6839DF845C473F693CA5B','RELEASED','2021-10-16 00:15:25',0); /*!40000 ALTER TABLE `updates` ENABLE KEYS */; UNLOCK TABLES; |