From 74cf4110bd7a4e928c5a2a61e92ac7fe4f40b594 Mon Sep 17 00:00:00 2001 From: Agustin Moyano Date: Thu, 19 Aug 2021 23:48:14 -0300 Subject: [PATCH] Bug 27947: [DO NOT PUSH] update ArticleRequest schema Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- Koha/Schema/Result/ArticleRequest.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ArticleRequest.pm b/Koha/Schema/Result/ArticleRequest.pm index 8350a9f03b..13748ba8c8 100644 --- a/Koha/Schema/Result/ArticleRequest.pm +++ b/Koha/Schema/Result/ArticleRequest.pm @@ -118,6 +118,14 @@ __PACKAGE__->table("article_requests"); data_type: 'mediumtext' is_nullable: 1 +=head2 cancellation_reason + + data_type: 'varchar' + is_nullable: 1 + size: 80 + +optional authorised value AR_CANCELLATION + =head2 created_on data_type: 'timestamp' @@ -180,6 +188,8 @@ __PACKAGE__->add_columns( }, "urls", { data_type => "mediumtext", is_nullable => 1 }, + "cancellation_reason", + { data_type => "varchar", is_nullable => 1, size => 80 }, "created_on", { data_type => "timestamp", @@ -280,8 +290,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-12 13:41:15 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GVaBsoeXb0EiuKTJYkWLEg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-08-18 10:41:01 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1q7Vlki3fRVBdww1zHLCRA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1