Files
utkukirkan/prisma/schema.prisma
2026-04-02 04:18:25 +03:00

24 lines
502 B
Plaintext

// 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"
output = "../src/generated/prisma"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model Project {
id String @id @default(cuid())
title String
description String
m2 Int
rooms String
images String[]
status String
createdAt DateTime @default(now())
}