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 696-701 __PACKAGE__->add_columns( Link Here
696
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
704
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
697
  "dateexpiry",
705
  "dateexpiry",
698
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
706
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
707
  "password_expiration_date",
708
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
699
  "date_renewed",
709
  "date_renewed",
700
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
710
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
701
  "gonenoaddress",
711
  "gonenoaddress",
Lines 1905-1912 Composing rels: L</aqorder_users> -> ordernumber Link Here
1905
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1915
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1906
1916
1907
1917
1908
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-09-20 12:00:15
1918
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-20 11:19:08
1909
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9g9WsdsdPINi2NP4H2A+CA
1919
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Eb7yQbnkqAKiHeMOlnH5uQ
1910
1920
1911
__PACKAGE__->add_columns(
1921
__PACKAGE__->add_columns(
1912
    '+anonymized'    => { is_boolean => 1 },
1922
    '+anonymized'    => { is_boolean => 1 },
(-)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-01-20 11:19:08
333
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xrnHXXv5sd3S2sMEKzHLmA
342
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EaAYwWwpyyv6YrTI3u4TXA
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 681-686 __PACKAGE__->add_columns( Link Here
681
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
689
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
682
  "dateexpiry",
690
  "dateexpiry",
683
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
691
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
692
  "password_expiration_date",
693
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
684
  "date_renewed",
694
  "date_renewed",
685
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
695
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
686
  "gonenoaddress",
696
  "gonenoaddress",
Lines 785-792 __PACKAGE__->add_columns( Link Here
785
);
795
);
786
796
787
797
788
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-12 13:40:00
798
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-20 11:53:36
789
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9q8LmKrfO6bAAFaJ4Z3Jrg
799
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r7UpUE2yUjCf6OAnObzlew
790
800
791
__PACKAGE__->add_columns(
801
__PACKAGE__->add_columns(
792
    '+anonymized'    => { is_boolean => 1 },
802
    '+anonymized'    => { is_boolean => 1 },
793
- 

Return to bug 29924