Now role auto creation on boost can be disabled

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-06-22 20:40:29 +01:00
parent 9f53ee668c
commit a37a8a6935
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
4 changed files with 89 additions and 48 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "guild" ADD COLUMN "auto_create_booster_roles" BOOLEAN NOT NULL DEFAULT true;

View file

@ -9,9 +9,10 @@ datasource db {
}
model guild {
id String @id @unique
name String
reports_channel_id String?
id String @id @unique
name String
reports_channel_id String?
auto_create_booster_roles Boolean @default(true)
}
model member {