<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSupportsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('supports', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->increments('id'); $table->integer('user_id')->unsigned(); $table->integer('webinar_id')->unsigned()->nullable(); $table->integer('department_id')->unsigned()->nullable(); $table->string('title'); $table->enum('status', ['open', 'close', 'replied'])->default('open'); $table->integer('created_at')->unsigned()->nullable(); $table->integer('updated_at')->unsigned()->nullable(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->foreign('webinar_id')->references('id')->on('webinars')->onDelete('cascade'); $table->foreign('department_id')->references('id')->on('support_departments')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('supports'); } }