@@ -, +, @@ --- 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 @@ -92,6 +92,13 @@ the context this action was taken in the name of the cron script that caused this change +=head2 trace + + data_type: 'text' + is_nullable: 1 + +An optional stack trace enabled by ActionLogsTraceDepth + =cut __PACKAGE__->add_columns( @@ -118,6 +125,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 30 }, "script", { data_type => "varchar", is_nullable => 1, size => 255 }, + "trace", + { data_type => "text", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -133,8 +142,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("action_id"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-01 12:59:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hqt9IBtfv2ZFiXWx10b8xQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-12-21 14:47:35 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DcGsVb6W+CC8Qn8jeJpU8Q # You can replace this text with custom code or comments, and it will be preserved on regeneration --