Nevermind, I had ran the migration and resulted on a faulty state. Evidently the schema was trying to do a dropcolumn on a non-existant column.
If your migrations are related between them, in example:
And later you create a migration that drop the table posts, you need first at all delete the messages table and them delete the posts table, or drop the foreign key index from the comments table and then delete the posts tables with the result of a orphan comments table that later could be related with another table.
Hope it helps you.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community