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

(-)a/Koha/Schema/Result/Subscription.pm (-1 / +11 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 612-615 __PACKAGE__->add_columns( Link Here
612
    '+skip_serialseq'  => { is_boolean => 1 },
622
    '+skip_serialseq'  => { is_boolean => 1 },
613
);
623
);
614
624
625
# You can replace this text with custom content, and it will be preserved on regeneration
615
1;
626
1;
616
- 

Return to bug 18783