Which command is used to create migrations in Laravel? * code example
Example 1: php artisan make migration
php artisan make:migration create_users_table
Example 2: laravel migration
$table->string('name', 100);
php artisan make:migration create_users_table
$table->string('name', 100);