From 9d956ffb49eba54e8b884d61465d380e4864c1fc Mon Sep 17 00:00:00 2001 From: danyonsewell Date: Thu, 12 Oct 2023 02:21:48 +0000 Subject: [PATCH] Bug 22188: updated Subscription.pm for database update Sponsored-by: Auckland University of Technology --- Koha/Schema/Result/Subscription.pm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm index ac49954902..828ec872b7 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -277,12 +277,6 @@ how many issues to show to the staff how many issues to show to the public -=head2 pubdatepatternformat - - data_type: 'varchar' - is_nullable: 1 - size: 3 - =head2 graceperiod data_type: 'integer' @@ -332,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' @@ -422,8 +422,6 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "opacdisplaycount", { data_type => "integer", is_nullable => 1 }, - "pubdatepatternformat", - { data_type => "varchar", is_nullable => 1, size => 3 }, "graceperiod", { data_type => "integer", default_value => 0, is_nullable => 0 }, "enddate", @@ -438,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", @@ -574,8 +574,11 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 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", @@ -598,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