campfire/background/prisma/schema.prisma
Manitej Boorgu ae4b1e8519
feat: add map + under construction pages (#11)
* feat: add map

* feat: move map to top

* feat: move map + 404

* feat: add record id to table

* chore: prisma generated files

* feat: record record ids

* feat: fillout events param
2026-01-20 22:26:42 -05:00

24 lines
No EOL
656 B
Text

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
generator client {
provider = "prisma-client"
output = "../src/generated/prisma"
}
datasource db {
provider = "postgresql"
}
model Satellite {
id Int @id @default(autoincrement())
recordId String @unique
slug String @unique
data Json
active Boolean @default(true)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}