From ee33e64def01d160e0eed78a9f35530205187372 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 4 May 2023 13:23:44 +0000 Subject: [PATCH] Bug 33262: [DO NOT PUSH) Schema update --- Koha/Schema/Result/Aqorder.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Aqorder.pm b/Koha/Schema/Result/Aqorder.pm index d11d6d12fe..f75bc16b66 100644 --- a/Koha/Schema/Result/Aqorder.pm +++ b/Koha/Schema/Result/Aqorder.pm @@ -39,6 +39,13 @@ primary key and unique identifier assigned by Koha to each line links the order to the biblio being ordered (biblio.biblionumber) +=head2 deleted_biblionumber + + data_type: 'integer' + is_nullable: 1 + +links the order to the deleted bibliographic record (deletedbiblio.biblionumber) + =head2 entrydate data_type: 'date' @@ -438,6 +445,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "biblionumber", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, + "deleted_biblionumber", + { data_type => "integer", is_nullable => 1 }, "entrydate", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "quantity", @@ -805,8 +814,8 @@ Composing rels: L -> borrowernumber __PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 16:45:06 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7vMNLDNO0/Bpng9sBFyyBg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-04 11:24:57 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BBhTr5XMj2RXPZQgYPQkAA __PACKAGE__->belongs_to( "basket", -- 2.30.2