Release 0.1.0
Run cargo test / Run tests (push) Successful in 3m34s
Build Docker Package / build (push) Successful in 6m19s
Build Docker Package / build (release) Successful in 6m51s

This commit is contained in:
Elias Wendland
2026-07-05 00:09:41 +02:00
parent 68be3468bf
commit b0bcc4d4ee
6 changed files with 34 additions and 13 deletions
+29
View File
@@ -0,0 +1,29 @@
CREATE TABLE IF NOT EXISTS auto_roles (
guild_id BIGINT NOT NULL,
role_id BIGINT NOT NULL,
enabled BOOLEAN 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
);
CREATE TABLE IF NOT EXISTS users (
guild_id BIGINT NOT NULL,
user_id BIGINT NOT NULL,
settings_get_messaged_about_errors BOOLEAN NOT NULL
);