Bug 13757: DBIC update
authorTomas Cohen Arazi <tomascohen@theke.io>
Thu, 27 Oct 2016 14:52:20 +0000 (11:52 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 24 Mar 2017 18:44:55 +0000 (18:44 +0000)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha/Schema/Result/BorrowerAttributeType.pm

index 47fc12f..7c4b779 100644 (file)
@@ -53,6 +53,12 @@ __PACKAGE__->table("borrower_attribute_types");
   default_value: 0
   is_nullable: 0
 
+=head2 opac_editable
+
+  data_type: 'tinyint'
+  default_value: 0
+  is_nullable: 0
+
 =head2 staff_searchable
 
   data_type: 'tinyint'
@@ -97,6 +103,8 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "opac_display",
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
+  "opac_editable",
+  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "staff_searchable",
   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
   "authorised_value_category",
@@ -154,8 +162,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-25 18:09:15
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KzCA3jRyp/uqYdrHFXaw7Q
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-25 20:32:12
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsPR8PuUUZHFUkr3MIbTpw
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration