Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
d56e6daebe
commit
767880e6e8
@@ -0,0 +1,9 @@
|
||||
ALTER TABLE public.cases DROP CONSTRAINT IF EXISTS cases_assigned_attorney_id_fkey;
|
||||
|
||||
ALTER TABLE public.cases
|
||||
ADD CONSTRAINT cases_assigned_attorney_id_fkey
|
||||
FOREIGN KEY (assigned_attorney_id)
|
||||
REFERENCES public.profiles(id)
|
||||
ON DELETE SET NULL;
|
||||
|
||||
NOTIFY pgrst, 'reload schema';
|
||||
Reference in New Issue
Block a user