From 9717a6bec2d6119ba98e34e4701c21d3f91e385d Mon Sep 17 00:00:00 2001 From: Martin Renvoize 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