From 76599035cb9f604ea4a94928c82cc8efb396ea73 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 12 Apr 2019 02:52:02 +0000 Subject: [PATCH] Bug 10796: Schema changes Signed-off-by: Nick Clemens --- Koha/Schema/Result/Category.pm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 7dc10ff29c..b32b96759a 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -123,6 +123,16 @@ __PACKAGE__->table("categories"); is_nullable: 0 size: 7 +=head2 reset_password + + data_type: 'tinyint' + is_nullable: 1 + +=head2 change_password + + data_type: 'tinyint' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -175,6 +185,10 @@ __PACKAGE__->add_columns( is_nullable => 0, size => 7, }, + "reset_password", + { data_type => "tinyint", is_nullable => 1 }, + "change_password", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -252,8 +266,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-05 20:42:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XR5anXl3qCAm/Fa/l+zYpQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-12 02:43:58 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7rwTH9HuxcdRCBP/bj0d/A # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2