generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
576: move ownership of the current user to azure_pg_admin
- Loading branch information
Showing
3 changed files
with
64 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
databaseChangeLog: | ||
- changeSet: | ||
id: 1 | ||
author: halprin | ||
labels: azure | ||
context: azure | ||
runAlways: true | ||
comment: Fix ownership of anything created in every migration run | ||
changes: | ||
- sql: | ||
sql: REASSIGN OWNED BY CURRENT_USER TO azure_pg_admin |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
databaseChangeLog: | ||
- include: | ||
file: etor/databaseMigrations/1.0.0.yml | ||
- include: | ||
file: etor/databaseMigrations/azure.yml | ||
labels: azure |