Core/BattlePets: Store declined names
Port From (https://github.com/TrinityCore/TrinityCore/commit/82b3a409db4dfe689c84234f3ae427369325bf0b)
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user