From ef94f8e190d92530737e08cfebee503ef506a91d Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 19 Sep 2019 20:47:26 +0000 Subject: [PATCH] Bug 23151: RMaint Follow up Signed-off-by: Lucas Gass --- Koha/Schema/Result/BorrowerModification.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm index af7caece01..8496e3f913 100644 --- a/Koha/Schema/Result/BorrowerModification.pm +++ b/Koha/Schema/Result/BorrowerModification.pm @@ -40,7 +40,7 @@ __PACKAGE__->table("borrower_modifications"); =head2 changed_fields data_type: 'mediumtext' - is_nullable: 1 + is_nullable: 0 =head2 borrowernumber @@ -439,7 +439,7 @@ __PACKAGE__->add_columns( "verification_token", { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, "changed_fields", - { data_type => "mediumtext", is_nullable => 1 }, + { data_type => "mediumtext", is_nullable => 0 }, "borrowernumber", { data_type => "integer", default_value => 0, is_nullable => 0 }, "cardnumber", @@ -617,8 +617,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-06-19 15:36:58 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:j0cpf6F6MHMqFopc+/Wnbw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-19 20:31:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5h8JM72XSnki8KftsSinGQ # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.5