24 lines
459 B
Plaintext
24 lines
459 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
binaryTargets = ["native", "debian-openssl-1.1.x"]
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model Token {
|
|
id String @id @unique @default(uuid())
|
|
owner String
|
|
token String
|
|
refreshToken String?
|
|
}
|
|
|
|
model User {
|
|
userId String @id @unique
|
|
identifier String
|
|
} |