Enable migration to be ignored, even if we have to migrate
This commit is contained in:
parent
6d37d4ae78
commit
546ebcc610
4
init
4
init
@ -104,6 +104,7 @@ if [ "${role}" = "app" -a -e artisan ]; then
|
|||||||
su www-data -s /bin/sh -c "(php artisan optimize && php artisan view:cache)"
|
su www-data -s /bin/sh -c "(php artisan optimize && php artisan view:cache)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "${IGNORE_MIGRATION}" ]; then
|
||||||
if [ -r .migrate ]; then
|
if [ -r .migrate ]; then
|
||||||
echo "* Running migration..."
|
echo "* Running migration..."
|
||||||
# If DB_HOST not set, source the env file
|
# If DB_HOST not set, source the env file
|
||||||
@ -119,6 +120,9 @@ if [ "${role}" = "app" -a -e artisan ]; then
|
|||||||
|
|
||||||
su www-data -s /bin/sh -c "php artisan migrate" && rm -f .migrate
|
su www-data -s /bin/sh -c "php artisan migrate" && rm -f .migrate
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
[ -r .migrate ] && echo "! NOTE: Migration ignored due to IGNORE_MIGRATION"
|
||||||
|
fi
|
||||||
|
|
||||||
# If passport is installed
|
# If passport is installed
|
||||||
if [ -d ${php}/vendor/laravel/passport ]; then
|
if [ -d ${php}/vendor/laravel/passport ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user