blob: 39ea0288776408c89579b6ee8ffc62cf0583d1c1 [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"
13 url = "file:./dodo.db"
14}
15
16model Project {
17 id Int @id @default(autoincrement())
18 userId String
19 name String
20 state Bytes?
21 draft Bytes?
22}