1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Add a new build to test when no database table prefix are defined

This is mostly to avoid further error when users don't defined a database table prefix. it's recommenced to define one anyway.

Also enable verbose migration so we'll be able to actually view SQL queries (and execution time).
This commit is contained in:
Jeremy Benoist 2023-07-17 13:53:31 +02:00
parent df56bfe94e
commit 8b9fd04c74
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552
2 changed files with 72 additions and 1 deletions

View file

@ -40,7 +40,7 @@ ifdef DB
endif
-php bin/console doctrine:database:drop --force --env=test
php bin/console doctrine:database:create --env=test
php bin/console doctrine:migrations:migrate --no-interaction --env=test
php bin/console doctrine:migrations:migrate --no-interaction --env=test -vv
fixtures: ## Load fixtures into database
php bin/console doctrine:fixtures:load --no-interaction --env=test