2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class AddValuesToHotTopics < ActiveRecord::Migration[4.2]
|
2013-04-02 16:52:51 -04:00
|
|
|
def change
|
|
|
|
add_column :hot_topics, :random_bias, :float
|
|
|
|
add_column :hot_topics, :random_multiplier, :float
|
|
|
|
add_column :hot_topics, :days_ago_bias, :float
|
|
|
|
add_column :hot_topics, :days_ago_multiplier, :float
|
|
|
|
add_column :hot_topics, :hot_topic_type, :integer
|
|
|
|
end
|
|
|
|
end
|