4 Commits

Author SHA1 Message Date
b7ae3f12c0 d
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
2024-06-14 23:30:51 +01:00
fcd0a199de Merge branch 'master' of https://git.fascinated.cc/Paste/Paste 2024-06-14 23:30:50 +01:00
02245c0f9c e 2024-06-14 23:30:25 +01:00
ae683f4b8a bob 2024-06-14 23:30:21 +01:00
3 changed files with 2837 additions and 0 deletions

2818
db/db_gen.go Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -3,6 +3,10 @@ datasource db {
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")