From 93474c8b4a6395c6f6db6b8b62954435a9bf2efd Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 29 Jul 2020 12:52:38 +0000 Subject: [PATCH] DO_NOT_PUSH: Change DBIx schema file ArticleRequest Content-Type: text/plain; charset=utf-8 https://bugs.koha-community.org/show_bug.cgi?id=20472 --- 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 b787c91eca..288d0b59ab 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' @@ -157,6 +169,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", @@ -257,8 +278,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-02 09:44:27 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Dhz1mVI7Z/6ibqaBZkPvUA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-29 12:52:16 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OKPNYigFZ7GbhCgokq2Utw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.11.0