generator client { provider = "prisma-client-js" } datasource db { provider = "mysql" url = env("DATABASE_URL") relationMode = "prisma" } model User { id String @id @default(cuid()) name String? email String? @unique emailVerified DateTime? image String? apiKeys ApiKey[] accounts Account[] twitchConnections TwitchConnection[] createdProfiles TtsProfile[] profileStatus TtsProfileStatus[] createdAt DateTime @default(now()) updatedAt DateTime @updatedAt } model Account { id String @id @default(cuid()) userId String type String provider String providerAccountId String 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]) } model ApiKey { id String @id @default(uuid()) label String userId String user User @relation(fields: [userId], references: [id], onDelete: Cascade) @@index([userId]) } model TwitchConnection { broadcasterId String @unique accessToken String refreshToken String userId String @id user User @relation(fields: [userId], references: [id], onDelete: Cascade) @@index([userId]) } model TtsProfile { id String @id @default(uuid()) name String createdAt DateTime @default(now()) updatedAt DateTime @updatedAt statuses TtsProfileStatus[] badgeFilters TtsBadgeFilter[] usernameFilters TtsUsernameFilter[] wordFilters TtsWordReplacementFilter[] creatorId String creator User @relation(fields: [creatorId], references: [id], onDelete: Cascade) @@index([creatorId]) @@unique([creatorId, name]) } model TtsProfileStatus { id String @id @default(uuid()) name String enabled Boolean userId String user User @relation(fields: [userId], references: [id], onDelete: Cascade) profileId String profile TtsProfile @relation(fields: [profileId], references: [id], onDelete: Cascade) @@index([userId]) @@index([profileId]) } model TtsBadgeFilter { badgeId String profileId String profile TtsProfile @relation(fields: [profileId], references: [id], onDelete: Cascade) @@index([profileId]) @@id([profileId, badgeId]) } model TtsUsernameFilter { username String tag String profileId String profile TtsProfile @relation(fields: [profileId], references: [id], onDelete: Cascade) @@index([profileId]) @@id([profileId, username]) } model TtsWordReplacementFilter { word String replace String profileId String profile TtsProfile @relation(fields: [profileId], references: [id], onDelete: Cascade) @@index([profileId]) @@id([profileId, word]) }