11 lines
367 B
MySQL
11 lines
367 B
MySQL
|
|
||
|
CREATE TABLE IF NOT EXISTS committee_roles (
|
||
|
id_wolves integer PRIMARY KEY,
|
||
|
id_role integer DEFAULT 1,
|
||
|
id_channel integer DEFAULT 1,
|
||
|
-- not strictly required but for readability and debugging
|
||
|
name_role text NOT NULL DEFAULT '',
|
||
|
name_channel text NOT NULL DEFAULT '',
|
||
|
count integer DEFAULT 0
|
||
|
);
|