From 10f27ed72f94e6f7c451b2eb39f35f2790fed1a8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 25 Feb 2020 12:26:31 +0100 Subject: [PATCH] Bug 24722: DBIC changes --- Koha/Schema/Result/Reserve.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Reserve.pm b/Koha/Schema/Result/Reserve.pm index 3a56d68e21..113b9e46de 100644 --- a/Koha/Schema/Result/Reserve.pm +++ b/Koha/Schema/Result/Reserve.pm @@ -82,7 +82,7 @@ __PACKAGE__->table("reserves"); =head2 priority data_type: 'smallint' - is_nullable: 1 + is_nullable: 0 =head2 found @@ -179,7 +179,7 @@ __PACKAGE__->add_columns( "reservenotes", { data_type => "longtext", is_nullable => 1 }, "priority", - { data_type => "smallint", is_nullable => 1 }, + { data_type => "smallint", is_nullable => 0 }, "found", { data_type => "varchar", is_nullable => 1, size => 1 }, "timestamp", @@ -336,8 +336,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:48 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pc5zh5iFbdwko5KS51Y9Uw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-25 11:25:52 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8f97w2B7OZT7KP+MKelI8g __PACKAGE__->belongs_to( "item", -- 2.11.0