blob: c8c834b62745f9a9a42237d82feccc09704ea28a [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 {
17 id Int @id @default(autoincrement())
18 userId String
19 name String
giobd37a2b2025-05-15 04:28:42 +000020 state String?
21 draft String?
gio218e8132025-04-22 17:11:58 +000022 instanceId String?
23 deployKey String?
gio7f98e772025-05-07 11:00:14 +000024 githubToken String?
giob77cb932025-05-19 09:37:14 +000025 access String?
gio5f2f1002025-03-20 18:38:48 +040026}