php - Why does a previously deleted migration keep returning on creating a model in laravel? -


for fresh start,

i've deleted migration files, dropped tables in mysql , deleted table migrations columns in mysql.

but when i'm running php artisan make:model article laravel responds

model created successfully. created migration: 2015_04_28_181243_create_articles_table 

which migration file i've deleted previously! why keep returning way? , how can rid of completely?

well make:model command generates migration default.
opt-out of add no-migration option:

php artisan make:model article --no-migration 

Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -