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