Remove incompatible option in SQL dump for Postgrs 9.5

This commit is contained in:
Frederic Guillot
2016-12-04 13:08:29 -05:00
parent a162489563
commit 7719703dce
2 changed files with 5 additions and 6 deletions

View File

@@ -105,6 +105,8 @@ sql:
@ let pg_version=`psql -U postgres -A -c 'copy(select version from schema_version) to stdout;' kanboard` ;\
echo "INSERT INTO schema_version VALUES ('$$pg_version');" >> app/Schema/Sql/postgres.sql
@ grep -v "SET idle_in_transaction_session_timeout = 0;" app/Schema/Sql/postgres.sql > temp && mv temp app/Schema/Sql/postgres.sql
docker-image:
@ docker build -t kanboard/kanboard:latest .