blob: 07482f30cc0f638d424173780acd68dea87e0856 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001// This is your Prisma schema file,
2// learn more about it in the docs: https://pris.ly/d/prisma-schema
3
4// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
5// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
6
7generator client {
8 provider = "prisma-client-js"
9}
10
11datasource db {
12 provider = "sqlite"
gio376a81d2025-05-20 06:42:01 +000013 url = env("DATABASE_URL")
gio5f2f1002025-03-20 18:38:48 +040014}
15
16model Project {
gio69148322025-06-19 23:16:12 +040017 id Int @id @default(autoincrement())
18 userId String
19 name String
20 state String?
21 draft String?
22 instanceId String?
23 deployKey String?
gioa71316d2025-05-24 09:41:36 +040024 deployKeyPublic String?
gio69148322025-06-19 23:16:12 +040025 githubToken String?
26 access String?
27 geminiApiKey String?
gio5f2f1002025-03-20 18:38:48 +040028}