Laravel make:migration generating the created table again and again without creating a new one

I am trying to generate a model with migration file together in Laravel. But it’s saying like I already generated this table and can’t declare it again. The problem is the table that the error referring is wallets table which i already created long long ago and I didn’t include anything that relate to wallets tabel while creating model and migration file with command. It has nothing to do with my current command but why it said like I’ve already create wallets table while I’m generating super_admins_tabel?

I use this command
php artisan make:model SuperAdmin -m
And I got this error
SymfonyComponentErrorHandlerErrorFatalError Cannot declare class CreateWalletsTable, because the name is already in use

The model was created but the migration wasn’t.
I also tried generating migration file alone but it also gave me the same error. Why?