From 760b0d995415bfbd8ecaa90dd3c7258063a4a6f4 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 24 Jun 2021 09:11:51 +0000 Subject: [PATCH] Bug 20472: [DO NOT PUSH] DBIx schema changes Refreshed 24-06-21 Signed-off-by: Martin Renvoize --- Koha/Schema/Result/ArticleRequest.pm | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ArticleRequest.pm b/Koha/Schema/Result/ArticleRequest.pm index b1bf431329..5e7115467c 100644 --- a/Koha/Schema/Result/ArticleRequest.pm +++ b/Koha/Schema/Result/ArticleRequest.pm @@ -106,6 +106,18 @@ __PACKAGE__->table("article_requests"); data_type: 'mediumtext' is_nullable: 1 +=head2 format + + data_type: 'enum' + default_value: 'PHOTOCOPY' + extra: {list => ["PHOTOCOPY","SCAN"]} + is_nullable: 0 + +=head2 urls + + data_type: 'mediumtext' + is_nullable: 1 + =head2 created_on data_type: 'timestamp' @@ -159,6 +171,15 @@ __PACKAGE__->add_columns( }, "notes", { data_type => "mediumtext", is_nullable => 1 }, + "format", + { + data_type => "enum", + default_value => "PHOTOCOPY", + extra => { list => ["PHOTOCOPY", "SCAN"] }, + is_nullable => 0, + }, + "urls", + { data_type => "mediumtext", is_nullable => 1 }, "created_on", { data_type => "timestamp", @@ -259,8 +280,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5V0gW/nMkgDImbKMlIa2BA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-24 09:11:36 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qwd3JSwKQ15ernq08NhJ3Q # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1