From 03c919daab299fa272960a24d382a4ebd230265d Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 1 Jul 2016 18:33:15 -0300 Subject: [PATCH] Bug 16829: DBIx update Sponsored-by: NEKLS Signed-off-by: Nicole C Engard --- Koha/Schema/Result/ActionLog.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ActionLog.pm b/Koha/Schema/Result/ActionLog.pm index 054693e..5705404 100644 --- a/Koha/Schema/Result/ActionLog.pm +++ b/Koha/Schema/Result/ActionLog.pm @@ -62,6 +62,12 @@ __PACKAGE__->table("action_logs"); data_type: 'text' is_nullable: 1 +=head2 interface + + data_type: 'varchar' + is_nullable: 1 + size: 30 + =cut __PACKAGE__->add_columns( @@ -84,6 +90,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "info", { data_type => "text", is_nullable => 1 }, + "interface", + { data_type => "varchar", is_nullable => 1, size => 30 }, ); =head1 PRIMARY KEY @@ -99,8 +107,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("action_id"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KRt26bXGF2SqTrf5u8MSig +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-25 13:10:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Wmjd736WUdPfIn581rXTzw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.1.4