From 82b3a409db4dfe689c84234f3ae427369325bf0b Mon Sep 17 00:00:00 2001 From: Meji Date: Sat, 16 Oct 2021 00:48:54 +0200 Subject: Core/BattlePets: Store declined names (#27025) --- sql/updates/auth/master/2021_10_15_01_auth.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sql/updates/auth/master/2021_10_15_01_auth.sql (limited to 'sql/updates') diff --git a/sql/updates/auth/master/2021_10_15_01_auth.sql b/sql/updates/auth/master/2021_10_15_01_auth.sql new file mode 100644 index 00000000000..53dafc768eb --- /dev/null +++ b/sql/updates/auth/master/2021_10_15_01_auth.sql @@ -0,0 +1,11 @@ +DROP TABLE IF EXISTS `battle_pet_declinedname`; +CREATE TABLE `battle_pet_declinedname` ( + `guid` bigint(20) 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; -- cgit v1.2.3