From 837b38217fa17076aea79922d523cb9d82ab0e51 Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Wed, 12 Oct 2022 15:05:49 +0200 Subject: [PATCH] DBIC Signed-off-by: Arthur Suzuki --- Koha/Schema/Result/ActionLog.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ActionLog.pm b/Koha/Schema/Result/ActionLog.pm index 27949e0989..487b925500 100644 --- a/Koha/Schema/Result/ActionLog.pm +++ b/Koha/Schema/Result/ActionLog.pm @@ -84,6 +84,14 @@ information about the action (usually includes SQL statement) the context this action was taken in +=head2 script + + data_type: 'varchar' + is_nullable: 1 + size: 255 + +the name of the cron script that caused this change + =cut __PACKAGE__->add_columns( @@ -108,6 +116,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "interface", { data_type => "varchar", is_nullable => 1, size => 30 }, + "script", + { data_type => "varchar", is_nullable => 1, size => 255 }, ); =head1 PRIMARY KEY @@ -123,8 +133,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("action_id"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uwUz/TduCEGKtT1UR2x84A +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-12 12:46:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:W8xrE3PbRqfd4csmPwzIFg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5