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

(-)a/Koha/Schema/Result/Subscription.pm (-3 / +11 lines)
Lines 186-191 yes or no to managing the history manually Link Here
186
186
187
any irregularities in the subscription
187
any irregularities in the subscription
188
188
189
=head2 permanent_irregularity
190
191
  data_type: 'mediumtext'
192
  is_nullable: 1
193
194
permanent irregularities for renewal
195
189
=head2 skip_serialseq
196
=head2 skip_serialseq
190
197
191
  data_type: 'tinyint'
198
  data_type: 'tinyint'
Lines 398-403 __PACKAGE__->add_columns( Link Here
398
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
405
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
399
  "irregularity",
406
  "irregularity",
400
  { data_type => "mediumtext", is_nullable => 1 },
407
  { data_type => "mediumtext", is_nullable => 1 },
408
  "permanent_irregularity",
409
  { data_type => "mediumtext", is_nullable => 1 },
401
  "skip_serialseq",
410
  "skip_serialseq",
402
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
411
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
403
  "letter",
412
  "letter",
Lines 596-603 __PACKAGE__->has_many( Link Here
596
);
605
);
597
606
598
607
599
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-05-09 08:07:54
608
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-11 09:16:48
600
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TZz+AyW1pPFbUMdo2mneuw
609
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9+wbNGOyyT2+gCjVln5Fcg
601
610
602
__PACKAGE__->has_many(
611
__PACKAGE__->has_many(
603
  "additional_field_values",
612
  "additional_field_values",
604
- 

Return to bug 17656