remove manual loading of base database schema
This commit is contained in:
parent
e3dd638852
commit
ac9d233688
|
@ -70,9 +70,8 @@ $PSQL -c "create extension if not exists pg_trgm"
|
||||||
RESTORE_SCHEMA=${SCRIPT_ROOT}/restore-schema.sql.gz
|
RESTORE_SCHEMA=${SCRIPT_ROOT}/restore-schema.sql.gz
|
||||||
|
|
||||||
if [ -r $RESTORE_SCHEMA ]; then
|
if [ -r $RESTORE_SCHEMA ]; then
|
||||||
|
$PSQL -c "drop schema public cascade; create schema public;"
|
||||||
zcat $RESTORE_SCHEMA | $PSQL
|
zcat $RESTORE_SCHEMA | $PSQL
|
||||||
elif ! $PSQL -c 'select * from ttrss_version'; then
|
|
||||||
$PSQL < /var/www/html/tt-rss/schema/ttrss_schema_pgsql.sql
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# this was previously generated
|
# this was previously generated
|
||||||
|
|
Loading…
Reference in New Issue