Threre are times that I only need to migrate one table in Laravel, you can use this command:
$ php artisan migrate:refresh --path=database/migrations/[fileName].php
NOTE. YOU CANNOT USER WILDCARDS LIKE THIS:
$ php artisan migrate:refresh --path=database/migrations/*_table_name.php
That is it, very simple.
Enjoy