From f9690267bdd5bc270f22b617ae01e83fdacecf3b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 16 Sep 2022 10:56:40 -0300 Subject: [PATCH] Bug 15348: DBIC schema Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Aqorder.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Aqorder.pm b/Koha/Schema/Result/Aqorder.pm index 58cbdd1897..71c8753817 100644 --- a/Koha/Schema/Result/Aqorder.pm +++ b/Koha/Schema/Result/Aqorder.pm @@ -406,6 +406,14 @@ 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 + +Estimated delivery date + =cut __PACKAGE__->add_columns( @@ -517,6 +525,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 +764,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.07049 @ 2022-09-16 13:56:20 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:M8HvWBKYFNGspSTakU6Qdg __PACKAGE__->belongs_to( "basket", -- 2.39.5