Skip to content

Commit

Permalink
fix: add logs column to temp_data_migrations_audit table and crea…
Browse files Browse the repository at this point in the history
…te relationship from `flow` to `lowcal_sessions` (#4102)
  • Loading branch information
jessicamcinchak authored Dec 20, 2024
1 parent 3421ae5 commit 91b16ea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,15 @@
table:
name: flow_document_templates
schema: public
- name: lowcal_sessions
using:
manual_configuration:
column_mapping:
id: flow_id
insertion_order: null
remote_table:
name: lowcal_sessions
schema: public
- name: operations
using:
foreign_key_constraint_on:
Expand Down Expand Up @@ -2468,7 +2477,7 @@
name: temp_data_migrations_audit
schema: public
object_relationships:
- name: flows
- name: flow
using:
manual_configuration:
column_mapping:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."temp_data_migrations_audit" drop column "logs";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."temp_data_migrations_audit" add column "logs" text null;

0 comments on commit 91b16ea

Please sign in to comment.