mirror of
https://github.com/nx-bat/discordbot-ng.git
synced 2026-09-22 18:39:08 -04:00
13 lines
472 B
SQL
13 lines
472 B
SQL
--------------------------------------------------------------------------------
|
|
-- Up
|
|
--------------------------------------------------------------------------------
|
|
CREATE TABLE role_buttons (
|
|
id INTEGER PRIMARY KEY,
|
|
message_id TEXT NOT NULL,
|
|
role_id TEXT NOT NULL
|
|
);
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Down
|
|
--------------------------------------------------------------------------------
|
|
DROP TABLE role_buttons; |