@@ -, +, @@ --- Koha/Schema/Result/Category.pm | 7 +++++++ 1 file changed, 7 insertions(+) --- a/Koha/Schema/Result/Category.pm +++ a/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 --