From 7ef069bbaf2f099ffd16a65388507044b299e63a Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 9 Apr 2020 09:58:50 -0400 Subject: [PATCH] Bug 20256: Update DB Schema [DO NOT PUSH] Signed-off-by: Bob Bennhoff - CLiC --- Koha/Schema/Result/LibraryGroup.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/LibraryGroup.pm b/Koha/Schema/Result/LibraryGroup.pm index 83dcb7bea2..7639cb8382 100644 --- a/Koha/Schema/Result/LibraryGroup.pm +++ b/Koha/Schema/Result/LibraryGroup.pm @@ -59,6 +59,12 @@ __PACKAGE__->table("library_groups"); default_value: 0 is_nullable: 0 +=head2 ft_limit_item_editing + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 ft_search_groups_opac data_type: 'tinyint' @@ -105,6 +111,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", @@ -224,8 +232,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-30 15:43:39 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qg0Ckj0ZBRjSaQgEcvxSZA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-09 13:28:31 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6Yvf2zgaVx5htI634NzDtQ sub koha_object_class { 'Koha::Library::Group'; -- 2.24.1 (Apple Git-126)