use sqlx migrations

This commit is contained in:
2025-06-26 12:58:44 -04:00
parent 4509359c0e
commit c054ef1c1c
8 changed files with 44 additions and 63 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS settings (
guildid BIGINT NOT NULL PRIMARY KEY,
positional_role BIGINT,
banrole BIGINT,
hoist_selfroles BOOLEAN,
prefix TEXT
)