From b3139750d6006ec0cc291285f633d6d0374583fd Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 7 May 2021 14:17:00 +0200 Subject: [PATCH] Bug 14723: DBIC schema changes Signed-off-by: Jonathan Druart --- 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 89d95ac8e4..180ddb6df3 100644 --- a/Koha/Schema/Result/MessageQueue.pm +++ b/Koha/Schema/Result/MessageQueue.pm @@ -103,6 +103,11 @@ __PACKAGE__->table("message_queue"); data_type: 'mediumtext' is_nullable: 1 +=head2 delivery_note + + data_type: 'mediumtext' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -148,6 +153,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "content_type", { data_type => "mediumtext", is_nullable => 1 }, + "delivery_note", + { data_type => "mediumtext", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -200,8 +207,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-25 09:43:49 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9M95gvHiqvdGdahHEHaFaA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-05-07 12:13:54 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YufQVvbtEj4pIJI1iw9Omg sub koha_object_class { 'Koha::Notice::Message'; -- 2.39.5