Skip to content

Commit

Permalink
Merge pull request #200 from pedrolivaresanchez/fix/migrations
Browse files Browse the repository at this point in the history
fix: migrations
  • Loading branch information
robertobobby1 authored Nov 11, 2024
2 parents a1b4af6 + c74695c commit 21b13ee
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 21b13ee

Please sign in to comment.