mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-01 13:34:30 +01:00
26 lines
539 B
Plaintext
26 lines
539 B
Plaintext
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
model Category {
|
|
id Int @id @default(autoincrement())
|
|
title String
|
|
Project Project[]
|
|
}
|
|
|
|
model Project {
|
|
id Int @id @default(autoincrement())
|
|
title String
|
|
description String
|
|
website String
|
|
thumbnail_image String
|
|
cover_image String
|
|
category Category @relation(fields: [category_id], references: [id])
|
|
category_id Int
|
|
}
|