[php] How can I run specific migration in laravel

I create on address table migration but one migration is already in the database it gives following error :

Base table or view already exists: 1050 Table 'notification' already exists

So, Can I run specific migration? How can I run in Laravel?

This question is related to php laravel

The answer is


use this command php artisan migrate --path=/database/migrations/my_migration.php it worked for me..