Bug 10132: DBIC update
authorJosef Moravec <josef.moravec@gmail.com>
Sun, 11 Jun 2017 19:21:16 +0000 (19:21 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 19 Sep 2017 12:47:27 +0000 (09:47 -0300)
Signed-off-by: Hugo Agud <hagud@orex.es>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha/Schema/Result/Branch.pm

index b4960ef..58e1121 100644 (file)
@@ -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</branchrelations> -> 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