update web submodule

This commit is contained in:
Marvin
2026-04-20 03:44:24 +02:00
parent f9605abcf0
commit 0a1114e3ea
+4 -3
View File
@@ -2,11 +2,12 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x", "windows"]
}
datasource db {
provider = "sqlite"
provider = "postgresql"
url = env("DATABASE_URL")
}
@@ -46,4 +47,4 @@ model Collection {
user User @relation(fields: [userId], references: [id])
mods Mod[]
createdAt DateTime @default(now())
}
}