website/prisma/schema.prisma
2023-03-01 22:01:40 +01:00

21 lines
429 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"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model Post {
id String @id @default(cuid())
title String
description String?
path String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}