-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ERROR: syntax error at or near "-"
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CREATE SCHEMA usaon-benefit-tool AUTHORIZATION usaon-benefit-tool; | ||
ALTER ROLE usaon-benefit-tool SET search_path TO usaon-benefit-tool; | ||
CREATE SCHEMA "usaon-benefit-tool" AUTHORIZATION "usaon-benefit-tool"; | ||
ALTER ROLE "usaon-benefit-tool" SET "search_path" TO "usaon-benefit-tool"; |
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,7 +1,7 @@ | ||
CREATE USER support; | ||
GRANT USAGE ON SCHEMA usaon-benefit-tool TO support; | ||
GRANT SELECT, UPDATE ON ALL TABLES IN SCHEMA usaon-benefit-tool TO support; | ||
ALTER ROLE support IN DATABASE usaon-benefit-tool SET search_path TO usaon-benefit-tool; | ||
CREATE USER "support"; | ||
GRANT USAGE ON SCHEMA "usaon-benefit-tool" TO "support"; | ||
GRANT SELECT, UPDATE ON ALL TABLES IN SCHEMA "usaon-benefit-tool" TO "support"; | ||
ALTER ROLE "support" IN DATABASE "usaon-benefit-tool" SET "search_path" TO "usaon-benefit-tool"; | ||
ALTER DEFAULT PRIVILEGES | ||
IN SCHEMA usaon-benefit-tool | ||
GRANT SELECT, UPDATE ON TABLES TO support; | ||
IN SCHEMA "usaon-benefit-tool" | ||
GRANT SELECT, UPDATE ON TABLES TO "support"; |
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 +1 @@ | ||
CREATE EXTENSION pg_stat_statements; | ||
CREATE EXTENSION "pg_stat_statements"; |