diff --git a/hasura.planx.uk/metadata/tables.yaml b/hasura.planx.uk/metadata/tables.yaml index e1e4632c98..fcf2b0f3ea 100644 --- a/hasura.planx.uk/metadata/tables.yaml +++ b/hasura.planx.uk/metadata/tables.yaml @@ -475,6 +475,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -503,6 +504,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -521,6 +523,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -554,6 +557,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -578,6 +582,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -597,6 +602,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -629,6 +635,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -667,6 +674,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -687,6 +695,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -713,6 +722,7 @@ - created_at - creator_id - data + - description - id - name - settings @@ -732,6 +742,7 @@ permission: columns: - data + - description - name - settings - slug @@ -752,6 +763,7 @@ permission: columns: - data + - description - name - settings - slug diff --git a/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/down.sql b/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/down.sql new file mode 100644 index 0000000000..6854e01de9 --- /dev/null +++ b/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/down.sql @@ -0,0 +1,3 @@ +alter table "public"."flows" drop column "description"; + +alter table "public"."flows" drop column "templated_from"; \ No newline at end of file diff --git a/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/up.sql b/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/up.sql new file mode 100644 index 0000000000..49cb59d58b --- /dev/null +++ b/hasura.planx.uk/migrations/1731498412695_add_description_templated_from_to_flows/up.sql @@ -0,0 +1,3 @@ +alter table "public"."flows" add column "description" text; + +alter table "public"."flows" add column "templated_from" uuid; \ No newline at end of file