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

(-)a/Koha/Schema/Result/Subscription.pm (-4 / +13 lines)
Lines 326-331 date of last renewal for the subscription Link Here
326
  data_type: 'integer'
326
  data_type: 'integer'
327
  is_nullable: 1
327
  is_nullable: 1
328
328
329
=head2 pubdatepatternformat
330
331
  data_type: 'varchar'
332
  is_nullable: 1
333
  size: 3
334
329
=head2 ccode
335
=head2 ccode
330
336
331
  data_type: 'varchar'
337
  data_type: 'varchar'
Lines 430-435 __PACKAGE__->add_columns( Link Here
430
  { data_type => "varchar", is_nullable => 1, size => 10 },
436
  { data_type => "varchar", is_nullable => 1, size => 10 },
431
  "mana_id",
437
  "mana_id",
432
  { data_type => "integer", is_nullable => 1 },
438
  { data_type => "integer", is_nullable => 1 },
439
  "pubdatepatternformat",
440
  { data_type => "varchar", is_nullable => 1, size => 3 },
433
  "ccode",
441
  "ccode",
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",
Lines 566-573 __PACKAGE__->has_many( Link Here
566
);
574
);
567
575
568
576
569
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-14 11:46:15
577
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-12 02:15:47
570
# 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
571
582
572
__PACKAGE__->has_many(
583
__PACKAGE__->has_many(
573
  "additional_field_values",
584
  "additional_field_values",
Lines 590-594 __PACKAGE__->add_columns( Link Here
590
    '+skip_serialseq' => { is_boolean => 1 },
601
    '+skip_serialseq' => { is_boolean => 1 },
591
);
602
);
592
603
593
# You can replace this text with custom content, and it will be preserved on regeneration
594
1;
604
1;
595
- 

Return to bug 22188