From 484d9b022dab1d92a924afeef58116981ca29f51 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 21 Dec 2022 14:48:15 +0000 Subject: [PATCH] Bug 32057: Update ActionLog schema file [DO NOT PUSH] Content-Type: text/plain; charset=utf-8 Signed-off-by: David Nind Signed-off-by: Marcel de Rooy --- 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 734b8a1715..474ba44c90 100644 --- a/Koha/Schema/Result/ActionLog.pm +++ b/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 -- 2.30.2