mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
edit-pg-dump: fix a missing semi-colon
This commit is contained in:
parent
70cd78fec0
commit
8187f400a6
2
scripts/edit-pg-dump/edit-pg-dump.sh
Normal file → Executable file
2
scripts/edit-pg-dump/edit-pg-dump.sh
Normal file → Executable file
@ -37,7 +37,7 @@ SET client_min_messages = warning;
|
||||
SET row_security = off;
|
||||
SET default_tablespace = '';
|
||||
SET default_with_oids = false;
|
||||
CREATE SCHEMA public
|
||||
CREATE SCHEMA public;
|
||||
EOF
|
||||
|
||||
while read -r line; do
|
||||
|
@ -20,7 +20,7 @@ var frontMatter = []string{
|
||||
"SET row_security = off;",
|
||||
"SET default_tablespace = '';",
|
||||
"SET default_with_oids = false;",
|
||||
"CREATE SCHEMA public",
|
||||
"CREATE SCHEMA public;",
|
||||
}
|
||||
|
||||
const helpStr = `POST the SQL file contents to this URL:
|
||||
|
Loading…
Reference in New Issue
Block a user