unsignedBigInteger('answer_id')->after('survey_id'); // answer_id }); } /** * Reverse the migrations. */ public function down(): void { // remove answer_id Schema::table('question_answers', function (Blueprint $table) { $table->dropColumn('answer_id'); // answer_id }); } };