id(); $table->bigInteger('authorID')->unsigned(); $table->bigInteger('applicationID')->unsigned(); $table->mediumText('text'); $table->timestamps(); $table->foreign('authorID') ->references('id') ->on('users'); $table->foreign('applicationID') ->references('id') ->on('applications'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }