<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserFirebaseSessions extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_firebase_sessions', function (Blueprint $table) { $table->id(); $table->integer("user_id")->unsigned(); $table->text("token"); $table->text("fcm_token")->nullable(); $table->string("ip"); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_firebase_sessions'); } }