@@ -, +, @@ --- Koha/Schema/Result/ArticleRequest.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/ArticleRequest.pm +++ a/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 --