From 6271a0e4030b4537c5c86a9ee5bc94ef3ca988d5 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 17 Sep 2024 17:35:46 +0000 Subject: [PATCH] Bug 33462: DBIC schema update Signed-off-by: Olivier V Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer --- 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 0dc6d41f8c..30a67d5d0e 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -215,6 +215,13 @@ define maximum amount that the guarantees of a patron in this category can have define maximum amount that the guarantors with guarantees of a patron in this category can have outstanding before checkouts are blocked +=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( @@ -284,6 +291,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "noissueschargeguarantorswithguarantees", { data_type => "integer", is_nullable => 1 }, + "force_password_reset_when_set_by_staff", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -391,8 +400,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-19 12:29:41 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WC8+n0x/UB9kDO1ZAVTo/A +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-09-17 17:34:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SZoU95HraPfIzszljOSHyQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5