mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
10 lines
359 B
SQL
10 lines
359 B
SQL
DROP TABLE IF EXISTS `emotetextsound_dbc`;
|
|
CREATE TABLE `emotetextsound_dbc` (
|
|
`Id` INT NOT NULL DEFAULT '0',
|
|
`EmotesTextId` INT NOT NULL DEFAULT '0',
|
|
`RaceId` INT NOT NULL DEFAULT '0',
|
|
`SexId` INT NOT NULL DEFAULT '0',
|
|
`SoundId` INT NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`Id`) USING BTREE
|
|
) ENGINE=MYISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
|