fix(interview): restore missing resume_path migration file

- Recreate 2026_08_27_103000_add_resume_path_to_interviews_table migration
This commit is contained in:
kushal.saha 2026-08-28 08:00:40 +00:00
parent 4bd29b2994
commit f9dd679abc

View File

@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('interviews', function (Blueprint $table) {
$table->string('resume_path')->nullable()->after('description');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('interviews', function (Blueprint $table) {
$table->dropColumn('resume_path');
});
}
};