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

(-)a/Koha/Schema/Result/Borrower.pm (-3 / +2 lines)
Lines 573-579 time of last change could be useful for synchronization with external systems (a Link Here
573
573
574
  data_type: 'datetime'
574
  data_type: 'datetime'
575
  datetime_undef_if_invalid: 1
575
  datetime_undef_if_invalid: 1
576
  default_value: 'current_timestamp()'
576
  default_value: 'current_timestamp'
577
  is_nullable: 1
577
  is_nullable: 1
578
578
579
last time a patron has been seen (connected at the OPAC or staff interface)
579
last time a patron has been seen (connected at the OPAC or staff interface)
Lines 804-810 __PACKAGE__->add_columns( Link Here
804
  {
804
  {
805
    data_type => "datetime",
805
    data_type => "datetime",
806
    datetime_undef_if_invalid => 1,
806
    datetime_undef_if_invalid => 1,
807
    default_value => "current_timestamp()",
807
    default_value => \"current_timestamp",
808
    is_nullable => 1,
808
    is_nullable => 1,
809
  },
809
  },
810
  "lang",
810
  "lang",
811
- 

Return to bug 23486