Skip to content

Commit

Permalink
chore: squash feature migrations either side of unrelated migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-Heneghan committed Feb 2, 2024
1 parent 04cd879 commit 94537fa
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 16 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,3 @@

alter table "public"."feedback" add column "help_text" text;
alter table "public"."feedback" add column "node_text" text;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

alter table "public"."feedback" drop column "node_text" cascade;

alter table "public"."feedback" drop column "help_text" cascade;

This file was deleted.

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
@@ -1,6 +1,11 @@

alter table "public"."feedback" drop column "node_type";

alter table "public"."feedback" add column "address" text;

alter table "public"."feedback" add column "project_type" text;

alter table "public"."feedback" add column "component_metadata" jsonb;


alter table "public"."feedback" rename column "user_data" to "breadcrumbs";
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

alter table "public"."feedback" rename column "breadcrumbs" to "user_data";


alter table "public"."feedback" drop column "address" cascade;

alter table "public"."feedback" drop column "component_metadata" cascade;

alter table "public"."feedback" drop column "project_type" cascade;

alter table "public"."feedback" add column "node_type" text
null;
comment on column "public"."feedback"."node_type" is E'The human readable type of the node';

0 comments on commit 94537fa

Please sign in to comment.