@@ -, +, @@ --- Koha/Schema/Result/Category.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Category.pm +++ a/Koha/Schema/Result/Category.pm @@ -128,6 +128,11 @@ __PACKAGE__->table("categories"); data_type: 'tinyint' is_nullable: 1 +=head2 change_password + + data_type: 'tinyint' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -182,6 +187,8 @@ __PACKAGE__->add_columns( }, "reset_password", { data_type => "tinyint", is_nullable => 1 }, + "change_password", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -289,8 +296,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-02-06 13:49:56 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mxGB87mA1hlowEF+tuMPLg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-02-19 02:41:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Z3epoYMS3ZotEjR4qsO/7w # You can replace this text with custom content, and it will be preserved on regeneration --