mirror of
https://github.com/System-End/campfire.git
synced 2026-04-19 16:28:22 +00:00
* 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
24 lines
No EOL
656 B
Text
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
|
|
} |