
How to migrate single table in larave
I have number of migration, but I want to migrate single migration at a time;
2
243
9 months ago
Answer

Go to project root directory and run the following comand
php artisan migrate:refresh --path=/database/migrations/migration_file_name.php
0
0
8 months ago

Go to project root directory and run the following comand
php artisan migrate --path='./database/migrations/2020_06_16_190237_create_roles_table.php'
0
0
9 months ago