If you clean your database from MySQL and then just delete one of the article migrations, you'll be good to go.
A simple php artisan migrate will regenerate tables structure.
How to remove migration from queue?
I am having trouble with conflicting data. When I run php artisan migrate:status I get this back:
`+------+-------------------------------------------------+
| Ran? | Migration |
+------+-------------------------------------------------+
| N | 2014_1012000000_create_users_table |
| N | 2014_10_12_100000_create_password_resets_table |
| N | 2015_03_13_132311_create_articles_table |
| N | 2015_03_13_133120_add_excerpt_to_articles_table |
| N | 2015_03_13_134007_create_articles_table |
+------+-------------------------------------------------+`
I need to remove one or both of the create_articles_table migrations before I can do anything. Even using a --force flag doesn't work. At this time, none of these are populating in my project in the database/migration folder so I can't find how to access them.
Tried running this $composer dump-autoload hoping that would help but it isn't
Generating autoload files Warning: Ambiguous class resolution, , "CreateArticlesTable" was found in both <filename> and <filename> , the first will be used.
What led up to this was lots of conflicting errors and I was stuck where I couldn't add or rollback anything so I decided to go into mysql command and remove the articles table completely and delete the files from the migrations folder. I then went back to mysql and created the articles table and tried to run some migrate commands but still nothing is auto populating in the folder. It's stuck in this limbo where I I can't figure out how to remove an object from the list.
Please or to participate in this conversation.