mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-06 16:04:23 +01:00
27 lines
578 B
Plaintext
27 lines
578 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
|
|
votes_count Int @default(0)
|
|
}
|