From 6bfc9c6f209a3cd7ca3d4b7b2f06f7ccf63666f6 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 27 Oct 2016 11:52:20 -0300 Subject: [PATCH] Bug 13757: DBIC update Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/BorrowerAttributeType.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/BorrowerAttributeType.pm b/Koha/Schema/Result/BorrowerAttributeType.pm index 47fc12f..7c4b779 100644 --- a/Koha/Schema/Result/BorrowerAttributeType.pm +++ b/Koha/Schema/Result/BorrowerAttributeType.pm @@ -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 -- 2.7.4