From ff54866b396ed9f9a84fb4309ae59df1dc91d729 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 14 Nov 2024 12:42:31 +0000 Subject: [PATCH] Bug 33641: DO NOT PUSH - Schema Updates --- Koha/Schema/Result/Issue.pm | 14 ++++++++++++-- Koha/Schema/Result/OldIssue.pm | 14 ++++++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index ca46153e29d..bc69362eb07 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -79,6 +79,14 @@ foreign key, linking to the branches table for the location the item was checked date the item was returned, will be NULL until moved to old_issues +=head2 checkin_library + + data_type: 'varchar' + is_nullable: 1 + size: 10 + +foreign key, linking to the branches table for the location the item was returned + =head2 lastreneweddate data_type: 'datetime' @@ -191,6 +199,8 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, + "checkin_library", + { data_type => "varchar", is_nullable => 1, size => 10 }, "lastreneweddate", { data_type => "datetime", @@ -326,8 +336,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7VMPEayWBRQ9ga7uhQGR4w +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 12:42:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N/TBL2PwAVjy27c608cO0A __PACKAGE__->add_columns( '+auto_renew' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/OldIssue.pm b/Koha/Schema/Result/OldIssue.pm index de1a498af13..7a9e8b9bfb5 100644 --- a/Koha/Schema/Result/OldIssue.pm +++ b/Koha/Schema/Result/OldIssue.pm @@ -78,6 +78,14 @@ foreign key, linking to the branches table for the location the item was checked date the item was returned +=head2 checkin_library + + data_type: 'varchar' + is_nullable: 1 + size: 10 + +foreign key, linking to the branches table for the location the item was returned + =head2 lastreneweddate data_type: 'datetime' @@ -190,6 +198,8 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, + "checkin_library", + { data_type => "varchar", is_nullable => 1, size => 10 }, "lastreneweddate", { data_type => "datetime", @@ -321,8 +331,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pp1/8rwY5N9NBkgNCagvow +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 12:42:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i19ldvwvkMb0Gq2xhG5q+A __PACKAGE__->add_columns( '+auto_renew' => { is_boolean => 1 }, -- 2.39.5