<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCommentTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('comments', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->increments('id'); $table->integer('item_id')->unsigned(); $table->integer('user_id')->unsigned(); $table->integer('reply_id')->unsigned()->nullable(); $table->text('comment')->nullable(); $table->enum('status',['open', 'replied', 'new']); $table->integer('created_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }