概要
incrementのstepとしてbyが指定できるようになった。 指定していない場合、変更前と同様それぞれ +1 / -1される。
# before
Post.increment_counter(:comment_count, 1)
# after
Post.increment_counter(:comment_count, 1, by: 5)
incrementのstepとしてbyが指定できるようになった。 指定していない場合、変更前と同様それぞれ +1 / -1される。
# before
Post.increment_counter(:comment_count, 1)
# after
Post.increment_counter(:comment_count, 1, by: 5)
コメント