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'); + }); + } +};