From c2dd8fe671c92743e9e50c13fe1a55b6197d5b74 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 16 Oct 2020 16:57:00 +0000 Subject: [PATCH] Bug 18958: DBIC shema changes Signed-off-by: Lucas Gass --- Koha/Schema/Result/HoldFillTarget.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/HoldFillTarget.pm b/Koha/Schema/Result/HoldFillTarget.pm index b6735b6868..41f5fa1687 100644 --- a/Koha/Schema/Result/HoldFillTarget.pm +++ b/Koha/Schema/Result/HoldFillTarget.pm @@ -54,6 +54,11 @@ __PACKAGE__->table("hold_fill_targets"); default_value: 0 is_nullable: 0 +=head2 reserve_id + + data_type: 'integer' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -67,6 +72,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 }, "item_level_request", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "reserve_id", + { data_type => "integer", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -149,8 +156,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uSU9PBMr4e6XKuDgBV583A +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-10-16 16:54:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p5nGQocXxa/8eP3m5/c4mA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.5