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

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

Return to bug 10459