php artisan migrate:refresh --seed "table 'slugs' not found"
Hi guys
Im having a strange problem.
I have a completely empty database, the DB connection is fine.
Running 'php artisan migrate:refresh --seed' is failing with it complaining about a missing table.
This would make sense if it was complaining about the migration table being missing but it's not it's moaning about one of my custom tables being missing 'slugs'.
php artisan cache:clear returns the same error..
I don't understand why the seed command cares about a 'missing table'? (The migration file is present).
What's also odd is that this table was one of the first migrations I made and the error didnt actually appear at any apparently sensible time (I wasn't even touching migrations)
Is there something else at play here I am missing?