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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +10 lines)
Lines 427-432 __PACKAGE__->table("borrowers"); Link Here
427
  datetime_undef_if_invalid: 1
427
  datetime_undef_if_invalid: 1
428
  is_nullable: 1
428
  is_nullable: 1
429
429
430
=head2 login_attempts
431
432
  data_type: 'integer'
433
  default_value: 0
434
  is_nullable: 1
435
430
=head2 overdrive_auth_token
436
=head2 overdrive_auth_token
431
437
432
  data_type: 'text'
438
  data_type: 'text'
Lines 621-626 __PACKAGE__->add_columns( Link Here
621
    datetime_undef_if_invalid => 1,
627
    datetime_undef_if_invalid => 1,
622
    is_nullable => 1,
628
    is_nullable => 1,
623
  },
629
  },
630
  "login_attempts",
631
  { data_type => "integer", default_value => 0, is_nullable => 1 },
624
  "overdrive_auth_token",
632
  "overdrive_auth_token",
625
  { data_type => "text", is_nullable => 1 },
633
  { data_type => "text", is_nullable => 1 },
626
);
634
);
Lines 1341-1348 Composing rels: L</aqorder_users> -> ordernumber Link Here
1341
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1349
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1342
1350
1343
1351
1344
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-10 07:30:06
1352
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-21 21:31:17
1345
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:35WEsGd5LmkZ3bB486M1yA
1353
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kFs7zUpXtFykNLSzJGqK2w
1346
1354
1347
__PACKAGE__->belongs_to(
1355
__PACKAGE__->belongs_to(
1348
    "guarantor",
1356
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +10 lines)
Lines 424-429 __PACKAGE__->table("deletedborrowers"); Link Here
424
  datetime_undef_if_invalid: 1
424
  datetime_undef_if_invalid: 1
425
  is_nullable: 1
425
  is_nullable: 1
426
426
427
=head2 login_attempts
428
429
  data_type: 'integer'
430
  default_value: 0
431
  is_nullable: 1
432
427
=head2 overdrive_auth_token
433
=head2 overdrive_auth_token
428
434
429
  data_type: 'text'
435
  data_type: 'text'
Lines 606-618 __PACKAGE__->add_columns( Link Here
606
    datetime_undef_if_invalid => 1,
612
    datetime_undef_if_invalid => 1,
607
    is_nullable => 1,
613
    is_nullable => 1,
608
  },
614
  },
615
  "login_attempts",
616
  { data_type => "integer", default_value => 0, is_nullable => 1 },
609
  "overdrive_auth_token",
617
  "overdrive_auth_token",
610
  { data_type => "text", is_nullable => 1 },
618
  { data_type => "text", is_nullable => 1 },
611
);
619
);
612
620
613
621
614
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-10 07:30:06
622
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-21 21:31:17
615
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tq4JDUSFKuU5K69TTVSkVg
623
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pxrfp28yti/oX3c1tysloA
616
624
617
625
618
# You can replace this text with custom code or comments, and it will be preserved on regeneration
626
# You can replace this text with custom code or comments, and it will be preserved on regeneration
619
- 

Return to bug 18314