Merge pull request 'fix(interview): restore missing resume_path migration file' (#24) from fix/interview into main

Reviewed-on: #24
This commit is contained in:
subhajit.pal 2026-08-28 08:03:22 +00:00
commit be55b88180

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