mirror of
https://github.com/silviu20092/mod-reforging
synced 2025-11-29 16:38:15 +08:00
9 lines
367 B
SQL
9 lines
367 B
SQL
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; |