Paste/schema.prisma
Liam b7ae3f12c0
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0) (push) Successful in 47s
Publish Docker Image / docker (ubuntu-latest, 2.44.0) (push) Has been cancelled
d
2024-06-14 23:30:51 +01:00

17 lines
333 B
Plaintext

datasource db {
provider = "mongodb"
url = env("MONGO_URI")
}
generator db {
provider = "go run github.com/steebchen/prisma-client-go"
}
// The Pastes model is used to store the pastes that are created by the users.
model Paste {
id String @id @map("_id")
content String
lineCount Int
@@map("paste")
}