Skip to content

Commit

Permalink
made the migrations for mail lost
Browse files Browse the repository at this point in the history
  • Loading branch information
kj3moraes committed Jan 23, 2024
1 parent c4e62b0 commit 4a66b7c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "reasonforreplacement" ADD VALUE 'MAIL_LOST';
32 changes: 16 additions & 16 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -345,15 +345,15 @@ enum ApplicantStatus {
ACTIVE
INACTIVE
@@map("applicantstatus")
@@map("applicantstatus")
}

enum Gender {
MALE
FEMALE
OTHER
@@map("gender")
@@map("gender")
}

enum PaymentType {
Expand All @@ -365,14 +365,14 @@ enum PaymentType {
DEBIT
SHOPIFY
@@map("paymenttype")
@@map("paymenttype")
}

enum PhysicianStatus {
ACTIVE
INACTIVE
@@map("physicianstatus")
@@map("physicianstatus")
}

enum Province {
Expand All @@ -390,15 +390,15 @@ enum Province {
NT
YT
@@map("province")
@@map("province")
}

enum Role {
ADMIN
ACCOUNTING
SECRETARY
@@map("role")
@@map("role")
}

enum ApplicationStatus {
Expand All @@ -407,38 +407,38 @@ enum ApplicationStatus {
REJECTED
COMPLETED
@@map("applicationstatus")
@@map("applicationstatus")
}

enum ReasonForReplacement {
LOST
STOLEN
MAIL_LOST
OTHER
MAIL_LOST
@@map("reasonforreplacement")
@@map("reasonforreplacement")
}

enum PermitType {
PERMANENT
TEMPORARY
@@map("permittype")
@@map("permittype")
}

enum AccessibleConvertedVanLoadingMethod {
SIDE_LOADING
END_LOADING
@@map("accessibleconvertedvanloadingmethod")
@@map("accessibleconvertedvanloadingmethod")
}

enum ApplicationType {
NEW
RENEWAL
REPLACEMENT
@@map("applicationtype")
@@map("applicationtype")
}

enum MobilityAid {
Expand All @@ -450,7 +450,7 @@ enum MobilityAid {
CRUTCHES
OTHERS
@@map("mobilityaid")
@@map("mobilityaid")
}

enum PatientCondition {
Expand All @@ -459,20 +459,20 @@ enum PatientCondition {
CANNOT_WALK_100M
OTHER
@@map("patientcondition")
@@map("patientcondition")
}

enum RequiresWiderParkingSpaceReason {
HAS_ACCESSIBLE_VAN
MEDICAL_REASONS
OTHER
@@map("requireswiderparkingspacereason")
@@map("requireswiderparkingspacereason")
}

enum ShopifyPaymentStatus {
PENDING
RECEIVED
@@map("shopifypaymentstatus")
@@map("shopifypaymentstatus")
}

0 comments on commit 4a66b7c

Please sign in to comment.