This commit is contained in:
2025-07-06 17:42:45 +02:00
parent f4db985695
commit 3edaf9b3c8
7 changed files with 1332 additions and 5 deletions

View File

@ -91,3 +91,12 @@ model CommissionTypeExtra {
@@unique([typeId, extraId])
}
model TermsOfService {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
version Int @default(autoincrement())
markdown String
}