-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add GovPay columns to
team_integrations
table (#2786)
- Loading branch information
1 parent
7e4e779
commit 254f9ab
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...7838555655_alter_table_public_team_integrations_add_column_staging_govpay_secret/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
comment on column "public"."team_integrations"."staging_govpay_secret" is NULL; | ||
comment on column "public"."team_integrations"."production_govpay_secret" is NULL; | ||
|
||
ALTER table "public"."team_integrations" DROP COLUMN "staging_govpay_secret"; | ||
ALTER table "public"."team_integrations" DROP COLUMN "production_govpay_secret"; |
9 changes: 9 additions & 0 deletions
9
...707838555655_alter_table_public_team_integrations_add_column_staging_govpay_secret/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
alter table "public"."team_integrations" add column "staging_govpay_secret" text | ||
null; | ||
|
||
comment on column "public"."team_integrations"."staging_govpay_secret" is E'Secret required for GovPay submissions in the format <TOKEN>:<INITIALIZATION_VECTOR>'; | ||
|
||
alter table "public"."team_integrations" add column "production_govpay_secret" text | ||
null; | ||
|
||
comment on column "public"."team_integrations"."production_govpay_secret" is E'Secret required for GovPay submission in the format <API_KEY>:<INITIALIZATION_VECTOR>'; |