From 3e3022b8b2ba775efa87ece5d9f6296eab06fadd Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Fri, 8 Sep 2023 21:02:12 +0100
Subject: [PATCH] Bug 18783: DBIC Build

---
 Koha/Schema/Result/Subscription.pm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/Koha/Schema/Result/Subscription.pm b/Koha/Schema/Result/Subscription.pm
index cb5d1533f44..6f3d6d5f25f 100644
--- a/Koha/Schema/Result/Subscription.pm
+++ b/Koha/Schema/Result/Subscription.pm
@@ -341,6 +341,14 @@ collection code to assign to serial items
 
 Template Toolkit syntax to generate the default "Published on (text)" field when receiving an issue this serial
 
+=head2 auto_claim_enabled
+
+  data_type: 'tinyint'
+  default_value: 0
+  is_nullable: 0
+
+enable automatic claiming
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -434,6 +442,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_nullable => 1, size => 80 },
   "published_on_template",
   { data_type => "text", is_nullable => 1 },
+  "auto_claim_enabled",
+  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
 );
 
 =head1 PRIMARY KEY
@@ -566,8 +576,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-14 11:46:15
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LICIiWzag365cUAq5OYD2A
+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-03 08:45:58
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EBJMeYAbVfECmMsPpIp6aA
 
 __PACKAGE__->has_many(
   "additional_field_values",
-- 
2.45.2