Add UI for defining default roles

This commit is contained in:
Cadence Ember
2026-03-08 22:35:10 +13:00
parent 9eaa85c072
commit 6a2606cbdb
8 changed files with 124 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
BEGIN TRANSACTION;
CREATE TABLE "role_default" (
"guild_id" TEXT NOT NULL,
"role_id" TEXT NOT NULL,
PRIMARY KEY ("guild_id", "role_id")
);
COMMIT;

View File

@@ -104,6 +104,11 @@ export type Models = {
historical_room_index: number
}
role_default: {
guild_id: string
role_id: string
}
room_upgrade_pending: {
new_room_id: string
old_room_id: string