From 9c347a7f3571b36b8c3415e41cf567fa76f0ad56 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 23 Mar 2017 13:32:34 -0300 Subject: [PATCH] Bug 18066: Update Schema This patch basically reverts 85a21dd9715518746dd93defd4803a81d23a5b18 --- 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 acbe5ca126..875c210355 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -128,6 +128,12 @@ __PACKAGE__->table("branches"); data_type: 'text' is_nullable: 1 +=head2 geolocation + + data_type: 'varchar' + is_nullable: 1 + size: 255 + =cut __PACKAGE__->add_columns( @@ -171,6 +177,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "opac_info", { data_type => "text", is_nullable => 1 }, + "geolocation", + { data_type => "varchar", is_nullable => 1, size => 255 }, ); =head1 PRIMARY KEY @@ -543,8 +551,8 @@ Composing rels: L -> categorycode __PACKAGE__->many_to_many("categorycodes", "branchrelations", "categorycode"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 00:39:05 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U1U/OTAkM3scLXJhzY/Jgw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:04 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r12VO55fG0lzxkz7fVDmAA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.11.0