@@ -, +, @@ --- Koha/Schema/Result/BorrowerModification.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/BorrowerModification.pm +++ a/Koha/Schema/Result/BorrowerModification.pm @@ -37,6 +37,11 @@ __PACKAGE__->table("borrower_modifications"); is_nullable: 0 size: 255 +=head2 changed_fields + + data_type: 'mediumtext' + is_nullable: 1 + =head2 borrowernumber data_type: 'integer' @@ -433,6 +438,8 @@ __PACKAGE__->add_columns( }, "verification_token", { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, + "changed_fields", + { data_type => "mediumtext", is_nullable => 1 }, "borrowernumber", { data_type => "integer", default_value => 0, is_nullable => 0 }, "cardnumber", @@ -610,8 +617,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-20 13:00:20 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qQ0BWngri+79YvK9S8zZPg +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-06-19 15:36:58 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:j0cpf6F6MHMqFopc+/Wnbw # You can replace this text with custom content, and it will be preserved on regeneration --