// This is your Prisma schema file, // learn more about it in the docs: https://pris.ly/d/prisma-schema generator client { provider = "prisma-client-js" } datasource db { provider = "postgresql" url = env("DATABASE_URL") } model User { id String @id @default(uuid()) email String @unique username String @unique password String role Role @default(USER) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt blogs Blog[] @@map("users") } model Blog { id String @id @default(uuid()) title String content String published Boolean @default(false) authorId String createdAt DateTime @default(now()) updatedAt DateTime @updatedAt author User @relation(fields: [authorId], references: [id], onDelete: Cascade) @@map("blogs") } enum Role { USER ADMIN }