From 2c3c67b1fb0ce0296a8598219a25b31b33624e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Nyl=C3=A9n?= Date: Tue, 14 Dec 2021 08:34:55 +0000 Subject: [PATCH] Bug 27208: Schema changes --- Koha/Schema/Result/MessageQueue.pm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Koha/Schema/Result/MessageQueue.pm b/Koha/Schema/Result/MessageQueue.pm index 427a7398dd4..d49c91bcabb 100644 --- a/Koha/Schema/Result/MessageQueue.pm +++ b/Koha/Schema/Result/MessageQueue.pm @@ -121,6 +121,12 @@ Foreign key to the letters table data_type: 'mediumtext' is_nullable: 1 +=head2 delay_until + + data_type: 'timestamp' + datetime_undef_if_invalid: 1 + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -172,6 +178,12 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "failure_code", { data_type => "mediumtext", is_nullable => 1 }, + "delay_until", + { + data_type => "timestamp", + datetime_undef_if_invalid => 1, + is_nullable => 1, + }, ); =head1 PRIMARY KEY @@ -245,7 +257,7 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-18 14:26:23 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eJFHJ3sXu+kLt+uW4ILPIA +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TgFWQ8uaIK/w2B4FOV/atQ =head2 koha_object_class -- 2.43.0