From 1c2c15aabf79ffa63c5fa0164a81e182cbd96162 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 cb5d1533f4..14ac8e1c1a 100644 --- a/Koha/Schema/Result/Subscription.pm +++ b/Koha/Schema/Result/Subscription.pm @@ -334,6 +334,14 @@ date of last renewal for the subscription collection code to assign to serial items +=head2 auto_claim_enabled + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +enable automatic claiming + =head2 published_on_template data_type: 'text' @@ -432,6 +440,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "ccode", { data_type => "varchar", is_nullable => 1, size => 80 }, + "auto_claim_enabled", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "published_on_template", { data_type => "text", is_nullable => 1 }, ); @@ -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.07049 @ 2023-09-08 20:01:50 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D8NZJQ5sMmtZT22baqLcsQ __PACKAGE__->has_many( "additional_field_values", -- 2.41.0