diff --git a/database/migrations/2026_03_05_163000_add_rejection_history_to_approvals_table.php b/database/migrations/2026_03_05_163000_add_rejection_history_to_approvals_table.php new file mode 100644 index 0000000..54abe41 --- /dev/null +++ b/database/migrations/2026_03_05_163000_add_rejection_history_to_approvals_table.php @@ -0,0 +1,22 @@ +json('rejection_history')->nullable()->after('resubmit_count'); + }); + } + + public function down(): void + { + Schema::table('approvals', function (Blueprint $table) { + $table->dropColumn('rejection_history'); + }); + } +};