Answers for "php migrate refresh"

PHP
0

re migrate laravel

Try:
composer dump-autoload
php artisan config:cache

If not working also try:
php artisan migrate:refresh.
Posted by: Guest on July-02-2020
0

php artisan migration refresh

php artisan migrate:refresh --step=1
Posted by: Guest on January-06-2021
0

artisan refresh

Try this command it works for me

php artisan migrate:fresh
However, be careful! This command will drop all data from your DB:
Posted by: Guest on August-01-2020
2

laravel make migration

php artisan make:migration CreateUsersTable
Posted by: Guest on May-04-2020

Code answers related to "php migrate refresh"

Browse Popular Code Answers by Language