diff --git a/database/migrations/2025_03_12_184851_purge_action_logs_table_of_consumable_checkin_entries.php b/database/migrations/2025_03_12_184851_purge_action_logs_table_of_consumable_checkin_entries.php new file mode 100644 index 0000000000..6f2b1324bf --- /dev/null +++ b/database/migrations/2025_03_12_184851_purge_action_logs_table_of_consumable_checkin_entries.php @@ -0,0 +1,30 @@ +where([ + 'action_type' => 'checkin from', + 'note' => 'Bulk checkin items', + 'item_type' => Consumable::class, + ]) + ->delete(); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // nothing to do here... + } +};