@@ -, +, @@ --- Koha/Schema/Result/ActionLog.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/ActionLog.pm +++ a/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 --