From 22e75b61fe911b9bc0118dbdc928067c54401734 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 6 Oct 2021 11:25:25 +0000 Subject: [PATCH] [DO NOT PUSH] DBIx schema changes Content-Type: text/plain; charset=utf-8 --- Koha/Schema/Result/ArticleRequest.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/ArticleRequest.pm b/Koha/Schema/Result/ArticleRequest.pm index 1b2f4dce4c..ac2fe371da 100644 --- a/Koha/Schema/Result/ArticleRequest.pm +++ b/Koha/Schema/Result/ArticleRequest.pm @@ -141,6 +141,12 @@ Be careful with two timestamps in one table not allowing NULL default_value: current_timestamp is_nullable: 0 +=head2 toc_request + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -205,6 +211,8 @@ __PACKAGE__->add_columns( default_value => \"current_timestamp", is_nullable => 0, }, + "toc_request", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -292,8 +300,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-05 09:43:22 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yBNVe7a+BlTtg4I4YCBP1Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-10-06 11:25:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:H+wrFhjkl6LvBojV2I9CLg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1