Files
mod-reforging/data/sql/db-characters/base/character_reforging.sql
2025-03-01 10:04:34 +02:00

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;