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

This commit is contained in:
김보곤
2026-03-05 13:06:31 +09:00
parent d9075e5da5
commit 3785d87df4

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->unsignedTinyInteger('resubmit_count')->default(0)->after('current_step');
});
}
public function down(): void
{
Schema::table('approvals', function (Blueprint $table) {
$table->dropColumn('resubmit_count');
});
}
};