관리-도구
편집 파일: 2021_03_08_020247_create_password_resets_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePasswordResetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('password_resets', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('email', 191)->index('email'); $table->string('token', 191)->index('token'); $table->timestamps(6); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('password_resets'); } }