From f5f90753ceb6f62e65feee4aa82136ee6632067a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 14 Oct 2016 07:19:40 +0000 Subject: [PATCH] Bug 5260 - Schema changes Schema changes for new column in the aqcontacts table. --- Koha/Schema/Result/Aqcontact.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Aqcontact.pm b/Koha/Schema/Result/Aqcontact.pm index e7e5185..c7ab475 100644 --- a/Koha/Schema/Result/Aqcontact.pm +++ b/Koha/Schema/Result/Aqcontact.pm @@ -70,6 +70,12 @@ __PACKAGE__->table("aqcontacts"); data_type: 'mediumtext' is_nullable: 1 +=head2 orderacquisition + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 claimacquisition data_type: 'tinyint' @@ -119,6 +125,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 100 }, "notes", { data_type => "mediumtext", is_nullable => 1 }, + "orderacquisition", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "claimacquisition", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "claimissues", @@ -161,8 +169,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-26 11:53:50 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sIT7PzDxqInviUSe7wuzow +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-14 07:14:13 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9sJ0ALCjIsvdUcqgpej1JA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.7.4