Skip to content

Commit

Permalink
fix: migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Milla Martinez committed Nov 11, 2024
1 parent 873362b commit c74695c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
alter table "public"."help_requests" add column "crm_status" text;
ALTER TABLE "public"."help_requests" ADD IF NOT EXISTS "crm_status" text;

create policy "Mod update"
on "public"."help_requests"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
alter table "public"."help_requests" add column "notes" text;
alter table "public"."help_requests" ADD IF NOT EXISTS "notes" text;

0 comments on commit c74695c

Please sign in to comment.