feat: add featured doctors and health packages APIs
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "Doctor" ADD COLUMN "isFeatured" BOOLEAN NOT NULL DEFAULT false;
|
||||
@@ -27,6 +27,7 @@ model Doctor {
|
||||
workingStatus String?
|
||||
qualification String?
|
||||
isActive Boolean @default(true)
|
||||
isFeatured Boolean @default(false)
|
||||
globalSortOrder Int @default(1000)
|
||||
specializations DoctorSpecialization[]
|
||||
professionalSummary String? @db.Text
|
||||
|
||||
Reference in New Issue
Block a user