From c36527b83392cf72acae8a86d70e36cc049bad98 Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Sat, 19 Sep 2020 01:28:54 +0200 Subject: [PATCH] Bug 24379: DBIC Signed-off-by: Victor Grousset/tuxayo --- Koha/Schema/Result/Borrower.pm | 8 ++++---- Koha/Schema/Result/Deletedborrower.pm | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index 5499a48809..e7acd1bb8f 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -429,7 +429,7 @@ __PACKAGE__->table("borrowers"); data_type: 'integer' default_value: 0 - is_nullable: 1 + is_nullable: 0 =head2 overdrive_auth_token @@ -621,7 +621,7 @@ __PACKAGE__->add_columns( size => 25, }, "login_attempts", - { data_type => "integer", default_value => 0, is_nullable => 1 }, + { data_type => "integer", default_value => 0, is_nullable => 0 }, "overdrive_auth_token", { data_type => "mediumtext", is_nullable => 1 }, "anonymized", @@ -1494,8 +1494,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-22 19:19:25 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EpBTAOkC0dghJduMNEwUiQ +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-09-18 23:25:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SRmURfsIwe054Hx2ndxvXQ __PACKAGE__->belongs_to( "guarantor", diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm index 5518c3b0da..768c4f337a 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -426,7 +426,7 @@ __PACKAGE__->table("deletedborrowers"); data_type: 'integer' default_value: 0 - is_nullable: 1 + is_nullable: 0 =head2 overdrive_auth_token @@ -606,7 +606,7 @@ __PACKAGE__->add_columns( size => 25, }, "login_attempts", - { data_type => "integer", default_value => 0, is_nullable => 1 }, + { data_type => "integer", default_value => 0, is_nullable => 0 }, "overdrive_auth_token", { data_type => "mediumtext", is_nullable => 1 }, "anonymized", @@ -614,8 +614,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-22 19:19:25 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:29hi9QI9+xTuI+pl16KhgQ +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-09-18 23:25:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PE2hRQe3lLyQ0MATfHKk8A # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5