From e539ebfad15c2283f37eccb33cb18e8010baa017 Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Wed, 11 Feb 2026 10:28:28 +0000 Subject: [PATCH] Bug 17656: Update Schema - do not push --- Koha/Schema/Result/Subscription.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm index 5ed0fd21971..55a8c7226b0 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -186,6 +186,13 @@ yes or no to managing the history manually any irregularities in the subscription +=head2 permanent_irregularity + + data_type: 'mediumtext' + is_nullable: 1 + +permanent irregularities for renewal + =head2 skip_serialseq data_type: 'tinyint' @@ -398,6 +405,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "irregularity", { data_type => "mediumtext", is_nullable => 1 }, + "permanent_irregularity", + { data_type => "mediumtext", is_nullable => 1 }, "skip_serialseq", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "letter", @@ -596,8 +605,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-05-09 08:07:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TZz+AyW1pPFbUMdo2mneuw +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-11 09:16:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9+wbNGOyyT2+gCjVln5Fcg __PACKAGE__->has_many( "additional_field_values", -- 2.39.5