From 40b11d225c88da93e2e25fad7e4bf488043b89f5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 14 Nov 2019 16:52:14 +0100 Subject: [PATCH] Bug 22784: DBIC Changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sponsored-by: BULAC - http://www.bulac.fr/ Signed-off-by: Séverine QUEUNE Signed-off-by: Kelly McElligott --- Koha/Schema/Result/Suggestion.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Suggestion.pm b/Koha/Schema/Result/Suggestion.pm index 56a9235978..17b81d04a2 100644 --- a/Koha/Schema/Result/Suggestion.pm +++ b/Koha/Schema/Result/Suggestion.pm @@ -97,6 +97,12 @@ __PACKAGE__->table("suggestions"); is_nullable: 0 size: 10 +=head2 archived + + data_type: 'integer' + default_value: 0 + is_nullable: 0 + =head2 note data_type: 'longtext' @@ -252,6 +258,8 @@ __PACKAGE__->add_columns( is_nullable => 0, size => 10, }, + "archived", + { data_type => "integer", default_value => 0, is_nullable => 0 }, "note", { data_type => "longtext", is_nullable => 1 }, "author", @@ -476,8 +484,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-11-14 15:44:38 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qZuiiZgd+ry97OSngYckSA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-11-14 15:51:55 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VMqZoZ/sYmLJdsVamvcDnw __PACKAGE__->add_columns( '+archived' => { is_boolean => 1 }, -- 2.11.0