From 15d1c6910fb6639523d49bdf45e845943fe334eb Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 1 Feb 2023 16:03:09 -0300 Subject: [PATCH] Bug 20256: DBIC schema Signed-off-by: Tomas Cohen Arazi --- 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..9687b1d640 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.07049 @ 2023-02-01 19:02:36 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G6Q4trvkAM/xH1skCv+B6g sub koha_object_class { 'Koha::Library::Group'; -- 2.39.5