From 493df11102953c4115b38248964f19bc18911236 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 8 Nov 2017 13:33:40 -0300 Subject: [PATCH] Bug 18882: DBIC Schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Statistic.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Statistic.pm b/Koha/Schema/Result/Statistic.pm index d6fd976f65..f424d5636b 100644 --- a/Koha/Schema/Result/Statistic.pm +++ b/Koha/Schema/Result/Statistic.pm @@ -75,6 +75,12 @@ __PACKAGE__->table("statistics"); is_nullable: 1 size: 10 +=head2 location + + data_type: 'varchar' + is_nullable: 1 + size: 80 + =head2 borrowernumber data_type: 'integer' @@ -116,6 +122,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "itemtype", { data_type => "varchar", is_nullable => 1, size => 10 }, + "location", + { data_type => "varchar", is_nullable => 1, size => 80 }, "borrowernumber", { data_type => "integer", is_nullable => 1 }, "associatedborrower", @@ -125,8 +133,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:THELVmdFFi1RCI4DfqwGIw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-11-08 13:32:13 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9xOR9IMMUNysXOlsHnRfHA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2