From d602ab29942e05842aed63f2a802b6ab352cdf6a 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 --- Koha/Schema/Result/Virtualshelve.pm | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Koha/Schema/Result/Virtualshelve.pm b/Koha/Schema/Result/Virtualshelve.pm index 9aaae8d602..a7a53c1359 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,18 +207,9 @@ __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 - -sub koha_object_class { - 'Koha::Virtualshelf'; -} -sub koha_objects_class { - 'Koha::Virtualshelves'; -} +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-11-12 15:10:47 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BJDEOgpWC5XRKLCYs2cuZw -__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.11.0