mirror of
https://litchi.icu/ngc2207/mine-code-now.git
synced 2025-05-18 16:27:04 +00:00
19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
|
generator client {
|
||
|
provider = "prisma-client-js"
|
||
|
output = "../node_modules/.prisma/client"
|
||
|
}
|
||
|
|
||
|
datasource db {
|
||
|
provider = "mongodb"
|
||
|
url = env("DATABASE_URL")
|
||
|
}
|
||
|
|
||
|
model Snippet {
|
||
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
||
|
title String
|
||
|
language String
|
||
|
code String
|
||
|
createdAt DateTime @default(now())
|
||
|
updatedAt DateTime @updatedAt
|
||
|
}
|