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

(-)a/Koha/Schema/Result/Message.pm (-3 / +14 lines)
Lines 79-84 the date and time the message was written Link Here
79
79
80
creator of message
80
creator of message
81
81
82
=head2 patron_read_date
83
84
  data_type: 'timestamp'
85
  datetime_undef_if_invalid: 1
86
  is_nullable: 1
87
82
=cut
88
=cut
83
89
84
__PACKAGE__->add_columns(
90
__PACKAGE__->add_columns(
Lines 101-106 __PACKAGE__->add_columns( Link Here
101
  },
107
  },
102
  "manager_id",
108
  "manager_id",
103
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
109
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
110
  "patron_read_date",
111
  {
112
    data_type => "timestamp",
113
    datetime_undef_if_invalid => 1,
114
    is_nullable => 1,
115
  },
104
);
116
);
105
117
106
=head1 PRIMARY KEY
118
=head1 PRIMARY KEY
Lines 153-160 __PACKAGE__->belongs_to( Link Here
153
);
165
);
154
166
155
167
156
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
168
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2023-02-15 18:12:29
157
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EvxjiNgWGReZ9rEVmS5YVw
169
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jYdlUfl4OWj8Ovv+ROjSgg
158
170
159
sub koha_object_class {
171
sub koha_object_class {
160
    'Koha::Patron::Message';
172
    'Koha::Patron::Message';
161
- 

Return to bug 12029