From 7d04bd0001875f8515a42e346ce4b89552c4aa70 Mon Sep 17 00:00:00 2001 From: Arthur Suzuki Date: Thu, 7 Aug 2025 11:33:18 +0200 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 be2df217703..f8c3359477f 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' @@ -390,6 +397,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", @@ -586,8 +595,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 14:57:59 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1Ht7Nfl870dv1NOs4vr04g +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-06 14:33:18 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lhggvbWLCEmiNI8qHVn11Q __PACKAGE__->has_many( "additional_field_values", -- 2.39.5