From 05a979a8ae91748ade65ee47e0e8ba3ad18797c8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 2 May 2024 14:31:05 +0000 Subject: [PATCH] Bug 25159: DBIC schema update Signed-off-by: Katrin Fischer --- Koha/Schema/Result/ActionLog.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ActionLog.pm b/Koha/Schema/Result/ActionLog.pm index 9a1da9747f..c97ffdcf21 100644 --- a/Koha/Schema/Result/ActionLog.pm +++ b/Koha/Schema/Result/ActionLog.pm @@ -99,6 +99,13 @@ the name of the cron script that caused this change An optional stack trace enabled by ActionLogsTraceDepth +=head2 diff + + data_type: 'longtext' + is_nullable: 1 + +Stores a diff of the changed object + =cut __PACKAGE__->add_columns( @@ -127,6 +134,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 255 }, "trace", { data_type => "text", is_nullable => 1 }, + "diff", + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -142,8 +151,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("action_id"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-14 11:43:23 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pk40bYslXRv5opmzBBVs3w +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-02 14:28:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8ZJaG4iJAbay93LAg5xPsQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5