From 020392b6080228a38612514804eb7590cc989837 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 16 Jan 2026 08:03:01 +0000 Subject: [PATCH] Bug 41649: DBIC Build --- Koha/Schema/Result/Itemtype.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 3d3c97ccb47..840e4b97603 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -152,6 +152,14 @@ type (CSS class) for the checkinmsg, can be 'alert' or 'message' SIP2 protocol media type for this itemtype +=head2 sip_magnetic + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +Indicates if items of this type are magnetic media for SIP + =head2 hideinopac data_type: 'tinyint' @@ -233,6 +241,8 @@ __PACKAGE__->add_columns( }, "sip_media_type", { data_type => "varchar", is_nullable => 1, size => 3 }, + "sip_magnetic", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "hideinopac", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "searchcategory", @@ -360,8 +370,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-20 19:06:37 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T/3QdCb353e+qBkN4as7Bg +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-01-16 07:51:34 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ePo0BPleQ9DPVHUiMea2Rw __PACKAGE__->add_columns( '+automatic_checkin' => { is_boolean => 1 }, -- 2.52.0