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

(-)a/Koha/Schema/Result/Borrower.pm (-5 / +6 lines)
Lines 595-601 time of last change could be useful for synchronization with external systems (a Link Here
595
595
596
  data_type: 'datetime'
596
  data_type: 'datetime'
597
  datetime_undef_if_invalid: 1
597
  datetime_undef_if_invalid: 1
598
  is_nullable: 1
598
  default_value: current_timestamp
599
  is_nullable: 0
599
600
600
last time a patron has been seen (connected at the OPAC or staff interface)
601
last time a patron has been seen (connected at the OPAC or staff interface)
601
602
Lines 831-837 __PACKAGE__->add_columns( Link Here
831
  {
832
  {
832
    data_type => "datetime",
833
    data_type => "datetime",
833
    datetime_undef_if_invalid => 1,
834
    datetime_undef_if_invalid => 1,
834
    is_nullable => 1,
835
    default_value => \"current_timestamp",
836
    is_nullable => 0,
835
  },
837
  },
836
  "lang",
838
  "lang",
837
  {
839
  {
Lines 2103-2110 Composing rels: L</user_permissions> -> permission Link Here
2103
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2105
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2104
2106
2105
2107
2106
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-06 15:46:57
2108
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-07 12:49:45
2107
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f6omVb7EtiysdaWTX3IRzg
2109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r9V6UASBq4kq4qm6FZmcEA
2108
2110
2109
__PACKAGE__->has_many(
2111
__PACKAGE__->has_many(
2110
  "restrictions",
2112
  "restrictions",
2111
- 

Return to bug 23486