From 72101c1d7b173e63a613f04679cfac6efda481d6 Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Fri, 2 Jul 2021 06:51:37 +0000 Subject: [PATCH] Bug 26346: Updated schema file Sponsored-By: Catalyst IT Signed-off-by: Lucas Gass --- Koha/Schema/Result/Virtualshelve.pm | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/Virtualshelve.pm b/Koha/Schema/Result/Virtualshelve.pm index 9aaae8d602..06bc299c62 100644 --- a/Koha/Schema/Result/Virtualshelve.pm +++ b/Koha/Schema/Result/Virtualshelve.pm @@ -97,6 +97,12 @@ can owner change contents? can others change contents? +=head2 allow_change_from_staff + + data_type: 'tinyint' + default_value: 0 + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -132,6 +138,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 1, is_nullable => 1 }, "allow_change_from_others", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "allow_change_from_staff", + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -199,8 +207,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-09-07 11:08:02 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QH2/kScjb+lwTwrChjem1Q +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-11-24 12:55:31 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vasSog+BlcRyTYFKGhyCIA sub koha_object_class { 'Koha::Virtualshelf'; @@ -209,8 +217,5 @@ sub koha_objects_class { 'Koha::Virtualshelves'; } -__PACKAGE__->add_columns( - '+public' => { is_boolean => 1 }, -); - +# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 2.20.1