* 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
5 lines
153 B
Ruby
5 lines
153 B
Ruby
class AddContextToRatingVotes < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :rating_votes, :context, :string, default: "explicit"
|
|
end
|
|
end
|