fanatic/database/migrations/01_create_password_resets_table.php

28 lines
620 B
PHP
Raw Normal View History

2022-04-22 20:01:30 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class() extends Migration {
2022-04-22 20:01:30 -07:00
/**
* 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();
2022-04-22 20:01:30 -07:00
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
};