Skip to content

Commit

Permalink
fix migration syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Apr 23, 2024
1 parent ffb407a commit 5422caa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
alter table "public"."team_integrations"
add column "staging_file_api_key" text null
add column "production_file_api_key" text null
add column "power_automate_webhook_url" text null;
add column staging_file_api_key text null,
add column production_file_api_key text null,
add column power_automate_webhook_url text null;

comment on column "public"."team_integrations"."staging_file_api_key" is E'Secret allowing a council to download private S3 user files via the Planx API in the format <API_KEY>:<INITIALIZATION_VECTOR>';
comment on column "public"."team_integrations"."production_file_api_key" is E'Secret allowing a council to download private S3 user files via the Planx API in the format <API_KEY>:<INITIALIZATION_VECTOR>';
Expand Down

0 comments on commit 5422caa

Please sign in to comment.