From eb3268cf6004bac7cbaab8ff1d1a63645c3a38e4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 16 Dec 2021 12:45:24 +0100 Subject: [PATCH] Bug 29648: DBIC Schema changes Signed-off-by: Owen Leonard --- Koha/Schema/Result/TablesSetting.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Koha/Schema/Result/TablesSetting.pm b/Koha/Schema/Result/TablesSetting.pm index a227a29490..6946dc2713 100644 --- a/Koha/Schema/Result/TablesSetting.pm +++ b/Koha/Schema/Result/TablesSetting.pm @@ -44,8 +44,7 @@ __PACKAGE__->table("tables_settings"); =head2 default_display_length data_type: 'smallint' - default_value: 20 - is_nullable: 0 + is_nullable: 1 =head2 default_sort_order @@ -63,7 +62,7 @@ __PACKAGE__->add_columns( "tablename", { data_type => "varchar", is_nullable => 0, size => 255 }, "default_display_length", - { data_type => "smallint", default_value => 20, is_nullable => 0 }, + { data_type => "smallint", is_nullable => 1 }, "default_sort_order", { data_type => "varchar", is_nullable => 1, size => 255 }, ); @@ -85,8 +84,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("module", "page", "tablename"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 17:22:41 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A2GDoSG702QYDH8nYPEJ2Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-16 11:41:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:42x+rSLgXvSZBVLx5mh2ng # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1