From 3b25940cb72857b3b2bf31967b8229563cf603a2 Mon Sep 17 00:00:00 2001 From: jeroen Date: Wed, 7 Sep 2022 14:37:42 +0200 Subject: [PATCH] Using doctrine migrations --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9a07005..d12dd72 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -96,7 +96,7 @@ if [[ $DKR_RUN_MIGRATION == "false" ]]; then echo "Will NOT run migration commands." else echo "Running migration commands..." - php bin/console doctrine:schema:update --force + php bin/console doctrine:migrations:migrate --no-interaction fi echo "Current working dir is '$(pwd)'"