From b60598f6a22d00985331b272fa107f04ce75757d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 29 Jan 2021 10:30:40 -0500 Subject: [PATCH] Bug 20256: Update DB Schema [DO NOT PUSH] Signed-off-by: Martin Renvoize --- Koha/Schema/Result/LibraryGroup.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/LibraryGroup.pm b/Koha/Schema/Result/LibraryGroup.pm index e158b7f928..7e098048ae 100644 --- a/Koha/Schema/Result/LibraryGroup.pm +++ b/Koha/Schema/Result/LibraryGroup.pm @@ -71,6 +71,14 @@ Longer explanation of the group, if necessary Turn on the feature 'Hide patron's info' for this group +=head2 ft_limit_item_editing + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +Turn on the feature "Limit item editing by group" for this group + =head2 ft_search_groups_opac data_type: 'tinyint' @@ -127,6 +135,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "ft_hide_patron_info", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "ft_limit_item_editing", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "ft_search_groups_opac", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "ft_search_groups_staff", @@ -246,8 +256,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WOqjMuJNt1Sh2FUvt3NGxA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-01-29 15:27:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TRztggXOBO0KrvgsLO7FzQ sub koha_object_class { 'Koha::Library::Group'; -- 2.30.2