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

(-)a/Koha/Schema/Result/Subscription.pm (-12 / +13 lines)
Lines 277-288 how many issues to show to the staff Link Here
277
277
278
how many issues to show to the public
278
how many issues to show to the public
279
279
280
=head2 pubdatepatternformat
281
282
  data_type: 'varchar'
283
  is_nullable: 1
284
  size: 3
285
286
=head2 graceperiod
280
=head2 graceperiod
287
281
288
  data_type: 'integer'
282
  data_type: 'integer'
Lines 332-337 date of last renewal for the subscription Link Here
332
  data_type: 'integer'
326
  data_type: 'integer'
333
  is_nullable: 1
327
  is_nullable: 1
334
328
329
=head2 pubdatepatternformat
330
331
  data_type: 'varchar'
332
  is_nullable: 1
333
  size: 3
334
335
=head2 ccode
335
=head2 ccode
336
336
337
  data_type: 'varchar'
337
  data_type: 'varchar'
Lines 422-429 __PACKAGE__->add_columns( Link Here
422
  { data_type => "integer", is_nullable => 1 },
422
  { data_type => "integer", is_nullable => 1 },
423
  "opacdisplaycount",
423
  "opacdisplaycount",
424
  { data_type => "integer", is_nullable => 1 },
424
  { data_type => "integer", is_nullable => 1 },
425
  "pubdatepatternformat",
426
  { data_type => "varchar", is_nullable => 1, size => 3 },
427
  "graceperiod",
425
  "graceperiod",
428
  { data_type => "integer", default_value => 0, is_nullable => 0 },
426
  { data_type => "integer", default_value => 0, is_nullable => 0 },
429
  "enddate",
427
  "enddate",
Lines 438-443 __PACKAGE__->add_columns( Link Here
438
  { data_type => "varchar", is_nullable => 1, size => 10 },
436
  { data_type => "varchar", is_nullable => 1, size => 10 },
439
  "mana_id",
437
  "mana_id",
440
  { data_type => "integer", is_nullable => 1 },
438
  { data_type => "integer", is_nullable => 1 },
439
  "pubdatepatternformat",
440
  { data_type => "varchar", is_nullable => 1, size => 3 },
441
  "ccode",
441
  "ccode",
442
  { data_type => "varchar", is_nullable => 1, size => 80 },
442
  { data_type => "varchar", is_nullable => 1, size => 80 },
443
  "published_on_template",
443
  "published_on_template",
Lines 574-581 __PACKAGE__->has_many( Link Here
574
);
574
);
575
575
576
576
577
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2023-07-14 11:46:15
577
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-12 02:15:47
578
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LICIiWzag365cUAq5OYD2A
578
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G0WJcUAQO4DAfSx9OtVTAw
579
580
581
# You can replace this text with custom code or comments, and it will be preserved on regeneration
579
582
580
__PACKAGE__->has_many(
583
__PACKAGE__->has_many(
581
  "additional_field_values",
584
  "additional_field_values",
Lines 598-602 __PACKAGE__->add_columns( Link Here
598
    '+skip_serialseq' => { is_boolean => 1 },
601
    '+skip_serialseq' => { is_boolean => 1 },
599
);
602
);
600
603
601
# You can replace this text with custom content, and it will be preserved on regeneration
602
1;
604
1;
603
- 

Return to bug 22188