Skip to content

Commit

Permalink
chore: consolidate new column create and rename into one migration
Browse files Browse the repository at this point in the history
- As the name of the new column changed there was a create and a rename migration
- Removed both of these and added a new migration which names the column correctly from the get go
  • Loading branch information
Mike-Heneghan committed Nov 8, 2023
1 parent ef329a7 commit 4ed6592
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 5 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "public"."flows" DROP COLUMN "analytics_link";
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."flows" add column "analytics_link" text
null;

0 comments on commit 4ed6592

Please sign in to comment.