@@ -, +, @@ --- Koha/Schema/Result/Stockrotationitem.pm | 4 ++++ Koha/Schema/Result/Stockrotationrota.pm | 4 ++++ 2 files changed, 8 insertions(+) --- a/Koha/Schema/Result/Stockrotationitem.pm +++ a/Koha/Schema/Result/Stockrotationitem.pm @@ -108,6 +108,10 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-04 12:16:10 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5IDh4gVR3uzLEdUPBfsHTA +__PACKAGE__->add_columns( + '+indemand' => { is_boolean => 1 }, + '+fresh' => { is_boolean => 1 } +); # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --- a/Koha/Schema/Result/Stockrotationrota.pm +++ a/Koha/Schema/Result/Stockrotationrota.pm @@ -114,6 +114,10 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-04-17 16:37:51 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KOv8PNKzQd3gLTskL1GiHw +__PACKAGE__->add_columns( + '+cyclical' => { is_boolean => 1 }, + '+active' => { is_boolean => 1 } +); # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --