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

(-)a/Koha/Schema/Result/BorrowerModification.pm (-3 / +9 lines)
Lines 404-409 __PACKAGE__->table("borrower_modifications"); Link Here
404
  data_type: 'integer'
404
  data_type: 'integer'
405
  is_nullable: 1
405
  is_nullable: 1
406
406
407
=head2 extended_attributes
408
409
  data_type: 'text'
410
  is_nullable: 1
411
407
=cut
412
=cut
408
413
409
__PACKAGE__->add_columns(
414
__PACKAGE__->add_columns(
Lines 566-571 __PACKAGE__->add_columns( Link Here
566
  { data_type => "varchar", is_nullable => 1, size => 50 },
571
  { data_type => "varchar", is_nullable => 1, size => 50 },
567
  "privacy",
572
  "privacy",
568
  { data_type => "integer", is_nullable => 1 },
573
  { data_type => "integer", is_nullable => 1 },
574
  "extended_attributes",
575
  { data_type => "text", is_nullable => 1 },
569
);
576
);
570
577
571
=head1 PRIMARY KEY
578
=head1 PRIMARY KEY
Lines 583-590 __PACKAGE__->add_columns( Link Here
583
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
590
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
584
591
585
592
586
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
593
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-12 20:04:12
587
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vZ9XjkjQv0q6l2kW3KMsLg
594
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IZNhBX5Bj+x4S8JCWG+7lA
588
595
589
596
590
# You can replace this text with custom content, and it will be preserved on regeneration
597
# You can replace this text with custom content, and it will be preserved on regeneration
591
- 

Return to bug 17767