thomaswilson-sveltekit/prisma/schema.prisma

20 lines
374 B
Text
Raw Normal View History

2026-03-01 08:52:30 +00:00
generator client {
provider = "prisma-client"
output = "../generated/prisma"
}
datasource db {
provider = "sqlite"
}
model PhotoPost {
2026-03-17 21:32:47 +00:00
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
deletedAt DateTime?
publishedAt DateTime?
filePath String
fileName String
title String
description String?
2026-03-01 08:52:30 +00:00
}