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

(-)a/Koha/Schema/Result/BorrowerModification.pm (-3 / +9 lines)
Lines 37-42 __PACKAGE__->table("borrower_modifications"); Link Here
37
  is_nullable: 0
37
  is_nullable: 0
38
  size: 255
38
  size: 255
39
39
40
=head2 changed_fields
41
42
  data_type: 'mediumtext'
43
  is_nullable: 1
44
40
=head2 borrowernumber
45
=head2 borrowernumber
41
46
42
  data_type: 'integer'
47
  data_type: 'integer'
Lines 433-438 __PACKAGE__->add_columns( Link Here
433
  },
438
  },
434
  "verification_token",
439
  "verification_token",
435
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
440
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
441
  "changed_fields",
442
  { data_type => "mediumtext", is_nullable => 1 },
436
  "borrowernumber",
443
  "borrowernumber",
437
  { data_type => "integer", default_value => 0, is_nullable => 0 },
444
  { data_type => "integer", default_value => 0, is_nullable => 0 },
438
  "cardnumber",
445
  "cardnumber",
Lines 610-617 __PACKAGE__->add_columns( Link Here
610
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
617
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
611
618
612
619
613
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-20 13:00:20
620
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-06-19 15:36:58
614
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qQ0BWngri+79YvK9S8zZPg
621
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:j0cpf6F6MHMqFopc+/Wnbw
615
622
616
623
617
# You can replace this text with custom content, and it will be preserved on regeneration
624
# You can replace this text with custom content, and it will be preserved on regeneration
618
- 

Return to bug 23151