Skip to content

Commit

Permalink
feat: add description and templated_from to flows table (#3945)
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 authored Nov 13, 2024
1 parent 0fa25c1 commit 29a88f6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -503,6 +504,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -521,6 +523,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -554,6 +557,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -578,6 +582,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -597,6 +602,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -629,6 +635,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -667,6 +674,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -687,6 +695,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -713,6 +722,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -732,6 +742,7 @@
permission:
columns:
- data
- description
- name
- settings
- slug
Expand All @@ -752,6 +763,7 @@
permission:
columns:
- data
- description
- name
- settings
- slug
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
alter table "public"."flows" drop column "description";

alter table "public"."flows" drop column "templated_from";
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
alter table "public"."flows" add column "description" text;

alter table "public"."flows" add column "templated_from" uuid;

0 comments on commit 29a88f6

Please sign in to comment.