mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
28 lines
581 B
Plaintext
28 lines
581 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
model Post {
|
|
id Int @default(autoincrement()) @id
|
|
createdAt DateTime @default(now())
|
|
title String
|
|
content String?
|
|
User User @relation(fields: [authorId], references: [id])
|
|
authorId Int
|
|
}
|
|
|
|
model User {
|
|
id Int @default(autoincrement()) @id
|
|
email String @unique
|
|
name String?
|
|
Post Post[]
|
|
}
|