Edit File: 2021_06_30_135437_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->foreignId('user_id')->nullable()->constrained()->onDelete('cascade'); $table->string('device_id')->nullable(); $table->string('device_type')->nullable(); $table->boolean('show_ads')->default(true); $table->boolean('orders_notify')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('devices'); } }
Back to File Manager