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,8 @@
CREATE TABLE IF NOT EXISTS selfroles (
userid BIGINT NOT NULL,
guildid BIGINT NOT NULL,
roleid BIGINT,
UNIQUE (userid, guildid)
)