You should write this command:
php artisan make:model modelName --no-migration
The Artisan CLI provides a help message for all teams.
For example, php artisan help make:model shows a list of available cli arguments for the make:model command.
UPDATE [2015] :
Starting with 5.1, migrations are no longer automatically created. You can use the --migration flag to create it.
source share