I have a problem when migrate in laravel. Ex: I have 2 migrate: products and categories. The products has a foreignkey to categoried .If I create products migration before categories migration, when I run php artisan migrate, It cann't migrate. But if I create the categories first, it works. Can I run it without create again or rename file?
Thanks.