increments('id'); $table->integer('user_id')->nullable(); $table->string('comment', 255)->nullable(); $table->string('status', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('reviews'); } }