thomaswilson-sveltekit/prisma/schema.prisma

18 lines
306 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 {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
2026-03-15 17:33:04 +00:00
fileName String @unique
title String
description String?
2026-03-01 08:52:30 +00:00
}