View | Details | Raw Unified | Return to bug 18783
Collapse All | Expand All

(-)a/Koha/Schema/Result/Subscription.pm (-3 / +12 lines)
Lines 341-346 collection code to assign to serial items Link Here
341
341
342
Template Toolkit syntax to generate the default "Published on (text)" field when receiving an issue this serial
342
Template Toolkit syntax to generate the default "Published on (text)" field when receiving an issue this serial
343
343
344
=head2 auto_claim_enabled
345
346
  data_type: 'tinyint'
347
  default_value: 0
348
  is_nullable: 0
349
350
enable automatic claiming
351
344
=cut
352
=cut
345
353
346
__PACKAGE__->add_columns(
354
__PACKAGE__->add_columns(
Lines 434-439 __PACKAGE__->add_columns( Link Here
434
  { data_type => "varchar", is_nullable => 1, size => 80 },
442
  { data_type => "varchar", is_nullable => 1, size => 80 },
435
  "published_on_template",
443
  "published_on_template",
436
  { data_type => "text", is_nullable => 1 },
444
  { data_type => "text", is_nullable => 1 },
445
  "auto_claim_enabled",
446
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
437
);
447
);
438
448
439
=head1 PRIMARY KEY
449
=head1 PRIMARY KEY
Lines 566-573 __PACKAGE__->has_many( Link Here
566
);
576
);
567
577
568
578
569
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-14 11:46:15
579
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-07-03 08:45:58
570
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LICIiWzag365cUAq5OYD2A
580
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EBJMeYAbVfECmMsPpIp6aA
571
581
572
__PACKAGE__->has_many(
582
__PACKAGE__->has_many(
573
  "additional_field_values",
583
  "additional_field_values",
574
- 

Return to bug 18783