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

(-)a/Koha/Schema/Result/BorrowerModification.pm (-3 / +11 lines)
Lines 432-437 patron/borrower's middle name Link Here
432
  data_type: 'mediumtext'
432
  data_type: 'mediumtext'
433
  is_nullable: 1
433
  is_nullable: 1
434
434
435
=head2 consents
436
437
  data_type: 'mediumtext'
438
  is_nullable: 1
439
440
JSON-encoded plugin consents for self-registration
441
435
=head2 gdpr_proc_consent
442
=head2 gdpr_proc_consent
436
443
437
  data_type: 'datetime'
444
  data_type: 'datetime'
Lines 621-626 __PACKAGE__->add_columns( Link Here
621
  { data_type => "integer", is_nullable => 1 },
628
  { data_type => "integer", is_nullable => 1 },
622
  "extended_attributes",
629
  "extended_attributes",
623
  { data_type => "mediumtext", is_nullable => 1 },
630
  { data_type => "mediumtext", is_nullable => 1 },
631
  "consents",
632
  { data_type => "mediumtext", is_nullable => 1 },
624
  "gdpr_proc_consent",
633
  "gdpr_proc_consent",
625
  {
634
  {
626
    data_type => "datetime",
635
    data_type => "datetime",
Lines 648-655 __PACKAGE__->add_columns( Link Here
648
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
657
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
649
658
650
659
651
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-01-14 15:48:20
660
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-02 12:27:59
652
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Tm784N5Rx29p9rmrNmaqCQ
661
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E/5DuIYRkJrbi1hhikSADQ
653
662
654
__PACKAGE__->add_columns(
663
__PACKAGE__->add_columns(
655
    '+gonenoaddress' => { is_boolean => 1 },
664
    '+gonenoaddress' => { is_boolean => 1 },
656
- 

Return to bug 38769