discourse/db/migrate/20130402210723_add_values_to_hot_topics.rb
2013-04-02 18:00:53 -04:00

10 lines
342 B
Ruby

class AddValuesToHotTopics < ActiveRecord::Migration
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