From f48fbde58e975e758c61f870e398c9cc25ec4c0a Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 12 Aug 2022 15:35:47 +0000 Subject: [PATCH] Bug 24010: Schema changes Signed-off-by: Lucas Gass --- Koha/Schema/Result/Subscription.pm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm index eb13db46f4..0e17f3bdd6 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -265,17 +265,15 @@ does receiving this serial create an item record =head2 staffdisplaycount - data_type: 'varchar' + data_type: 'integer' is_nullable: 1 - size: 10 how many issues to show to the staff =head2 opacdisplaycount - data_type: 'varchar' + data_type: 'integer' is_nullable: 1 - size: 10 how many issues to show to the public @@ -408,9 +406,9 @@ __PACKAGE__->add_columns( "serialsadditems", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "staffdisplaycount", - { data_type => "varchar", is_nullable => 1, size => 10 }, + { data_type => "integer", is_nullable => 1 }, "opacdisplaycount", - { data_type => "varchar", is_nullable => 1, size => 10 }, + { data_type => "integer", is_nullable => 1 }, "graceperiod", { data_type => "integer", default_value => 0, is_nullable => 0 }, "enddate", @@ -559,8 +557,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-12-13 16:00:51 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RXlOmAbIjAyLxVqqt36LHQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-12 15:35:20 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/NtM7BwzKMdV2EKna3Hw/g __PACKAGE__->has_many( "additional_field_values", -- 2.39.5