Bug 13757: DBIC update
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>
This commit is contained in:
parent
0a40e0c60f
commit
2eda977de7
1 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue