From f22ebaffe606b1616bacfc690392d4fc4b8f4a47 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 3 May 2017 04:17:12 -0300 Subject: [PATCH] Bug 15705: DBIC Schema changes Signed-off-by: Nick Clemens --- Koha/Schema/Result/Issue.pm | 12 ++++++++++-- Koha/Schema/Result/OldIssue.pm | 12 ++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index eb11d37..eef46af 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -76,6 +76,12 @@ __PACKAGE__->table("issues"); default_value: 0 is_nullable: 1 +=head2 auto_renew_error + + data_type: 'varchar' + is_nullable: 1 + size: 32 + =head2 timestamp data_type: 'timestamp' @@ -139,6 +145,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "auto_renew", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "auto_renew_error", + { data_type => "varchar", is_nullable => 1, size => 32 }, "timestamp", { data_type => "timestamp", @@ -233,8 +241,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:03:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3GAOBprPziYcGJF2A5xReg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-03 04:12:22 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ozRQZiF1LlOJy4KI53OpFw __PACKAGE__->belongs_to( "borrower", diff --git a/Koha/Schema/Result/OldIssue.pm b/Koha/Schema/Result/OldIssue.pm index 8aeff7d..4a03bc9 100644 --- a/Koha/Schema/Result/OldIssue.pm +++ b/Koha/Schema/Result/OldIssue.pm @@ -75,6 +75,12 @@ __PACKAGE__->table("old_issues"); default_value: 0 is_nullable: 1 +=head2 auto_renew_error + + data_type: 'varchar' + is_nullable: 1 + size: 32 + =head2 timestamp data_type: 'timestamp' @@ -138,6 +144,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "auto_renew", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "auto_renew_error", + { data_type => "varchar", is_nullable => 1, size => 32 }, "timestamp", { data_type => "timestamp", @@ -218,8 +226,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:03:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5K7XiVMbAtr3q4GPqKrWOA +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-03 04:12:22 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rvUGkBhLE7AwPNp1viI23Q sub koha_objects_class { 'Koha::Old::Checkouts'; -- 2.1.4