@@ -, +, @@ --- Koha/Schema/Result/Category.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) --- a/Koha/Schema/Result/Category.pm +++ a/Koha/Schema/Result/Category.pm @@ -133,6 +133,16 @@ __PACKAGE__->table("categories"); data_type: 'tinyint' is_nullable: 1 +=head2 min_password_length + + data_type: 'smallint' + is_nullable: 1 + +=head2 require_strong_password + + data_type: 'tinyint' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -189,6 +199,10 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "change_password", { data_type => "tinyint", is_nullable => 1 }, + "min_password_length", + { data_type => "smallint", is_nullable => 1 }, + "require_strong_password", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY --