From 006bd338e3dc6e9b0fc48955a18e48402882d37e Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Fri, 29 Jan 2016 17:15:47 +0000
Subject: [PATCH] Bug 15705: [DO NOT PUSH] DBIC Schema

---
 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 0144a86..5cc4786 100644
--- a/Koha/Schema/Result/Issue.pm
+++ b/Koha/Schema/Result/Issue.pm
@@ -82,6 +82,12 @@ __PACKAGE__->table("issues");
   default_value: 0
   is_nullable: 1
 
+=head2 auto_renew_error
+
+  data_type: 'varchar'
+  is_nullable: 1
+  size: 16
+
 =head2 timestamp
 
   data_type: 'timestamp'
@@ -136,6 +142,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 => 16 },
   "timestamp",
   {
     data_type => "timestamp",
@@ -222,8 +230,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-29 15:31:46
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T5nt8qhlT6ocUG6A9JNIw
 
 __PACKAGE__->belongs_to(
     "borrower",
diff --git a/Koha/Schema/Result/OldIssue.pm b/Koha/Schema/Result/OldIssue.pm
index 6daaa40..8819cbc 100644
--- a/Koha/Schema/Result/OldIssue.pm
+++ b/Koha/Schema/Result/OldIssue.pm
@@ -81,6 +81,12 @@ __PACKAGE__->table("old_issues");
   default_value: 0
   is_nullable: 1
 
+=head2 auto_renew_error
+
+  data_type: 'varchar'
+  is_nullable: 1
+  size: 16
+
 =head2 timestamp
 
   data_type: 'timestamp'
@@ -135,6 +141,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 => 16 },
   "timestamp",
   {
     data_type => "timestamp",
@@ -207,8 +215,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:04:51
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9GdzytyInRcFZns/q0qb3Q
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 12:04:45
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZS7a+cx06C3BbMJMN/kAyA
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
-- 
2.1.4