From 2275f74613956a6bcc105c6c8279ec313222ff7e 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 --- Koha/Schema/Result/Deleteditem.pm | 20 ++++++++++++++++++-- Koha/Schema/Result/Item.pm | 20 ++++++++++++++++++-- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Deleteditem.pm b/Koha/Schema/Result/Deleteditem.pm index 7047142ba3..023892b4d4 100644 --- a/Koha/Schema/Result/Deleteditem.pm +++ b/Koha/Schema/Result/Deleteditem.pm @@ -378,6 +378,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( @@ -498,6 +510,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 @@ -513,8 +529,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("itemnumber"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-12 18:18:47 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6TcVaUWoDdAGfBOr83ZOWQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-30 10:20:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:smNohDljysRgcTUzLrXd7Q __PACKAGE__->add_columns( '+exclude_from_local_holds_priority' => { is_boolean => 1 }, diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index ab5f09418b..ef338578de 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -382,6 +382,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( @@ -512,6 +524,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 @@ -943,8 +959,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-26 17:44:52 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FHB+BvL4it4HrzlfNCxoKw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-30 10:20:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9XdMnuuP+gRaNfrKBLovrw __PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); -- 2.37.1 (Apple Git-137.1)