From f84e9baf545e9e32eb86226f4e9ba4c0524e9218 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 11 Dec 2024 14:03:12 +0100 Subject: [PATCH] Bug 38666: [DO NOT PUSH] Update DBIC schema --- Koha/Schema/Result/Deleteditem.pm | 2 ++ Koha/Schema/Result/Item.pm | 2 ++ Koha/Schema/Result/OldReserve.pm | 2 ++ Koha/Schema/Result/Reserve.pm | 2 ++ 4 files changed, 8 insertions(+) diff --git a/Koha/Schema/Result/Deleteditem.pm b/Koha/Schema/Result/Deleteditem.pm index 45673bb84f..da5226a09d 100644 --- a/Koha/Schema/Result/Deleteditem.pm +++ b/Koha/Schema/Result/Deleteditem.pm @@ -504,6 +504,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "itype", { data_type => "varchar", is_nullable => 1, size => 10 }, + "is_closed_stack", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "more_subfields_xml", { data_type => "longtext", is_nullable => 1 }, "enumchron", diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index e8ad9b3828..f3c1581de3 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -518,6 +518,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "itype", { data_type => "varchar", is_nullable => 1, size => 10 }, + "is_closed_stack", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "more_subfields_xml", { data_type => "longtext", is_nullable => 1 }, "enumchron", diff --git a/Koha/Schema/Result/OldReserve.pm b/Koha/Schema/Result/OldReserve.pm index 5d7e776599..0d38890b7a 100644 --- a/Koha/Schema/Result/OldReserve.pm +++ b/Koha/Schema/Result/OldReserve.pm @@ -300,6 +300,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "non_priority", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "closed_stack_request_slip_printed", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY diff --git a/Koha/Schema/Result/Reserve.pm b/Koha/Schema/Result/Reserve.pm index 4a528cf5ea..06bcc23055 100644 --- a/Koha/Schema/Result/Reserve.pm +++ b/Koha/Schema/Result/Reserve.pm @@ -308,6 +308,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "non_priority", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "closed_stack_request_slip_printed", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY -- 2.39.2