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

(-)a/Koha/Schema/Result/Borrower.pm (-10 / +18 lines)
Lines 232-237 __PACKAGE__->table("borrowers"); Link Here
232
  datetime_undef_if_invalid: 1
232
  datetime_undef_if_invalid: 1
233
  is_nullable: 1
233
  is_nullable: 1
234
234
235
=head2 date_renewed
236
237
  data_type: 'date'
238
  datetime_undef_if_invalid: 1
239
  is_nullable: 1
240
235
=head2 gonenoaddress
241
=head2 gonenoaddress
236
242
237
  data_type: 'tinyint'
243
  data_type: 'tinyint'
Lines 427-432 __PACKAGE__->table("borrowers"); Link Here
427
  datetime_undef_if_invalid: 1
433
  datetime_undef_if_invalid: 1
428
  is_nullable: 1
434
  is_nullable: 1
429
435
436
=head2 login_attempts
437
438
  data_type: 'integer'
439
  default_value: 0
440
  is_nullable: 1
441
430
=head2 lang
442
=head2 lang
431
443
432
  data_type: 'varchar'
444
  data_type: 'varchar'
Lines 434-445 __PACKAGE__->table("borrowers"); Link Here
434
  is_nullable: 0
446
  is_nullable: 0
435
  size: 25
447
  size: 25
436
448
437
=head2 login_attempts
438
439
  data_type: 'integer'
440
  default_value: 0
441
  is_nullable: 1
442
443
=head2 overdrive_auth_token
449
=head2 overdrive_auth_token
444
450
445
  data_type: 'text'
451
  data_type: 'text'
Lines 552-557 __PACKAGE__->add_columns( Link Here
552
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
558
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
553
  "dateexpiry",
559
  "dateexpiry",
554
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
560
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
561
  "date_renewed",
562
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
555
  "gonenoaddress",
563
  "gonenoaddress",
556
  { data_type => "tinyint", is_nullable => 1 },
564
  { data_type => "tinyint", is_nullable => 1 },
557
  "lost",
565
  "lost",
Lines 634-639 __PACKAGE__->add_columns( Link Here
634
    datetime_undef_if_invalid => 1,
642
    datetime_undef_if_invalid => 1,
635
    is_nullable => 1,
643
    is_nullable => 1,
636
  },
644
  },
645
  "login_attempts",
646
  { data_type => "integer", default_value => 0, is_nullable => 1 },
637
  "lang",
647
  "lang",
638
  {
648
  {
639
    data_type => "varchar",
649
    data_type => "varchar",
Lines 641-648 __PACKAGE__->add_columns( Link Here
641
    is_nullable => 0,
651
    is_nullable => 0,
642
    size => 25,
652
    size => 25,
643
  },
653
  },
644
  "login_attempts",
645
  { data_type => "integer", default_value => 0, is_nullable => 1 },
646
  "overdrive_auth_token",
654
  "overdrive_auth_token",
647
  { data_type => "text", is_nullable => 1 },
655
  { data_type => "text", is_nullable => 1 },
648
);
656
);
Lines 1378-1385 Composing rels: L</aqorder_users> -> ordernumber Link Here
1378
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1386
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1379
1387
1380
1388
1381
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-09 21:24:02
1389
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-08-04 08:45:24
1382
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7llO928plwtX2Q+I9nQA8A
1390
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7XtfPJMmCC7/TKL4LQWtRg
1383
1391
1384
__PACKAGE__->belongs_to(
1392
__PACKAGE__->belongs_to(
1385
    "guarantor",
1393
    "guarantor",
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +10 lines)
Lines 242-247 __PACKAGE__->table("borrower_modifications"); Link Here
242
  datetime_undef_if_invalid: 1
242
  datetime_undef_if_invalid: 1
243
  is_nullable: 1
243
  is_nullable: 1
244
244
245
=head2 date_renewed
246
247
  data_type: 'date'
248
  datetime_undef_if_invalid: 1
249
  is_nullable: 1
250
245
=head2 gonenoaddress
251
=head2 gonenoaddress
246
252
247
  data_type: 'tinyint'
253
  data_type: 'tinyint'
Lines 513-518 __PACKAGE__->add_columns( Link Here
513
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
519
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
514
  "dateexpiry",
520
  "dateexpiry",
515
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
521
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
522
  "date_renewed",
523
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
516
  "gonenoaddress",
524
  "gonenoaddress",
517
  { data_type => "tinyint", is_nullable => 1 },
525
  { data_type => "tinyint", is_nullable => 1 },
518
  "lost",
526
  "lost",
Lines 590-597 __PACKAGE__->add_columns( Link Here
590
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
598
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
591
599
592
600
593
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-12-12 20:04:12
601
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-08-04 08:45:24
594
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IZNhBX5Bj+x4S8JCWG+7lA
602
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wmc+b+L1cze/k31FFXPTTw
595
603
596
604
597
# You can replace this text with custom content, and it will be preserved on regeneration
605
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedborrower.pm (-11 / +18 lines)
Lines 230-235 __PACKAGE__->table("deletedborrowers"); Link Here
230
  datetime_undef_if_invalid: 1
230
  datetime_undef_if_invalid: 1
231
  is_nullable: 1
231
  is_nullable: 1
232
232
233
=head2 date_renewed
234
235
  data_type: 'date'
236
  datetime_undef_if_invalid: 1
237
  is_nullable: 1
238
233
=head2 gonenoaddress
239
=head2 gonenoaddress
234
240
235
  data_type: 'tinyint'
241
  data_type: 'tinyint'
Lines 424-429 __PACKAGE__->table("deletedborrowers"); Link Here
424
  datetime_undef_if_invalid: 1
430
  datetime_undef_if_invalid: 1
425
  is_nullable: 1
431
  is_nullable: 1
426
432
433
=head2 login_attempts
434
435
  data_type: 'integer'
436
  default_value: 0
437
  is_nullable: 1
438
427
=head2 lang
439
=head2 lang
428
440
429
  data_type: 'varchar'
441
  data_type: 'varchar'
Lines 431-442 __PACKAGE__->table("deletedborrowers"); Link Here
431
  is_nullable: 0
443
  is_nullable: 0
432
  size: 25
444
  size: 25
433
445
434
=head2 login_attempts
435
436
  data_type: 'integer'
437
  default_value: 0
438
  is_nullable: 1
439
440
=head2 overdrive_auth_token
446
=head2 overdrive_auth_token
441
447
442
  data_type: 'text'
448
  data_type: 'text'
Lines 537-542 __PACKAGE__->add_columns( Link Here
537
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
543
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
538
  "dateexpiry",
544
  "dateexpiry",
539
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
545
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
546
  "date_renewed",
547
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
540
  "gonenoaddress",
548
  "gonenoaddress",
541
  { data_type => "tinyint", is_nullable => 1 },
549
  { data_type => "tinyint", is_nullable => 1 },
542
  "lost",
550
  "lost",
Lines 619-624 __PACKAGE__->add_columns( Link Here
619
    datetime_undef_if_invalid => 1,
627
    datetime_undef_if_invalid => 1,
620
    is_nullable => 1,
628
    is_nullable => 1,
621
  },
629
  },
630
  "login_attempts",
631
  { data_type => "integer", default_value => 0, is_nullable => 1 },
622
  "lang",
632
  "lang",
623
  {
633
  {
624
    data_type => "varchar",
634
    data_type => "varchar",
Lines 626-640 __PACKAGE__->add_columns( Link Here
626
    is_nullable => 0,
636
    is_nullable => 0,
627
    size => 25,
637
    size => 25,
628
  },
638
  },
629
  "login_attempts",
630
  { data_type => "integer", default_value => 0, is_nullable => 1 },
631
  "overdrive_auth_token",
639
  "overdrive_auth_token",
632
  { data_type => "text", is_nullable => 1 },
640
  { data_type => "text", is_nullable => 1 },
633
);
641
);
634
642
635
643
636
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-09 21:24:03
644
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-08-04 08:45:24
637
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SpP0xoSTFIweqTp1muUwvg
645
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9IUe4uGtD0oZO9gvJG5T3Q
638
646
639
647
640
# You can replace this text with custom code or comments, and it will be preserved on regeneration
648
# You can replace this text with custom code or comments, and it will be preserved on regeneration
641
- 

Return to bug 6758