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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +12 lines)
Lines 296-301 date the patron was added to Koha (YYYY-MM-DD) Link Here
296
296
297
date the patron/borrower's card is set to expire (YYYY-MM-DD)
297
date the patron/borrower's card is set to expire (YYYY-MM-DD)
298
298
299
=head2 password_expiration_date
300
301
  data_type: 'date'
302
  datetime_undef_if_invalid: 1
303
  is_nullable: 1
304
305
date the patron/borrower's password is set to expire (YYYY-MM-DD)
306
299
=head2 date_renewed
307
=head2 date_renewed
300
308
301
  data_type: 'date'
309
  data_type: 'date'
Lines 712-717 __PACKAGE__->add_columns( Link Here
712
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
720
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
713
  "dateexpiry",
721
  "dateexpiry",
714
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
722
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
723
  "password_expiration_date",
724
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
715
  "date_renewed",
725
  "date_renewed",
716
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
726
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
717
  "gonenoaddress",
727
  "gonenoaddress",
Lines 1955-1962 Composing rels: L</user_permissions> -> permission Link Here
1955
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
1965
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
1956
1966
1957
1967
1958
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-24 10:20:07
1968
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 11:26:01
1959
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:srYT5wjg7Jhy5CpmDjWv/g
1969
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MR/0Iid1sjLxbcbbr34G6w
1960
1970
1961
__PACKAGE__->has_many(
1971
__PACKAGE__->has_many(
1962
  "extended_attributes",
1972
  "extended_attributes",
(-)a/Koha/Schema/Result/Category.pm (-2 / +11 lines)
Lines 54-59 number of months the patron is enrolled for (will be NULL if enrolmentperioddate Link Here
54
54
55
date the patron is enrolled until (will be NULL if enrolmentperiod is set)
55
date the patron is enrolled until (will be NULL if enrolmentperiod is set)
56
56
57
=head2 password_expiry_days
58
59
  data_type: 'smallint'
60
  is_nullable: 1
61
62
number of days after which the patron must reset their password
63
57
=head2 upperagelimit
64
=head2 upperagelimit
58
65
59
  data_type: 'smallint'
66
  data_type: 'smallint'
Lines 201-206 __PACKAGE__->add_columns( Link Here
201
  { data_type => "smallint", is_nullable => 1 },
208
  { data_type => "smallint", is_nullable => 1 },
202
  "enrolmentperioddate",
209
  "enrolmentperioddate",
203
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
210
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
211
  "password_expiry_days",
212
  { data_type => "smallint", is_nullable => 1 },
204
  "upperagelimit",
213
  "upperagelimit",
205
  { data_type => "smallint", is_nullable => 1 },
214
  { data_type => "smallint", is_nullable => 1 },
206
  "dateofbirthrequired",
215
  "dateofbirthrequired",
Lines 329-336 __PACKAGE__->has_many( Link Here
329
);
338
);
330
339
331
340
332
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-19 14:20:11
341
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 11:26:01
333
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xrnHXXv5sd3S2sMEKzHLmA
342
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7hptS8P6QyEWLSaBUBm5lA
334
343
335
__PACKAGE__->add_columns(
344
__PACKAGE__->add_columns(
336
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
345
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +12 lines)
Lines 294-299 date the patron was added to Koha (YYYY-MM-DD) Link Here
294
294
295
date the patron/borrower's card is set to expire (YYYY-MM-DD)
295
date the patron/borrower's card is set to expire (YYYY-MM-DD)
296
296
297
=head2 password_expiration_date
298
299
  data_type: 'date'
300
  datetime_undef_if_invalid: 1
301
  is_nullable: 1
302
303
date the patron/borrower's password is set to expire (YYYY-MM-DD)
304
297
=head2 date_renewed
305
=head2 date_renewed
298
306
299
  data_type: 'date'
307
  data_type: 'date'
Lines 697-702 __PACKAGE__->add_columns( Link Here
697
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
705
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
698
  "dateexpiry",
706
  "dateexpiry",
699
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
707
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
708
  "password_expiration_date",
709
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
700
  "date_renewed",
710
  "date_renewed",
701
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
711
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
702
  "gonenoaddress",
712
  "gonenoaddress",
Lines 810-817 __PACKAGE__->add_columns( Link Here
810
);
820
);
811
821
812
822
813
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-24 10:20:07
823
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 11:26:01
814
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JvVxPJOrg5reWvl+gg9Q2A
824
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6/X2K+fPy63SQaM1AdlIcw
815
825
816
__PACKAGE__->add_columns(
826
__PACKAGE__->add_columns(
817
    '+anonymized'    => { is_boolean => 1 },
827
    '+anonymized'    => { is_boolean => 1 },
818
- 

Return to bug 29924