mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 10:45:23 -04:00
17 lines
378 B
Plaintext
17 lines
378 B
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
previewFeatures = ["jsonProtocol"]
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
directUrl = env("POSTGRES_URL_NON_POOLING")
|
|
shadowDatabaseUrl = env("POSTGRES_URL_NON_POOLING")
|
|
}
|
|
|
|
model hits {
|
|
slug String @id @db.VarChar(128)
|
|
hits Int @default(1)
|
|
}
|