From f780f2f3e6d46aa34eafb19db4f5fa784071d889 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 18 Jul 2023 07:05:04 -0400 Subject: [PATCH 2/5] Bug 25159: Update Schema File [DO NOT PUSH] Signed-off-by: Kyle Hall Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Emmi Takkinen --- 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..64391c1ced 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.07049 @ 2023-07-18 11:04:28 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:k07I1HWpWKg0K4+JvQKAYA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.34.1