mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Redirect if user does not exist.
This commit is contained in:
@@ -126,3 +126,16 @@ model Restauration {
|
||||
databaseId String? @map("database_id")
|
||||
database Database? @relation(fields: [databaseId], references: [id], onDelete: Cascade)
|
||||
}
|
||||
|
||||
enum TypeStorage {
|
||||
local
|
||||
s3
|
||||
}
|
||||
|
||||
model Settings {
|
||||
id String @id @default(cuid())
|
||||
storage TypeStorage @default(local)
|
||||
s3AccessKeyId String?
|
||||
s3SecretAccessKey String?
|
||||
S3BucketName String?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user