This commit is contained in:
2025-12-27 11:13:46 +01:00
parent f52992b8fd
commit 47397db72c
6 changed files with 258 additions and 1 deletions

View File

@ -354,3 +354,12 @@ model CommissionRequest {
updatedAt DateTime @updatedAt
sortIndex Int @default(0)
}
model TermsOfService {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
version Int @default(autoincrement())
markdown String
}