From 0440c56d697743161d5d348df7fb2915ea76c745 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Fri, 13 Oct 2023 01:51:31 +0000 Subject: [PATCH] Bug 22188: Schema updates --- Koha/Schema/Result/Subscription.pm | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm index cb5d1533f44..828ec872b70 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -326,6 +326,12 @@ date of last renewal for the subscription data_type: 'integer' is_nullable: 1 +=head2 pubdatepatternformat + + data_type: 'varchar' + is_nullable: 1 + size: 3 + =head2 ccode data_type: 'varchar' @@ -430,6 +436,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 10 }, "mana_id", { data_type => "integer", is_nullable => 1 }, + "pubdatepatternformat", + { data_type => "varchar", is_nullable => 1, size => 3 }, "ccode", { data_type => "varchar", is_nullable => 1, size => 80 }, "published_on_template", @@ -566,8 +574,11 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-14 11:46:15 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LICIiWzag365cUAq5OYD2A +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-12 02:15:47 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G0WJcUAQO4DAfSx9OtVTAw + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration __PACKAGE__->has_many( "additional_field_values", @@ -590,5 +601,4 @@ __PACKAGE__->add_columns( '+skip_serialseq' => { is_boolean => 1 }, ); -# You can replace this text with custom content, and it will be preserved on regeneration 1; -- 2.30.2