ci: further pg_restore tuning

This commit is contained in:
Robert Sparks 2023-02-02 11:59:41 -06:00
parent 1d26aa0004
commit ec0f718191
No known key found for this signature in database
GPG key ID: 6E2A6A5775F91318

View file

@ -14,7 +14,7 @@ dropdb -U django --if-exists ietf
#psql -U django -d ietf -v ON_ERROR_STOP=1 -c '\x' -c 'ALTER USER django set search_path=ietf_utf8,django,public;'
echo "Import DB dump into ietf..."
pg_restore --clean --if-exists --create -U django -d ietf ietf.dump
pg_restore --clean --if-exists --create -U django -d postgres ietf.dump
#echo "Set schema search path for user django..."
#psql -U django -d ietf -v ON_ERROR_STOP=1 -c '\x' -c 'ALTER USER django set search_path=ietf_utf8,django,public;'