Remove old unnecessary sub-directory

This commit is contained in:
silviu20092
2025-03-01 10:04:34 +02:00
parent 5cfffd54ab
commit 576191c9b7
32 changed files with 10 additions and 11 deletions

View File

View File

@@ -0,0 +1,9 @@
DROP TABLE IF EXISTS `character_reforging`;
CREATE TABLE `character_reforging`(
`guid` int unsigned not null,
`item_guid` int unsigned not null,
`stat_decrease` int unsigned not null,
`stat_increase` int unsigned not null,
`stat_value` int unsigned not null,
PRIMARY KEY (`item_guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;