mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 13:18:26 -04:00
16 lines
313 B
Plaintext
16 lines
313 B
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
previewFeatures = ["referentialIntegrity"]
|
|
}
|
|
|
|
datasource db {
|
|
provider = "mysql"
|
|
url = env("DATABASE_URL")
|
|
referentialIntegrity = "prisma"
|
|
}
|
|
|
|
model hits {
|
|
slug String @id @db.VarChar(128)
|
|
hits Int @default(1)
|
|
}
|