D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
database
/
migrations
/
Filename :
2024_03_18_000000_add_is_verified_to_otps_table.php
back
Copy
<?php use App\Enums\Ask; use App\Enums\Status; 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(): void { Schema::table('otps', function (Blueprint $table) { $table->tinyInteger('is_verified')->nullable()->default(Ask::NO); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('otps', function (Blueprint $table) { $table->dropColumn('is_verified'); }); } };