Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add description and templated_from to flows table #3945

Merged
merged 3 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -500,6 +501,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -518,6 +520,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -551,6 +554,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -575,6 +579,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -594,6 +599,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -626,6 +632,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand Down Expand Up @@ -664,6 +671,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -684,6 +692,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -710,6 +719,7 @@
- created_at
- creator_id
- data
- description
- id
- name
- settings
Expand All @@ -729,6 +739,7 @@
permission:
columns:
- data
- description
- name
- settings
- slug
Expand All @@ -749,6 +760,7 @@
permission:
columns:
- data
- description
- name
- settings
- slug
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."flows" drop column "description";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."flows" add column "description" text;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."flows" drop column "templated_from";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."flows" add column "templated_from" timestamp;
RODO94 marked this conversation as resolved.
Show resolved Hide resolved
Loading