Bug 20256: DBIC schema
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 1 Feb 2023 19:03:09 +0000 (16:03 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Thu, 2 Feb 2023 14:59:26 +0000 (11:59 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha/Schema/Result/LibraryGroup.pm

index e158b7f..9687b1d 100644 (file)
@@ -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';