Files
mod-autobalance/data/db-characters/base/group_difficulty.sql
2024-07-19 21:24:29 -04:00

8 lines
276 B
SQL

DROP TABLE IF EXISTS acore_characters.group_difficulty;
CREATE TABLE acore_characters.group_difficulty
(
guid int unsigned default '0' not null primary key,
difficulty tinyint unsigned default '0' not null,
PRIMARY KEY (`guid`)
)