From 44d8da181a50d1cb3453bcc455e08d7c98c77902 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 18 Sep 2023 15:26:31 +0100 Subject: [PATCH] Bug 12532: DBIC Schema --- Koha/Schema/Result/MessageQueue.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/MessageQueue.pm b/Koha/Schema/Result/MessageQueue.pm index d2d36ce2a57..43b7e192f87 100644 --- a/Koha/Schema/Result/MessageQueue.pm +++ b/Koha/Schema/Result/MessageQueue.pm @@ -96,6 +96,11 @@ Foreign key to the letters table data_type: 'longtext' is_nullable: 1 +=head2 cc_address + + data_type: 'longtext' + is_nullable: 1 + =head2 from_address data_type: 'longtext' @@ -157,6 +162,8 @@ __PACKAGE__->add_columns( }, "to_address", { data_type => "longtext", is_nullable => 1 }, + "cc_address", + { data_type => "longtext", is_nullable => 1 }, "from_address", { data_type => "longtext", is_nullable => 1 }, "reply_address", @@ -237,8 +244,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-18 12:50:14 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PX9JzZw0v134xuHqNbB0cA +# 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 sub koha_object_class { 'Koha::Notice::Message'; -- 2.41.0