Answers for "how to run php artisan migrate"

PHP
2

php artisan see last migration

php artisan migrate:status
Posted by: Guest on May-06-2020
0

How to execute “php artisan migrate” and other Laravel commands in remote server?

ssh [email protected] << EOF
cd /var/www/app/;
php artisan migrate --force; // force prevents artisan from asking for a yes/no on production
exit;
EOF
Posted by: Guest on September-03-2020

Browse Popular Code Answers by Language