Bug 23152: Implement koha_object[s]_class when needed
[koha-equinox.git] / Koha / Schema / Result / BorrowerAttributeType.pm
index 47fc12f..46a86f0 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,9 +162,14 @@ __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
 
+sub koha_object_class {
+    'Koha::Patron::Attribute::Type';
+}
+sub koha_objects_class {
+    'Koha::Patron::Attribute::Types';
+}
 
-# You can replace this text with custom content, and it will be preserved on regeneration
 1;