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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +12 lines)
Lines 362-367 used for children to include title (Mr., Mrs., etc) of guarantor Link Here
362
362
363
a note on the patron/borrower's account that is only visible in the staff interface
363
a note on the patron/borrower's account that is only visible in the staff interface
364
364
365
=head2 relationship
366
367
  data_type: 'varchar'
368
  is_nullable: 1
369
  size: 100
370
371
used for children to include the relationship to their guarantor
372
365
=head2 sex
373
=head2 sex
366
374
367
  data_type: 'varchar'
375
  data_type: 'varchar'
Lines 698-703 __PACKAGE__->add_columns( Link Here
698
  { data_type => "mediumtext", is_nullable => 1 },
706
  { data_type => "mediumtext", is_nullable => 1 },
699
  "borrowernotes",
707
  "borrowernotes",
700
  { data_type => "longtext", is_nullable => 1 },
708
  { data_type => "longtext", is_nullable => 1 },
709
  "relationship",
710
  { data_type => "varchar", is_nullable => 1, size => 100 },
701
  "sex",
711
  "sex",
702
  { data_type => "varchar", is_nullable => 1, size => 1 },
712
  { data_type => "varchar", is_nullable => 1, size => 1 },
703
  "password",
713
  "password",
Lines 1855-1862 Composing rels: L</aqorder_users> -> ordernumber Link Here
1855
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1865
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1856
1866
1857
1867
1858
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-10 13:50:02
1868
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-07 05:28:03
1859
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mrHF9QG7qY32EnjukdNZRw
1869
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CgLzd4URQdNSXTgd7QnFFg
1860
1870
1861
__PACKAGE__->add_columns(
1871
__PACKAGE__->add_columns(
1862
    '+anonymized'    => { is_boolean => 1 },
1872
    '+anonymized'    => { is_boolean => 1 },
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +10 lines)
Lines 295-300 __PACKAGE__->table("borrower_modifications"); Link Here
295
  data_type: 'longtext'
295
  data_type: 'longtext'
296
  is_nullable: 1
296
  is_nullable: 1
297
297
298
=head2 relationship
299
300
  data_type: 'varchar'
301
  is_nullable: 1
302
  size: 100
303
298
=head2 sex
304
=head2 sex
299
305
300
  data_type: 'varchar'
306
  data_type: 'varchar'
Lines 541-546 __PACKAGE__->add_columns( Link Here
541
  { data_type => "mediumtext", is_nullable => 1 },
547
  { data_type => "mediumtext", is_nullable => 1 },
542
  "borrowernotes",
548
  "borrowernotes",
543
  { data_type => "longtext", is_nullable => 1 },
549
  { data_type => "longtext", is_nullable => 1 },
550
  "relationship",
551
  { data_type => "varchar", is_nullable => 1, size => 100 },
544
  "sex",
552
  "sex",
545
  { data_type => "varchar", is_nullable => 1, size => 1 },
553
  { data_type => "varchar", is_nullable => 1, size => 1 },
546
  "password",
554
  "password",
Lines 604-611 __PACKAGE__->add_columns( Link Here
604
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
612
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
605
613
606
614
607
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-10 13:50:02
615
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-07 05:28:03
608
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u4NyjVB0giKnFLHIjepc8A
616
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JZ6vS5nH8EPc0OL3LQRG+Q
609
617
610
sub koha_object_class {
618
sub koha_object_class {
611
    'Koha::Patron::Modification';
619
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +12 lines)
Lines 360-365 used for children to include title (Mr., Mrs., etc) of guarantor Link Here
360
360
361
a note on the patron/borrower's account that is only visible in the staff interface
361
a note on the patron/borrower's account that is only visible in the staff interface
362
362
363
=head2 relationship
364
365
  data_type: 'varchar'
366
  is_nullable: 1
367
  size: 100
368
369
used for children to include the relationship to their guarantor
370
363
=head2 sex
371
=head2 sex
364
372
365
  data_type: 'varchar'
373
  data_type: 'varchar'
Lines 683-688 __PACKAGE__->add_columns( Link Here
683
  { data_type => "mediumtext", is_nullable => 1 },
691
  { data_type => "mediumtext", is_nullable => 1 },
684
  "borrowernotes",
692
  "borrowernotes",
685
  { data_type => "longtext", is_nullable => 1 },
693
  { data_type => "longtext", is_nullable => 1 },
694
  "relationship",
695
  { data_type => "varchar", is_nullable => 1, size => 100 },
686
  "sex",
696
  "sex",
687
  { data_type => "varchar", is_nullable => 1, size => 1 },
697
  { data_type => "varchar", is_nullable => 1, size => 1 },
688
  "password",
698
  "password",
Lines 765-772 __PACKAGE__->add_columns( Link Here
765
);
775
);
766
776
767
777
768
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-10 13:50:02
778
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-07 05:28:04
769
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KIPkFRT1rq+Es9MdeJAvwg
779
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/9VjUuilKGDwV/pLlf/4ew
770
780
771
__PACKAGE__->add_columns(
781
__PACKAGE__->add_columns(
772
    '+anonymized'    => { is_boolean => 1 },
782
    '+anonymized'    => { is_boolean => 1 },
773
- 

Return to bug 28490