From 6136cb29fbf2a5fa0de499795e32ded46872b506 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Fri, 15 Jul 2022 14:13:10 +1200 Subject: [PATCH] Bug 15348: DBIC changes DO NOT PUSH MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For testing purposes Signed-off-by: Christian Stelzenmüller Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize --- Koha/Schema/Result/Aqorder.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Aqorder.pm b/Koha/Schema/Result/Aqorder.pm index 58cbdd1897..19f2e8286f 100644 --- a/Koha/Schema/Result/Aqorder.pm +++ b/Koha/Schema/Result/Aqorder.pm @@ -406,6 +406,12 @@ Type of number above usually 'QLI' reports received from suppliers +=head2 estimated_delivery_date + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -517,6 +523,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 3 }, "suppliers_report", { data_type => "mediumtext", is_nullable => 1 }, + "estimated_delivery_date", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -754,8 +762,8 @@ Composing rels: L -> borrowernumber __PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c1YBLkG64bdFakf4/cGjXA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2022-07-15 09:33:17 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:japQaaVH2svTNfJ9M8cHCw __PACKAGE__->belongs_to( "basket", -- 2.30.2