Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 01:19:25 +00:00
co-authored by renee-png
parent 380b744a08
commit 4cfd494b20
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -2595,7 +2595,7 @@ export type Database = {
}
}
Enums: {
app_role: "admin" | "attorney" | "staff"
app_role: "admin" | "attorney" | "staff" | "paralegal" | "legal_clerk"
case_status:
| "intake"
| "active"
@@ -2745,7 +2745,7 @@ export type CompositeTypes<
export const Constants = {
public: {
Enums: {
app_role: ["admin", "attorney", "staff"],
app_role: ["admin", "attorney", "staff", "paralegal", "legal_clerk"],
case_status: [
"intake",
"active",
@@ -0,0 +1,2 @@
ALTER TYPE public.app_role ADD VALUE IF NOT EXISTS 'paralegal';
ALTER TYPE public.app_role ADD VALUE IF NOT EXISTS 'legal_clerk';