Hello.
When i run php artisan migration it only adds CreateUsersTable and CreatePasswordResetsTable . all my other migrations dont get added ?
I get the error:
[Symfony\Component\Debug\Exception\FatalErrorException]
Cannot redeclare class CreateArticlesTable
but i haven't migrated them yet ?
I created them by doing
vagrant@homestead:~/Code/rickyspires-laravel$ php artisan make:migration articles_table
Created Migration: 2015_06_22_222912_articles_table
vagrant@homestead:~/Code/rickyspires-laravel$ php artisan make:migration add_excerpt_to_articles_table
Created Migration: 2015_06_22_222925_add_excerpt_to_articles_table
vagrant@homestead:~/Code/rickyspires-laravel$ php artisan make:migration create_tags_table
Created Migration: 2015_06_22_222936_create_tags_table
Then i run $ php artisan migrate
and get that error: [Symfony\Component\Debug\Exception\FatalErrorException]
Cannot redeclare class CreateArticlesTable
i had same error ,problem is i runed this command
"php artisan make:migration create_tasks_table --create=tasks"
two times,so i had two files 2016_03_23_051905_create_tasks_table.php and other with other id
i delete two file and run command again now:"php artisan migrate"
now it works nice.......