mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-10 13:07:28 +02:00
10 lines
346 B
Text
10 lines
346 B
Text
model InstanceSettings {
|
|
id Int @id @default(1)
|
|
// Authentication & Security
|
|
disableUserRegistration Boolean @default(false) @map("disable_user_registration")
|
|
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
updatedAt DateTime @default(now()) @updatedAt @map("updated_at")
|
|
|
|
@@map("instance_settings")
|
|
}
|