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

Production deploy #2440

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 10 additions & 6 deletions hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1324,17 +1324,18 @@
- role: api
permission:
columns:
- boundary
- created_at
- domain
- id
- name
- notify_personalisation
- reference_code
- settings
- theme
- domain
- name
- slug
- created_at
- updated_at
- boundary
- submission_email
- theme
- updated_at
computed_fields:
- boundary_bbox
filter: {}
Expand All @@ -1346,6 +1347,7 @@
- id
- name
- notify_personalisation
- reference_code
- settings
- slug
- theme
Expand All @@ -1362,6 +1364,7 @@
- id
- name
- notify_personalisation
- reference_code
- settings
- slug
- theme
Expand All @@ -1377,6 +1380,7 @@
- id
- name
- notify_personalisation
- reference_code
- settings
- slug
- theme
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."teams" drop column "reference_code" cascade;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."teams" add column "reference_code" text null;
comment on column "public"."teams"."reference_code" is E'Organisation reference code sourced from planning.data.gov.uk/dataset/local-authority';
Loading