edit-pg-dump: fix a missing semi-colon

This commit is contained in:
Shahidh K Muhammed 2019-04-09 09:24:59 +05:30
parent 70cd78fec0
commit 8187f400a6
2 changed files with 2 additions and 2 deletions

2
scripts/edit-pg-dump/edit-pg-dump.sh Normal file → Executable file
View 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

View File

@ -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: