From e6bf7466d7bd2f2ad4de3a9d5e157fd2a2dcf835 Mon Sep 17 00:00:00 2001 From: Sam Lau Date: Thu, 6 Jun 2024 19:01:48 +0000 Subject: [PATCH] Bug 33462: Update Schema Files [DO NOT PUSH] --- Koha/Schema/Result/Category.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 927e7bd33d..9bf08a3458 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -213,6 +213,13 @@ set required password strength for patrons in this category Exclude patrons of this category from local holds priority +=head2 force_password_reset_when_set_by_staff + + data_type: 'tinyint' + is_nullable: 1 + +if patrons of this category are required to reset password after being created by a staff member + =cut __PACKAGE__->add_columns( @@ -281,6 +288,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "force_password_reset_when_set_by_staff", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -388,8 +397,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 20:49:52 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r0Mftlw4TU7x+Ze2pAlwYQ +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-06 18:58:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fmpmgMv21bXYHsUDu0/jpQ sub koha_object_class { 'Koha::Patron::Category'; -- 2.39.2