Merge pull request #3864 from wallabag/fix/database-init-version

Removed hardcoded database version
This commit is contained in:
Jérémy Benoist 2019-01-23 09:04:54 +01:00 committed by GitHub
commit a8f4f7665c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -35,7 +35,6 @@ matrix:
env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite
allow_failures:
- php: nightly
- php: 7.3
# exclude v1 branches
branches:
@ -56,7 +55,6 @@ before_script:
# xdebug isn't enable for PHP 7.1
- if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi
- composer self-update --no-progress
- if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
script:
- travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist

View File

@ -54,7 +54,6 @@ doctrine:
charset: "%database_charset%"
path: "%database_path%"
unix_socket: "%database_socket%"
server_version: 5.6
orm:
auto_generate_proxy_classes: "%kernel.debug%"