Edit File: 2020_09_02_134155_create_devices_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDevicesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('devices', function (Blueprint $table) { $table->id(); $table->enum('device_type', ['ios', 'android' , 'web'])->nullable(); $table->longText('device_id'); $table->integer('morph_id'); $table->string('morph_type'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('devices'); } }
Back to File Manager