From a306bcf478f83902104990cffa6dfaa19b55c2b7 Mon Sep 17 00:00:00 2001 From: Saiful Amin Date: Wed, 4 Mar 2026 06:28:02 +0000 Subject: [PATCH] Bug 41310: Schema changes DO NOT PUSH --- Koha/Schema/Result/ActionLog.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Koha/Schema/Result/ActionLog.pm b/Koha/Schema/Result/ActionLog.pm index c97ffdcf21..82ff990004 100644 --- a/Koha/Schema/Result/ActionLog.pm +++ b/Koha/Schema/Result/ActionLog.pm @@ -106,6 +106,14 @@ An optional stack trace enabled by ActionLogsTraceDepth Stores a diff of the changed object +=head2 ip_address + + data_type: 'varchar' + is_nullable: 1 + size: 45 + +IP address of the client that performed the action + =cut __PACKAGE__->add_columns( @@ -136,6 +144,8 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "diff", { data_type => "longtext", is_nullable => 1 }, + "ip_address", + { data_type => "varchar", is_nullable => 1, size => 45 }, ); =head1 PRIMARY KEY -- 2.43.0