@trycompai/db 1.3.15 → 1.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema.prisma +2 -0
- package/package.json +1 -1
package/dist/schema.prisma
CHANGED
|
@@ -146,6 +146,7 @@ model Member {
|
|
|
146
146
|
|
|
147
147
|
department Departments @default(none)
|
|
148
148
|
isActive Boolean @default(true)
|
|
149
|
+
deactivated Boolean @default(false)
|
|
149
150
|
employeeTrainingVideoCompletion EmployeeTrainingVideoCompletion[]
|
|
150
151
|
fleetDmLabelId Int?
|
|
151
152
|
|
|
@@ -177,6 +178,7 @@ enum Role {
|
|
|
177
178
|
admin
|
|
178
179
|
auditor
|
|
179
180
|
employee
|
|
181
|
+
contractor
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
enum PolicyStatus {
|