From 9c1720d7d7b299812bc7faa6a2ae9d23075d2a0d Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 19 Sep 2019 20:35:43 +0000 Subject: [PATCH] Bug 23309: RMaint Follow up Signed-off-by: Lucas Gass --- Koha.pm | 2 +- Koha/Schema/Result/MarcSubfieldStructure.pm | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Koha.pm b/Koha.pm index 2954ff97e9..5bed15c176 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "18.11.09.000"; +$VERSION = "18.11.09.002"; sub version { return $VERSION; diff --git a/Koha/Schema/Result/MarcSubfieldStructure.pm b/Koha/Schema/Result/MarcSubfieldStructure.pm index 1c28713b02..fdb06315f3 100644 --- a/Koha/Schema/Result/MarcSubfieldStructure.pm +++ b/Koha/Schema/Result/MarcSubfieldStructure.pm @@ -101,7 +101,8 @@ __PACKAGE__->table("marc_subfield_structure"); =head2 hidden data_type: 'tinyint' - is_nullable: 1 + default_value: 8 + is_nullable: 0 =head2 frameworkcode @@ -161,7 +162,7 @@ __PACKAGE__->add_columns( "isurl", { data_type => "tinyint", is_nullable => 1 }, "hidden", - { data_type => "tinyint", is_nullable => 1 }, + { data_type => "tinyint", default_value => 8, is_nullable => 0 }, "frameworkcode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 }, "seealso", @@ -213,8 +214,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-02 18:57:57 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:18iBiNNiwTSYtKk28aoLJg +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-19 20:31:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:l389FQ9jmX8nXzcUDVe6eA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2