Initial commit

This commit is contained in:
Elias Wendland
2026-07-04 18:22:45 +02:00
commit 776840b82d
10 changed files with 446 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
CREATE TABLE IF NOT EXISTS auto_roles (
guild_id BIGINT NOT NULL,
role_id BIGINT NOT NULL
);
CREATE TABLE IF NOT EXISTS reaction_role (
guild_id BIGINT NOT NULL,
channel_id BIGINT NOT NULL,
message_id BIGINT NOT NULL,
role_id BIGINT NOT NULL,
emoji_id BIGINT NOT NULL
);
CREATE TABLE IF NOT EXISTS admin_users (
guild_id BIGINT NOT NULL,
user_id BIGINT NOT NULL
);
CREATE TABLE IF NOT EXISTS admin_roles (
guild_id BIGINT NOT NULL,
role_id BIGINT NOT NULL
);