From b96e2fb52c61fe2d961d16b939e849c1a399361a Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Thu, 23 Oct 2025 15:40:54 +0100 Subject: [PATCH] Added migration to fix incorrect action_type in action_log --- ..._144927_migrate_incorrect_action_types.php | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 database/migrations/2025_10_22_144927_migrate_incorrect_action_types.php diff --git a/database/migrations/2025_10_22_144927_migrate_incorrect_action_types.php b/database/migrations/2025_10_22_144927_migrate_incorrect_action_types.php new file mode 100644 index 0000000000..7eff84667a --- /dev/null +++ b/database/migrations/2025_10_22_144927_migrate_incorrect_action_types.php @@ -0,0 +1,38 @@ +where('action_type', 'request_canceled')->update(['action_type' => 'request canceled']); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // no down migration for this one + } +};