generator client { provider = "prisma-client-js" } datasource db { provider = "postgresql" url = env("DATABASE_URL") } model Account { id String @id @default(cuid()) userId Int type String provider String providerAccountId String refresh_token String? access_token String? expires_at Int? token_type String? scope String? id_token String? session_state String? user User @relation(fields: [userId], references: [id], onDelete: Cascade) @@unique([provider, providerAccountId]) } model User { id Int @id @default(autoincrement()) name String username String? @unique email String? @unique emailVerified DateTime? unverifiedNewEmail String? image String? password String? locale String @default("en") accounts Account[] collections Collection[] tags Tag[] pinnedLinks Link[] collectionsJoined UsersAndCollections[] collectionOrder Int[] @default([]) whitelistedUsers WhitelistedUser[] accessTokens AccessToken[] subscriptions Subscription? linksRouteTo LinksRouteTo @default(ORIGINAL) preventDuplicateLinks Boolean @default(false) archiveAsScreenshot Boolean @default(true) archiveAsMonolith Boolean @default(true) archiveAsPDF Boolean @default(true) archiveAsWaybackMachine Boolean @default(false) isPrivate Boolean @default(false) createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt } enum LinksRouteTo { ORIGINAL PDF READABLE MONOLITH SCREENSHOT } model WhitelistedUser { id Int @id @default(autoincrement()) username String @default("") User User? @relation(fields: [userId], references: [id]) userId Int? createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt } model VerificationToken { identifier String token String @unique expires DateTime createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt @@unique([identifier, token]) } model PasswordResetToken { identifier String token String @unique expires DateTime createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt } model Collection { id Int @id @default(autoincrement()) name String description String @default("") icon String? iconWeight String? color String? parentId Int? parent Collection? @relation("SubCollections", fields: [parentId], references: [id]) subCollections Collection[] @relation("SubCollections") isPublic Boolean @default(false) owner User @relation(fields: [ownerId], references: [id]) ownerId Int members UsersAndCollections[] links Link[] createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt @@index([ownerId]) } model UsersAndCollections { user User @relation(fields: [userId], references: [id]) userId Int collection Collection @relation(fields: [collectionId], references: [id]) collectionId Int canCreate Boolean canUpdate Boolean canDelete Boolean createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt @@id([userId, collectionId]) @@index([userId]) } model Link { id Int @id @default(autoincrement()) name String @default("") type String @default("url") description String @default("") pinnedBy User[] collection Collection @relation(fields: [collectionId], references: [id]) collectionId Int tags Tag[] icon String? iconWeight String? color String? url String? textContent String? preview String? image String? pdf String? readable String? monolith String? lastPreserved DateTime? importDate DateTime? createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt } model Tag { id Int @id @default(autoincrement()) name String links Link[] owner User @relation(fields: [ownerId], references: [id]) ownerId Int createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt @@unique([name, ownerId]) @@index([ownerId]) } model Subscription { id Int @id @default(autoincrement()) active Boolean stripeSubscriptionId String @unique currentPeriodStart DateTime currentPeriodEnd DateTime user User @relation(fields: [userId], references: [id]) userId Int @unique createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt } model AccessToken { id Int @id @default(autoincrement()) name String user User @relation(fields: [userId], references: [id]) userId Int token String @unique revoked Boolean @default(false) isSession Boolean @default(false) expires DateTime lastUsedAt DateTime? createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt }