Laravel make model with migration

I'm creating a model on the Laravel 5 with this command:

php artisan make:model Settings

As it shows on the video lessons that as soon as model is created, new migration file also must be created. But, in my situtation, migration is not being created. How can I get the migration generated when model is created?

composer.json:

...
    "require": {
            "php": ">=5.5.9",
            "laravel/framework": "5.1.*"
        },
...

I'm guessing your build of L5 is fairly old, as they disabled creating migrations alongside the model creation.

Try running the ff:

php artisan make:model Settings --migration

Try using this Command

php artisan make:model ModelName -m

OR

php artisan make:model ModelName --migration

It will create model with migration class


Also you can use this command:

    php artisan make:model ModelName -m

and if you wanna make controller for your model, you should write this command :

   php artisan make:model ModelName -mc
   
   // or 

   php artisan make:model ModelName -mcr  //(r: for resource methods)