Filament Migration Issue

Hey team, I’m having trouble with Filament migrations — running:
php artisan migrate:fresh --seed
php artisan migrate:fresh --seed
drops all tables but doesn’t create the users, jobs, sessions, or cache tables. Seeder fails because the tables don’t exist. I’ve checked: * Migration files exist in database/migrations * There are duplicate/old migrations like 0001_01_01_000001_create_cache_table.php * migrate:fresh still reports “Nothing to migrate” It seems Laravel isn’t detecting the migration files, possibly due to: * Anonymous classes in migration files * Duplicate class names * Old/fake timestamps Any guidance on how to force Laravel to run all Filament migrations properly would be appreciated! 🙏 --- I can also draft an even shorter version for Discord that’s under 5 lines, perfect for quick pinging. Do you want me to do that?
2 Replies
Jonathan Christiani
Did you make sure the .env database configuration are correct?
Dennis Koch
Dennis Koch3w ago
Those aren't Filament migrations. They all should come from Laravel and exist in your project.

Did you find this page helpful?