mirror of
https://github.com/araxiaonline/mod-autobalance.git
synced 2026-06-13 03:02:26 -04:00
7 lines
254 B
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
|
|
)
|