From f9dd679abc3a10b9542cae7a5dc5b6b90a831f04 Mon Sep 17 00:00:00 2001 From: "kushal.saha" Date: Fri, 28 Aug 2026 08:00:40 +0000 Subject: [PATCH] fix(interview): restore missing resume_path migration file - Recreate 2026_08_27_103000_add_resume_path_to_interviews_table migration --- ...00_add_resume_path_to_interviews_table.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2026_08_27_103000_add_resume_path_to_interviews_table.php diff --git a/database/migrations/2026_08_27_103000_add_resume_path_to_interviews_table.php b/database/migrations/2026_08_27_103000_add_resume_path_to_interviews_table.php new file mode 100644 index 0000000..2a16a79 --- /dev/null +++ b/database/migrations/2026_08_27_103000_add_resume_path_to_interviews_table.php @@ -0,0 +1,28 @@ +string('resume_path')->nullable()->after('description'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('interviews', function (Blueprint $table) { + $table->dropColumn('resume_path'); + }); + } +};