From 6123856b2561a94254fc1f9a3f94179a4793b7ed Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 12 Sep 2016 09:39:54 +0000 Subject: [PATCH] Bug 7677 - Schema update Signed-off-by: Kyle M Hall --- Koha/Schema/Result/Subscription.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm index 62468a0ecf..dadb5650da 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -259,6 +259,18 @@ __PACKAGE__->table("subscription"); datetime_undef_if_invalid: 1 is_nullable: 1 +=head2 itemtype + + data_type: 'varchar' + is_nullable: 1 + size: 10 + +=head2 previousitemtype + + data_type: 'varchar' + is_nullable: 1 + size: 10 + =cut __PACKAGE__->add_columns( @@ -342,6 +354,10 @@ __PACKAGE__->add_columns( { data_type => "integer", default_value => 0, is_nullable => 0 }, "reneweddate", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, + "itemtype", + { data_type => "varchar", is_nullable => 1, size => 10 }, + "previousitemtype", + { data_type => "varchar", is_nullable => 1, size => 10 }, ); =head1 PRIMARY KEY @@ -429,8 +445,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:57kc1/B3eNKQXAk9tlOy0A +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-12 09:39:32 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jAZGa1b6DkY8Sr12reD4nw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2