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

(-)a/Koha/Schema/Result/Borrower.pm (-4 / +4 lines)
Lines 426-432 Authentication method Link Here
426
426
427
=head2 flags
427
=head2 flags
428
428
429
  data_type: 'integer'
429
  data_type: 'bigint'
430
  is_nullable: 1
430
  is_nullable: 1
431
431
432
will include a number associated with the staff member's permissions
432
will include a number associated with the staff member's permissions
Lines 774-780 __PACKAGE__->add_columns( Link Here
774
    is_nullable => 0,
774
    is_nullable => 0,
775
  },
775
  },
776
  "flags",
776
  "flags",
777
  { data_type => "integer", is_nullable => 1 },
777
  { data_type => "bigint", is_nullable => 1 },
778
  "userid",
778
  "userid",
779
  { data_type => "varchar", is_nullable => 1, size => 75 },
779
  { data_type => "varchar", is_nullable => 1, size => 75 },
780
  "opacnote",
780
  "opacnote",
Lines 2103-2110 Composing rels: L</user_permissions> -> permission Link Here
2103
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2103
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2104
2104
2105
2105
2106
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 14:23:57
2106
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27
2107
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/63fcorna7WyO+DyLg8qLA
2107
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wir+5++YaTGZG2teK3DJnA
2108
2108
2109
__PACKAGE__->has_many(
2109
__PACKAGE__->has_many(
2110
  "restrictions",
2110
  "restrictions",
(-)a/Koha/Schema/Result/BorrowerModification.pm (-4 / +4 lines)
Lines 327-333 patron/borrower's middle name Link Here
327
327
328
=head2 flags
328
=head2 flags
329
329
330
  data_type: 'integer'
330
  data_type: 'bigint'
331
  is_nullable: 1
331
  is_nullable: 1
332
332
333
=head2 userid
333
=head2 userid
Lines 578-584 __PACKAGE__->add_columns( Link Here
578
  "password",
578
  "password",
579
  { data_type => "varchar", is_nullable => 1, size => 30 },
579
  { data_type => "varchar", is_nullable => 1, size => 30 },
580
  "flags",
580
  "flags",
581
  { data_type => "integer", is_nullable => 1 },
581
  { data_type => "bigint", is_nullable => 1 },
582
  "userid",
582
  "userid",
583
  { data_type => "varchar", is_nullable => 1, size => 75 },
583
  { data_type => "varchar", is_nullable => 1, size => 75 },
584
  "opacnote",
584
  "opacnote",
Lines 638-645 __PACKAGE__->add_columns( Link Here
638
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
638
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
639
639
640
640
641
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 18:03:21
641
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27
642
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NsjvIPMgGDCa0LZQc157Ww
642
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/i+eaKTHkS4cdshyqhJKFQ
643
643
644
sub koha_object_class {
644
sub koha_object_class {
645
    'Koha::Patron::Modification';
645
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/Deletedborrower.pm (-5 / +4 lines)
Lines 424-430 Authentication method Link Here
424
424
425
=head2 flags
425
=head2 flags
426
426
427
  data_type: 'integer'
427
  data_type: 'bigint'
428
  is_nullable: 1
428
  is_nullable: 1
429
429
430
will include a number associated with the staff member's permissions
430
will include a number associated with the staff member's permissions
Lines 759-765 __PACKAGE__->add_columns( Link Here
759
    is_nullable => 0,
759
    is_nullable => 0,
760
  },
760
  },
761
  "flags",
761
  "flags",
762
  { data_type => "integer", is_nullable => 1 },
762
  { data_type => "bigint", is_nullable => 1 },
763
  "userid",
763
  "userid",
764
  { data_type => "varchar", is_nullable => 1, size => 75 },
764
  { data_type => "varchar", is_nullable => 1, size => 75 },
765
  "opacnote",
765
  "opacnote",
Lines 838-845 __PACKAGE__->add_columns( Link Here
838
);
838
);
839
839
840
840
841
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 18:03:21
841
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-30 07:37:27
842
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OKIbF7K2KWpEJGbFbetD0w
842
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iO5AIhfRx9dJix/L7JAKyw
843
843
844
__PACKAGE__->add_columns(
844
__PACKAGE__->add_columns(
845
    '+anonymized'    => { is_boolean => 1 },
845
    '+anonymized'    => { is_boolean => 1 },
846
- 

Return to bug 33368