From 3cc08ac41edbab99829ee973374ff2abefbb6a62 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 Signed-off-by: thibault --- 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 778432f2723..5add75d1431 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 83b361a1400..8772ddc8316 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 028386206dc..d16148dfb97 100644 --- a/Koha/Schema/Result/OldReserve.pm +++ b/Koha/Schema/Result/OldReserve.pm @@ -316,6 +316,8 @@ __PACKAGE__->add_columns( is_foreign_key => 1, is_nullable => 1, }, + "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 3e65b00f67c..12f743187a5 100644 --- a/Koha/Schema/Result/Reserve.pm +++ b/Koha/Schema/Result/Reserve.pm @@ -324,6 +324,8 @@ __PACKAGE__->add_columns( is_foreign_key => 1, is_nullable => 1, }, + "closed_stack_request_slip_printed", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY -- 2.39.5