php artisan make:migration create_users_table
Schema::create('users', function (Blueprint $table)
{
$table->id();
$table->string('name');
$table->string('email');
$table->timestamps();
});
php artisan migrate