mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31: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 row_security = off;
|
||||||
SET default_tablespace = '';
|
SET default_tablespace = '';
|
||||||
SET default_with_oids = false;
|
SET default_with_oids = false;
|
||||||
CREATE SCHEMA public
|
CREATE SCHEMA public;
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
while read -r line; do
|
while read -r line; do
|
||||||
|
@ -20,7 +20,7 @@ var frontMatter = []string{
|
|||||||
"SET row_security = off;",
|
"SET row_security = off;",
|
||||||
"SET default_tablespace = '';",
|
"SET default_tablespace = '';",
|
||||||
"SET default_with_oids = false;",
|
"SET default_with_oids = false;",
|
||||||
"CREATE SCHEMA public",
|
"CREATE SCHEMA public;",
|
||||||
}
|
}
|
||||||
|
|
||||||
const helpStr = `POST the SQL file contents to this URL:
|
const helpStr = `POST the SQL file contents to this URL:
|
||||||
|
Loading…
Reference in New Issue
Block a user