@@ -, +, @@ --- Koha/Schema/Result/Borrower.pm | 8 ++++---- Koha/Schema/Result/BorrowerModification.pm | 8 ++++---- Koha/Schema/Result/Deletedborrower.pm | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) --- a/Koha/Schema/Result/Borrower.pm +++ a/Koha/Schema/Result/Borrower.pm @@ -426,7 +426,7 @@ Authentication method =head2 flags - data_type: 'integer' + data_type: 'bigint' is_nullable: 1 will include a number associated with the staff member's permissions @@ -774,7 +774,7 @@ __PACKAGE__->add_columns( is_nullable => 0, }, "flags", - { data_type => "integer", is_nullable => 1 }, + { data_type => "bigint", is_nullable => 1 }, "userid", { data_type => "varchar", is_nullable => 1, size => 75 }, "opacnote", @@ -2103,8 +2103,8 @@ Composing rels: L -> permission __PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 14:23:57 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/63fcorna7WyO+DyLg8qLA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wir+5++YaTGZG2teK3DJnA __PACKAGE__->has_many( "restrictions", --- a/Koha/Schema/Result/BorrowerModification.pm +++ a/Koha/Schema/Result/BorrowerModification.pm @@ -327,7 +327,7 @@ patron/borrower's middle name =head2 flags - data_type: 'integer' + data_type: 'bigint' is_nullable: 1 =head2 userid @@ -578,7 +578,7 @@ __PACKAGE__->add_columns( "password", { data_type => "varchar", is_nullable => 1, size => 30 }, "flags", - { data_type => "integer", is_nullable => 1 }, + { data_type => "bigint", is_nullable => 1 }, "userid", { data_type => "varchar", is_nullable => 1, size => 75 }, "opacnote", @@ -638,8 +638,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 18:03:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NsjvIPMgGDCa0LZQc157Ww +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/i+eaKTHkS4cdshyqhJKFQ sub koha_object_class { 'Koha::Patron::Modification'; --- a/Koha/Schema/Result/Deletedborrower.pm +++ a/Koha/Schema/Result/Deletedborrower.pm @@ -424,7 +424,7 @@ Authentication method =head2 flags - data_type: 'integer' + data_type: 'bigint' is_nullable: 1 will include a number associated with the staff member's permissions @@ -759,7 +759,7 @@ __PACKAGE__->add_columns( is_nullable => 0, }, "flags", - { data_type => "integer", is_nullable => 1 }, + { data_type => "bigint", is_nullable => 1 }, "userid", { data_type => "varchar", is_nullable => 1, size => 75 }, "opacnote", @@ -838,8 +838,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 18:03:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OKIbF7K2KWpEJGbFbetD0w +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iO5AIhfRx9dJix/L7JAKyw __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 }, --