-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No int test/dac 3512 benefits ref data (#820)
* created flyway scripts to deploy supporting db objects/permissions into the refactored db, along with updating config rules to ingest into this db * updated glue connection details * renamed flyway file
- Loading branch information
1 parent
2bda466
commit 4a97e11
Showing
4 changed files
with
7 additions
and
3 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
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
3 changes: 3 additions & 0 deletions
3
...lyway/migrations/dap_txma_reporting_db_refactored/R__grant_reference_data_permissions.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,3 @@ | ||
grant all on schema "reference_data" to group dap_elt_processing; | ||
grant all on all tables in schema "reference_data" to group dap_elt_processing; | ||
grant usage on schema "reference_data" to group dap_elt_processing; |
1 change: 1 addition & 0 deletions
1
...flyway/migrations/dap_txma_reporting_db_refactored/V3.0__create_reference_data_schema.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 @@ | ||
create schema if not exists dap_txma_reporting_db_refactored.reference_data; |