From 27c73342c541353803e91fbe3fa63a2905005ac6 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 14 Feb 2017 09:07:27 +0100 Subject: [PATCH] Bug 9988: DBIx schema changes for need_merge_authorities Content-Type: text/plain; charset=utf-8 As generated by misc/devel/update_dbix_class_files.pl. No test plan. Signed-off-by: Marcel de Rooy --- Koha/Schema/Result/NeedMergeAuthority.pm | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/NeedMergeAuthority.pm b/Koha/Schema/Result/NeedMergeAuthority.pm index 2b491b7..5fd5519 100644 --- a/Koha/Schema/Result/NeedMergeAuthority.pm +++ b/Koha/Schema/Result/NeedMergeAuthority.pm @@ -29,11 +29,21 @@ __PACKAGE__->table("need_merge_authorities"); is_auto_increment: 1 is_nullable: 0 -=head2 authid +=head2 authid_from data_type: 'bigint' is_nullable: 0 +=head2 authid_to + + data_type: 'bigint' + is_nullable: 0 + +=head2 reportxml + + data_type: 'text' + is_nullable: 1 + =head2 done data_type: 'tinyint' @@ -45,8 +55,12 @@ __PACKAGE__->table("need_merge_authorities"); __PACKAGE__->add_columns( "id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, - "authid", + "authid_from", + { data_type => "bigint", is_nullable => 0 }, + "authid_to", { data_type => "bigint", is_nullable => 0 }, + "reportxml", + { data_type => "text", is_nullable => 1 }, "done", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, ); @@ -64,8 +78,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BL9ArSyPrmUG0QrrWgoPSw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-14 09:06:39 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nZzObNCLZLlo0H3ZjuOekw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.1.4