<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAgoraHistoryTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('agora_history', function (Blueprint $table) { $table->engine = "InnoDB"; $table->increments('id'); $table->integer('session_id')->unsigned(); $table->integer('start_at')->unsigned(); $table->integer('end_at')->unsigned()->nullable(); $table->foreign('session_id')->on('sessions')->references('id')->cascadeOnDelete(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('agora_history'); } }