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 390-395 __PACKAGE__->add_columns( Link Here
390
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
397
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
391
  "irregularity",
398
  "irregularity",
392
  { data_type => "mediumtext", is_nullable => 1 },
399
  { data_type => "mediumtext", is_nullable => 1 },
400
  "permanent_irregularity",
401
  { data_type => "mediumtext", is_nullable => 1 },
393
  "skip_serialseq",
402
  "skip_serialseq",
394
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
403
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
395
  "letter",
404
  "letter",
Lines 586-593 __PACKAGE__->has_many( Link Here
586
);
595
);
587
596
588
597
589
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 14:57:59
598
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-06 14:33:18
590
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1Ht7Nfl870dv1NOs4vr04g
599
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lhggvbWLCEmiNI8qHVn11Q
591
600
592
__PACKAGE__->has_many(
601
__PACKAGE__->has_many(
593
  "additional_field_values",
602
  "additional_field_values",
594
- 

Return to bug 17656