From cc0e841967c6bfd302701557ee30e3fb796d5535 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 2 Apr 2025 08:00:10 +0000 Subject: [PATCH] Bug 39518: Add DBIC file Signed-off-by: Nick Clemens Signed-off-by: Thomas Klausner --- Koha/Schema/Result/MarcOrderAccount.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/MarcOrderAccount.pm b/Koha/Schema/Result/MarcOrderAccount.pm index 0595d9e3f1..61f867694a 100644 --- a/Koha/Schema/Result/MarcOrderAccount.pm +++ b/Koha/Schema/Result/MarcOrderAccount.pm @@ -132,6 +132,14 @@ the field that a vendor account has been mapped to in a marc record the value to be matched against the marc record +=head2 basket_name_field + + data_type: 'varchar' + is_nullable: 1 + size: 10 + +the field that a vendor can use to include a basket name that will be used to create the basket for the file + =cut __PACKAGE__->add_columns( @@ -163,6 +171,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 10 }, "match_value", { data_type => "varchar", is_nullable => 1, size => 50 }, + "basket_name_field", + { data_type => "varchar", is_nullable => 1, size => 10 }, ); =head1 PRIMARY KEY @@ -220,8 +230,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 15:30:10 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fbpPZlp8dGbDfmdsYTW0GQ +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-02 07:29:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2FN72k+fJ3Peiy7qgoFoLQ __PACKAGE__->add_columns( '+parse_items' => { is_boolean => 1 }, -- 2.39.5