Made migration controlled by a dot file
This commit is contained in:
parent
c66b95e414
commit
55e8429e75
8
init
8
init
@ -18,8 +18,12 @@ if [ "${role}" = "app" -a -e artisan ]; then
|
||||
su www-data -s /bin/sh -c "composer install" && ( test -e .composer.refresh && rm -f .composer.refresh )
|
||||
fi
|
||||
|
||||
echo "Running migration..."
|
||||
(php artisan migrate)
|
||||
if [ -r .migrate ]; then
|
||||
echo "Running migration..."
|
||||
php artisan migrate
|
||||
rm -f .migrate
|
||||
fi
|
||||
|
||||
echo "Caching configuration..."
|
||||
(php artisan config:cache && php artisan route:cache && php artisan view:cache)
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user