From 83b7f1a74d6c9089e7ddf4c9435436e51b519ff1 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 1 Aug 2022 10:00:54 -0300 Subject: [PATCH] Bug 30984: DBIC update Signed-off-by: Tomas Cohen Arazi --- 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..734b8a1715 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-08-01 12:59:53 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hqt9IBtfv2ZFiXWx10b8xQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1