create('exam_answers', function ($table) { $table->engine = 'InnoDB'; $table->bigIncrements('id')->unsigned(); $table->bigInteger('exam_question_id')->unsigned(); $table ->foreign('exam_question_id') ->references('id') ->on('exam_questions'); $table->text('text'); $table->boolean('is_correct'); }); } public function down() { Schema::connection('germanairlinesva_schooling')->dropIfExists('exam_answers'); } }