for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateOtpTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('otps', function (Blueprint $table) {
$table->id();
$table->string('key')->index();
$table->string('token')->index();
$table->timestamp('revoked_at')->nullable();
$table->timestamp('used_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('otps');