Files
mod-autobalance/data/db-characters/base/group_difficulty.sql

7 lines
254 B
SQL

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