@cjbannister it's probably coming from Laravel Cashier package, add Cashier::ignoreMigrations(); to register method in your AppServiceProvider.
Laravel is trying to run a migration which doesn't exist
I have a migration named 2019_10_03_000001_create_customer_columns.
When I run php artisan migrate I get an error:
Migrating: 2019_05_03_000001_create_customer_columns
...
Column already exists: 1060 Duplicate column name 'stripe_id'
Note how it's trying to run a migration with a different timestamp. I've searched and the migration with the 05 timestamp does not exist anywhere.
I've tried:
composer dump
composer dumpautoload
php artisan optimize
php artisan cache:clear
php artisan config:clear
Then I've tried updating the real file with an if table exists check but I get the exact same error.
I've searched everywhere and the only person with the same issue fixed it with composer dump-autoload
What the fucks going on!?
Note this is a live, production database so I can't start again. It's happening locally too though.
I'd share the code but, you know, the file doesn't exist.
Please or to participate in this conversation.