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