Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
database
/
migrations
/
Editing: 2021_08_29_133037_create_phone_verifications_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePhoneVerificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('phone_verifications', function (Blueprint $table) { $table->id(); $table->string('phone')->nullable(); $table->string('token')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('phone_verifications'); } }
Save
Cancel