mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-10 04:57:28 +02:00
93 lines
2.5 KiB
Text
93 lines
2.5 KiB
Text
enum TimeFormat {
|
|
hours12
|
|
hours24
|
|
|
|
@@map("time_format")
|
|
}
|
|
|
|
model Account {
|
|
id String @id @default(cuid())
|
|
userId String @map("user_id")
|
|
type String
|
|
provider String
|
|
providerAccountId String @map("provider_account_id")
|
|
refresh_token String? @db.Text
|
|
access_token String? @db.Text
|
|
expires_at Int?
|
|
token_type String?
|
|
scope String?
|
|
id_token String? @db.Text
|
|
session_state String?
|
|
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
|
|
@@unique([provider, providerAccountId])
|
|
@@map("accounts")
|
|
}
|
|
|
|
enum UserRole {
|
|
admin
|
|
user
|
|
|
|
@@map("user_role")
|
|
}
|
|
|
|
model User {
|
|
id String @id @default(cuid())
|
|
name String
|
|
email String @unique() @db.Citext
|
|
emailVerified DateTime? @map("email_verified")
|
|
image String?
|
|
timeZone String? @map("time_zone")
|
|
weekStart Int? @map("week_start")
|
|
timeFormat TimeFormat? @map("time_format")
|
|
locale String?
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
updatedAt DateTime? @updatedAt @map("updated_at")
|
|
customerId String? @map("customer_id")
|
|
banned Boolean @default(false)
|
|
bannedAt DateTime? @map("banned_at")
|
|
banReason String? @map("ban_reason")
|
|
role UserRole @default(user)
|
|
|
|
comments Comment[]
|
|
polls Poll[]
|
|
watcher Watcher[]
|
|
accounts Account[]
|
|
participants Participant[]
|
|
paymentMethods PaymentMethod[]
|
|
subscription Subscription? @relation("UserToSubscription")
|
|
|
|
spaces Space[] @relation("UserSpaces")
|
|
|
|
pollViews PollView[]
|
|
scheduledEvents ScheduledEvent[]
|
|
scheduledEventInvites ScheduledEventInvite[]
|
|
|
|
@@map("users")
|
|
}
|
|
|
|
model Space {
|
|
id String @id @default(uuid())
|
|
name String
|
|
ownerId String @map("owner_id")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
|
|
owner User @relation("UserSpaces", fields: [ownerId], references: [id], onDelete: Cascade)
|
|
polls Poll[]
|
|
scheduledEvents ScheduledEvent[]
|
|
subscription Subscription? @relation("SpaceToSubscription")
|
|
|
|
@@index([ownerId], type: Hash)
|
|
@@map("spaces")
|
|
}
|
|
|
|
model VerificationToken {
|
|
identifier String @db.Citext
|
|
token String @unique
|
|
expires DateTime
|
|
|
|
@@unique([identifier, token])
|
|
@@map("verification_tokens")
|
|
}
|