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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +14 lines)
Lines 407-412 __PACKAGE__->table("borrowers"); Link Here
407
  default_value: 0
407
  default_value: 0
408
  is_nullable: 0
408
  is_nullable: 0
409
409
410
=head2 lastseen
411
412
  data_type: 'datetime'
413
  datetime_undef_if_invalid: 1
414
  is_nullable: 1
415
410
=cut
416
=cut
411
417
412
__PACKAGE__->add_columns(
418
__PACKAGE__->add_columns(
Lines 576-581 __PACKAGE__->add_columns( Link Here
576
  { data_type => "integer", default_value => 1, is_nullable => 0 },
582
  { data_type => "integer", default_value => 1, is_nullable => 0 },
577
  "privacy_guarantor_checkouts",
583
  "privacy_guarantor_checkouts",
578
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
584
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
585
  "lastseen",
586
  {
587
    data_type => "datetime",
588
    datetime_undef_if_invalid => 1,
589
    is_nullable => 1,
590
  },
579
);
591
);
580
592
581
=head1 PRIMARY KEY
593
=head1 PRIMARY KEY
Lines 1204-1211 Composing rels: L</aqorder_users> -> ordernumber Link Here
1204
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1216
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1205
1217
1206
1218
1207
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-02-14 12:46:14
1219
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-24 17:32:24
1208
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bI6qJYw+ulTUwA7XMCkkRw
1220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lqnr1bMJDpGyjIj7brABHQ
1209
1221
1210
__PACKAGE__->belongs_to(
1222
__PACKAGE__->belongs_to(
1211
    "guarantor",
1223
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +14 lines)
Lines 404-409 __PACKAGE__->table("deletedborrowers"); Link Here
404
  default_value: 0
404
  default_value: 0
405
  is_nullable: 0
405
  is_nullable: 0
406
406
407
=head2 lastseen
408
409
  data_type: 'datetime'
410
  datetime_undef_if_invalid: 1
411
  is_nullable: 1
412
407
=cut
413
=cut
408
414
409
__PACKAGE__->add_columns(
415
__PACKAGE__->add_columns(
Lines 561-571 __PACKAGE__->add_columns( Link Here
561
  { data_type => "integer", default_value => 1, is_nullable => 0 },
567
  { data_type => "integer", default_value => 1, is_nullable => 0 },
562
  "privacy_guarantor_checkouts",
568
  "privacy_guarantor_checkouts",
563
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
569
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
570
  "lastseen",
571
  {
572
    data_type => "datetime",
573
    datetime_undef_if_invalid => 1,
574
    is_nullable => 1,
575
  },
564
);
576
);
565
577
566
578
567
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-04 19:32:39
579
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-24 17:32:24
568
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UqTaMlpDnOWlhfQyF5EjHA
580
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CjM77u63lNdzWEb29TGTgA
569
581
570
582
571
# You can replace this text with custom code or comments, and it will be preserved on regeneration
583
# You can replace this text with custom code or comments, and it will be preserved on regeneration
572
- 

Return to bug 16276