@@ -, +, @@ --- Koha/Schema/Result/Suggestion.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Suggestion.pm +++ a/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__->belongs_to( "suggester", --