docbrown/db/migrate/20200303222558_add_context_to_rating_votes.rb
Ben Halpern 0817e2ac9e
Create implicit experience level rating vote upon creating of readinglist reaction (#6522) [deploy]
* Do not render or link to empty rss feeds

* s

* Move calculation to worker

* remove xit test

* Also allow implicit rating votes in comments

* Fix alignment issue

* Remove comment logic
2020-03-10 10:59:49 -04:00

5 lines
153 B
Ruby

class AddContextToRatingVotes < ActiveRecord::Migration[5.2]
def change
add_column :rating_votes, :context, :string, default: "explicit"
end
end