Files
backend/database/migrations/2024_03_05_133823_create_otps_table.php

37 lines
807 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.
*
* @return void
*/
public function up()
{
Schema::create('otps', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('phone_number');
$table->integer('verification_code');
$table->boolean('used')->default(false);
$table->string('ip');
$table->dateTime('expired_at');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('otps');
}
};