From 0d54b439a9ee2e404e265c849c5dcf10ca116c23 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 24 Jul 2020 22:13:12 +0000 Subject: [PATCH] Bug 24379: DBIC changes Signed-off-by: Lucas Gass --- 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 7cb1cd41ed..72fe2f6500 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -430,7 +430,7 @@ __PACKAGE__->table("borrowers"); data_type: 'integer' default_value: 0 - is_nullable: 1 + is_nullable: 0 =head2 overdrive_auth_token @@ -628,7 +628,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", @@ -1668,8 +1668,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-13 15:28:14 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fsMKg3WKOWjvYF5OZEFGQA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-24 22:07:14 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:evT4Olazkdl4bt7r0Ly/5Q __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm index 879b4be0d3..f5cf1aaf68 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -427,7 +427,7 @@ __PACKAGE__->table("deletedborrowers"); data_type: 'integer' default_value: 0 - is_nullable: 1 + is_nullable: 0 =head2 overdrive_auth_token @@ -613,7 +613,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", @@ -623,8 +623,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-13 15:28:15 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5d6HsDBV+8YTIWRgIm0+zw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-24 22:07:15 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q8Dw7O3thLnIUD6BSWeLXA __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 }, -- 2.39.5