From ecdbf490a625fb0390ccabf3c9ec9bb8d964cde5 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 5 Jun 2023 13:52:52 -0300 Subject: [PATCH] Bug 21983: DBIC schema [DO NOT PUSH] Signed-off-by: Martin Renvoize --- Koha/Schema/Result/Illrequest.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Illrequest.pm b/Koha/Schema/Result/Illrequest.pm index 3c55a2a357..29ba8acf74 100644 --- a/Koha/Schema/Result/Illrequest.pm +++ b/Koha/Schema/Result/Illrequest.pm @@ -48,6 +48,13 @@ Patron associated with request Potential bib linked to request +=head2 deleted_biblio_id + + data_type: 'integer' + is_nullable: 1 + +Deleted bib linked to request + =head2 due_date data_type: 'datetime' @@ -189,6 +196,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, "biblio_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, + "deleted_biblio_id", + { data_type => "integer", is_nullable => 1 }, "due_date", { data_type => "datetime", @@ -352,8 +361,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-05 12:10:10 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1VhNc8tMnvCpBYaj90YOiQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-05 16:11:04 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6b58Mo/KzvheZCurYvKu7A __PACKAGE__->has_many( "comments", -- 2.41.0