php artisan make:migration create_users_table
php artisan make:migration create_users_table --create=users
php artisan make:migration add_votes_to_users_table --table=users
php artisan make:migration create_users_table --create=users
php artisan make:migration add_votes_to_users_table --table=users
php artisan make:Model Product -m -c --resource
//rodar migration específica
php artisan migrate --path='./database/migrations/arquivo_migration.php'
php artisan make: migración create_articles_table --create = artículos
php artisan make:model Employee -m
$table->string('name', 100);
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email');
$table->timestamps();
});
php artisan make:migration create_post_table