id(); $table->unsignedBigInteger('commentable_id'); $table->string('commentable_type'); $table->unsignedBigInteger('user_id'); $table->string('comment'); $table->timestamps(); $table->softDeletes(); $table->foreign('user_id')->references('id')->on('users'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('comments'); } }