From f54c2bb28a4c4213f54d3a6e79201aa3b530bcc1 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 30 Aug 2023 13:13:48 +0000 Subject: [PATCH] Bug 19316: Add DBIC files Signed-off-by: baptiste --- Koha/Schema/Result/Deleteditem.pm | 16 ++++++++++++++++ Koha/Schema/Result/Item.pm | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/Koha/Schema/Result/Deleteditem.pm b/Koha/Schema/Result/Deleteditem.pm index 118b2251217..0880cd51e94 100644 --- a/Koha/Schema/Result/Deleteditem.pm +++ b/Koha/Schema/Result/Deleteditem.pm @@ -393,6 +393,18 @@ inventory number (MARC21 952$i) Exclude this item from local holds priority +=head2 sort1 + + data_type: 'varchar' + is_nullable: 1 + size: 50 + +=head2 sort2 + + data_type: 'varchar' + is_nullable: 1 + size: 50 + =cut __PACKAGE__->add_columns( @@ -517,6 +529,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 32 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "sort1", + { data_type => "varchar", is_nullable => 1, size => 50 }, + "sort2", + { data_type => "varchar", is_nullable => 1, size => 50 }, ); =head1 PRIMARY KEY diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index dcbd2275a82..94921b99017 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -397,6 +397,18 @@ inventory number (MARC21 952$i) Exclude this item from local holds priority +=head2 sort1 + + data_type: 'varchar' + is_nullable: 1 + size: 50 + +=head2 sort2 + + data_type: 'varchar' + is_nullable: 1 + size: 50 + =cut __PACKAGE__->add_columns( @@ -531,6 +543,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 32 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "sort1", + { data_type => "varchar", is_nullable => 1, size => 50 }, + "sort2", + { data_type => "varchar", is_nullable => 1, size => 50 }, ); =head1 PRIMARY KEY -- 2.39.3 (Apple Git-146)