From 3785d87df40b1d5168bc36333d5882d299976857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 5 Mar 2026 13:06:31 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20[approval]=20approvals=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=EC=97=90=20resubmit=5Fcount=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ..._add_resubmit_count_to_approvals_table.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 database/migrations/2026_03_05_160000_add_resubmit_count_to_approvals_table.php diff --git a/database/migrations/2026_03_05_160000_add_resubmit_count_to_approvals_table.php b/database/migrations/2026_03_05_160000_add_resubmit_count_to_approvals_table.php new file mode 100644 index 0000000..3297435 --- /dev/null +++ b/database/migrations/2026_03_05_160000_add_resubmit_count_to_approvals_table.php @@ -0,0 +1,22 @@ +unsignedTinyInteger('resubmit_count')->default(0)->after('current_step'); + }); + } + + public function down(): void + { + Schema::table('approvals', function (Blueprint $table) { + $table->dropColumn('resubmit_count'); + }); + } +};