From c46aeadafb98f2ed349457834c7a7a1a904b3e67 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Sun, 11 Jun 2017 19:21:16 +0000 Subject: [PATCH] Bug 10132: DBIC update Signed-off-by: Hugo Agud Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Branch.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index b4960ef..58e1121 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -134,6 +134,12 @@ __PACKAGE__->table("branches"); is_nullable: 1 size: 255 +=head2 marcorgcode + + data_type: 'varchar' + is_nullable: 1 + size: 16 + =cut __PACKAGE__->add_columns( @@ -179,6 +185,8 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "geolocation", { data_type => "varchar", is_nullable => 1, size => 255 }, + "marcorgcode", + { data_type => "varchar", is_nullable => 1, size => 16 }, ); =head1 PRIMARY KEY @@ -596,8 +604,8 @@ Composing rels: L -> categorycode __PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-26 16:17:25 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:99U1YQ4iSum4LbBha4hDTQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-03 21:53:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S44besPbFRnPJpyHRK+aSQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.7.4