feat: accreditation crud
This commit is contained in:
@@ -356,4 +356,25 @@ model InsurancePartner {
|
||||
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
model Accreditation {
|
||||
id Int @id @default(autoincrement())
|
||||
|
||||
title String
|
||||
type AccreditationType
|
||||
logo String?
|
||||
image String?
|
||||
description String? @db.Text
|
||||
|
||||
sortOrder Int @default(1000)
|
||||
isActive Boolean @default(true)
|
||||
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
enum AccreditationType {
|
||||
ACCREDITATION
|
||||
CERTIFICATION
|
||||
}
|
||||
Reference in New Issue
Block a user