From a72aa8ab3c2adde961bf0ed946587a2dce8db061 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 3 Nov 2014 11:21:19 -0300 Subject: [PATCH] Bug 10860: Update DBIx Signed-off-by: Tomas Cohen Arazi --- 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 4f6dd15..5ec687e 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -95,6 +95,12 @@ __PACKAGE__->table("issues"); datetime_undef_if_invalid: 1 is_nullable: 1 +=head2 onsite_checkout + + data_type: 'integer' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -143,6 +149,8 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, + "onsite_checkout", + { data_type => "integer", default_value => 0, is_nullable => 0 }, ); =head1 RELATIONS @@ -188,8 +196,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-09-17 21:06:58 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vhnsyH2GOjEEjOWjCS5Lpw +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-03 10:40:55 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7Y+5IerDnajn5GLwAY5thg __PACKAGE__->belongs_to( "borrower", diff --git a/Koha/Schema/Result/OldIssue.pm b/Koha/Schema/Result/OldIssue.pm index faa472c..b56db99 100644 --- a/Koha/Schema/Result/OldIssue.pm +++ b/Koha/Schema/Result/OldIssue.pm @@ -95,6 +95,12 @@ __PACKAGE__->table("old_issues"); datetime_undef_if_invalid: 1 is_nullable: 1 +=head2 onsite_checkout + + data_type: 'integer' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -143,6 +149,8 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, + "onsite_checkout", + { data_type => "integer", default_value => 0, is_nullable => 0 }, ); =head1 RELATIONS @@ -188,8 +196,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-09-17 21:06:58 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/ofcOgd+0YhWqMTWEDdaCw +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-03 10:40:55 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lNB9CDFcwG4DjD0pl14mvQ # You can replace this text with custom content, and it will be preserved on regeneration -- 1.9.1