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

(-)a/Koha/Schema/Result/Borrower.pm (-4 / +18 lines)
Lines 424-430 __PACKAGE__->table("borrowers"); Link Here
424
424
425
  data_type: 'timestamp'
425
  data_type: 'timestamp'
426
  datetime_undef_if_invalid: 1
426
  datetime_undef_if_invalid: 1
427
  default_value: current_timestamp
427
  default_value: 'current_timestamp()'
428
  is_nullable: 0
428
  is_nullable: 0
429
429
430
=head2 lastseen
430
=head2 lastseen
Lines 451-456 __PACKAGE__->table("borrowers"); Link Here
451
  data_type: 'mediumtext'
451
  data_type: 'mediumtext'
452
  is_nullable: 1
452
  is_nullable: 1
453
453
454
=head2 flgAnonymized
455
456
  accessor: 'flg_anonymized'
457
  data_type: 'tinyint'
458
  default_value: 0
459
  is_nullable: 1
460
454
=cut
461
=cut
455
462
456
__PACKAGE__->add_columns(
463
__PACKAGE__->add_columns(
Lines 633-639 __PACKAGE__->add_columns( Link Here
633
  {
640
  {
634
    data_type => "timestamp",
641
    data_type => "timestamp",
635
    datetime_undef_if_invalid => 1,
642
    datetime_undef_if_invalid => 1,
636
    default_value => \"current_timestamp",
643
    default_value => "current_timestamp()",
637
    is_nullable => 0,
644
    is_nullable => 0,
638
  },
645
  },
639
  "lastseen",
646
  "lastseen",
Lines 653-658 __PACKAGE__->add_columns( Link Here
653
  { data_type => "integer", default_value => 0, is_nullable => 1 },
660
  { data_type => "integer", default_value => 0, is_nullable => 1 },
654
  "overdrive_auth_token",
661
  "overdrive_auth_token",
655
  { data_type => "mediumtext", is_nullable => 1 },
662
  { data_type => "mediumtext", is_nullable => 1 },
663
  "flgAnonymized",
664
  {
665
    accessor      => "flg_anonymized",
666
    data_type     => "tinyint",
667
    default_value => 0,
668
    is_nullable   => 1,
669
  },
656
);
670
);
657
671
658
=head1 PRIMARY KEY
672
=head1 PRIMARY KEY
Lines 1521-1528 Composing rels: L</aqorder_users> -> ordernumber Link Here
1521
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1535
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1522
1536
1523
1537
1524
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-03-22 20:06:37
1538
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-29 08:05:50
1525
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dbRPH4TDrnUkzbJdgM5XcQ
1539
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ok1RK9eyaiit+VV1UoocqA
1526
1540
1527
__PACKAGE__->belongs_to(
1541
__PACKAGE__->belongs_to(
1528
    "guarantor",
1542
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-5 / +18 lines)
Lines 421-427 __PACKAGE__->table("deletedborrowers"); Link Here
421
421
422
  data_type: 'timestamp'
422
  data_type: 'timestamp'
423
  datetime_undef_if_invalid: 1
423
  datetime_undef_if_invalid: 1
424
  default_value: current_timestamp
424
  default_value: 'current_timestamp()'
425
  is_nullable: 0
425
  is_nullable: 0
426
426
427
=head2 lastseen
427
=head2 lastseen
Lines 448-453 __PACKAGE__->table("deletedborrowers"); Link Here
448
  data_type: 'mediumtext'
448
  data_type: 'mediumtext'
449
  is_nullable: 1
449
  is_nullable: 1
450
450
451
=head2 flgAnonymized
452
453
  accessor: 'flg_anonymized'
454
  data_type: 'tinyint'
455
  default_value: 0
456
  is_nullable: 1
457
451
=cut
458
=cut
452
459
453
__PACKAGE__->add_columns(
460
__PACKAGE__->add_columns(
Lines 618-624 __PACKAGE__->add_columns( Link Here
618
  {
625
  {
619
    data_type => "timestamp",
626
    data_type => "timestamp",
620
    datetime_undef_if_invalid => 1,
627
    datetime_undef_if_invalid => 1,
621
    default_value => \"current_timestamp",
628
    default_value => "current_timestamp()",
622
    is_nullable => 0,
629
    is_nullable => 0,
623
  },
630
  },
624
  "lastseen",
631
  "lastseen",
Lines 638-648 __PACKAGE__->add_columns( Link Here
638
  { data_type => "integer", default_value => 0, is_nullable => 1 },
645
  { data_type => "integer", default_value => 0, is_nullable => 1 },
639
  "overdrive_auth_token",
646
  "overdrive_auth_token",
640
  { data_type => "mediumtext", is_nullable => 1 },
647
  { data_type => "mediumtext", is_nullable => 1 },
648
  "flgAnonymized",
649
  {
650
    accessor      => "flg_anonymized",
651
    data_type     => "tinyint",
652
    default_value => 0,
653
    is_nullable   => 1,
654
  },
641
);
655
);
642
656
643
657
644
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
658
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-29 08:05:50
645
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DNkNHNcv0lkMH6/seu89hg
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kgyApzJFqun2f7wMqG6DCg
646
660
647
661
648
# You can replace this text with custom code or comments, and it will be preserved on regeneration
662
# You can replace this text with custom code or comments, and it will be preserved on regeneration
649
- 

Return to bug 21336