@@ -, +, @@ --- Koha/Schema/Result/Message.pm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Message.pm +++ a/Koha/Schema/Result/Message.pm @@ -79,6 +79,12 @@ the date and time the message was written creator of message +=head2 patron_read_date + + data_type: 'timestamp' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -101,6 +107,12 @@ __PACKAGE__->add_columns( }, "manager_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, + "patron_read_date", + { + data_type => "timestamp", + datetime_undef_if_invalid => 1, + is_nullable => 1, + }, ); =head1 PRIMARY KEY @@ -153,8 +165,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EvxjiNgWGReZ9rEVmS5YVw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2023-02-15 18:12:29 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jYdlUfl4OWj8Ovv+ROjSgg sub koha_object_class { 'Koha::Patron::Message'; --