increments('id'); $table->text('content'); $table->unsignedInteger('user_id'); $table->unsignedInteger('video_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('comments'); } }