-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: consolidate new column create and rename into one migration
- 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
1 parent
ef329a7
commit 4ed6592
Showing
6 changed files
with
3 additions
and
5 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
...nx.uk/migrations/1699010412430_alter_table_public_flows_add_column_metabase_link/down.sql
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
...lanx.uk/migrations/1699010412430_alter_table_public_flows_add_column_metabase_link/up.sql
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
....uk/migrations/1699371548814_alter_table_public_flows_alter_column_metabase_link/down.sql
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...nx.uk/migrations/1699371548814_alter_table_public_flows_alter_column_metabase_link/up.sql
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...x.uk/migrations/1699453886259_alter_table_public_flows_add_column_analytics_link/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE "public"."flows" DROP COLUMN "analytics_link"; |
2 changes: 2 additions & 0 deletions
2
...anx.uk/migrations/1699453886259_alter_table_public_flows_add_column_analytics_link/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
alter table "public"."flows" add column "analytics_link" text | ||
null; |