generated from lucxjo/template
Now role auto creation on boost can be disabled
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
9f53ee668c
commit
a37a8a6935
4 changed files with 89 additions and 48 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "guild" ADD COLUMN "auto_create_booster_roles" BOOLEAN NOT NULL DEFAULT true;
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue