From aa9c1dbd954af75033f074e7868ff7f440faac31 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Tue, 22 Sep 2020 10:09:05 +0300 Subject: [PATCH 2/3] Bug 12617: DO NOT PUSH! Schema change --- Koha/Schema/Result/Category.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 0fdac2cc7c..e08ea6ab02 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -142,6 +142,11 @@ __PACKAGE__->table("categories"); data_type: 'tinyint' is_nullable: 1 +=head2 passwordpolicy + + data_type: 'varchar' + is_nullable: 1 + size: 40 =head2 exclude_from_local_holds_priority @@ -210,6 +215,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "passwordpolicy", + { data_type => "varchar", is_nullable => 1, size => 40 }, ); =head1 PRIMARY KEY -- 2.17.1