@@ -, +, @@ --- 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 @@ -404,6 +404,11 @@ __PACKAGE__->table("borrower_modifications"); data_type: 'integer' is_nullable: 1 +=head2 extended_attributes + + data_type: 'text' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -566,6 +571,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 50 }, "privacy", { data_type => "integer", is_nullable => 1 }, + "extended_attributes", + { data_type => "text", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -583,8 +590,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vZ9XjkjQv0q6l2kW3KMsLg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-12 20:04:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IZNhBX5Bj+x4S8JCWG+7lA # You can replace this text with custom content, and it will be preserved on regeneration --