feat: [approval] approvals 테이블에 rejection_history JSON 컬럼 추가

This commit is contained in:
김보곤
2026-03-05 13:50:46 +09:00
parent 3785d87df4
commit 18f39433ae

View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('approvals', function (Blueprint $table) {
$table->json('rejection_history')->nullable()->after('resubmit_count');
});
}
public function down(): void
{
Schema::table('approvals', function (Blueprint $table) {
$table->dropColumn('rejection_history');
});
}
};