Add commission type example image

This commit is contained in:
2026-01-31 16:37:24 +01:00
parent 51cfde4d78
commit e869f19142
7 changed files with 229 additions and 12 deletions

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "CommissionGuidelines" ADD COLUMN "exampleImageUrl" TEXT;

View File

@ -399,6 +399,7 @@ model CommissionGuidelines {
updatedAt DateTime @updatedAt
markdown String
exampleImageUrl String?
isActive Boolean @default(true)
@@index([isActive])