-Fixed module sql structure

This commit is contained in:
kadeshar
2025-08-27 19:04:01 +02:00
parent 5469333465
commit 37458f0dc5
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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;