mirror of
https://github.com/araxiaonline/mod-mythic-plus.git
synced 2026-06-13 11:12:23 -04:00
8 lines
208 B
SQL
8 lines
208 B
SQL
DROP TABLE IF EXISTS group_difficulty;
|
|
|
|
CREATE TABLE group_difficulty (
|
|
guid INT UNSIGNED NOT NULL DEFAULT '0',
|
|
difficulty TINYINT UNSIGNED NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (guid)
|
|
);
|