iteo/bin/docker-entrypoint.sh.d/10-run-migrations.sh
2024-04-14 15:47:41 +02:00

8 lines
116 B
Bash
Executable File

#!/bin/sh
set -e
if [ "${SKIP_MIGRATIONS:-no}" != "yes" ]; then
./bin/console doctrine:schema:update --force
fi