fanatic/database/migrations/01_create_password_resets_table.php
2022-04-26 21:16:46 -07:00

27 lines
620 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class() extends Migration {
/**
* Run the migrations.
*/
public function up()
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token');
$table->timestamp('created_at', 6)->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
};