diff options
author | adev <adev2000@gmail.com> | 2017-11-03 00:41:47 +0100 |
---|---|---|
committer | adev <adev2000@gmail.com> | 2017-11-21 21:35:16 +0100 |
commit | 18fb777b89c6cca529979ab1202eb1af5458bd5d (patch) | |
tree | 8a02c448d99701b579126c829108cbfc05518826 /Makefile | |
parent | d3d0defabc8224172b59c85db66c2d4e6bc3f06b (diff) | |
download | wallabag-18fb777b89c6cca529979ab1202eb1af5458bd5d.tar.gz wallabag-18fb777b89c6cca529979ab1202eb1af5458bd5d.tar.zst wallabag-18fb777b89c6cca529979ab1202eb1af5458bd5d.zip |
Add an initial migration
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -30,18 +30,7 @@ ifdef DB | |||
30 | endif | 30 | endif |
31 | -php bin/console doctrine:database:drop --force --env=test | 31 | -php bin/console doctrine:database:drop --force --env=test |
32 | php bin/console doctrine:database:create --env=test | 32 | php bin/console doctrine:database:create --env=test |
33 | ifndef DB ## make test does not define DB | 33 | php bin/console doctrine:migrations:migrate --no-interaction --env=test |
34 | php bin/console doctrine:schema:create --env=test | ||
35 | endif | ||
36 | ifeq ($(DB), sqlite) | ||
37 | php bin/console doctrine:schema:create --env=test | ||
38 | endif | ||
39 | ifeq ($(DB), mysql) | ||
40 | php bin/console doctrine:database:import data/sql/mysql_base.sql --env=test | ||
41 | endif | ||
42 | ifeq ($(DB), pgsql) | ||
43 | psql -h localhost -d wallabag_test -U travis -f data/sql/pgsql_base.sql | ||
44 | endif | ||
45 | 34 | ||
46 | fixtures: ## Load fixtures into database | 35 | fixtures: ## Load fixtures into database |
47 | php bin/console doctrine:fixtures:load --no-interaction --env=test | 36 | php bin/console doctrine:fixtures:load --no-interaction --env=test |