discourse/db/migrate/20130402210723_add_values_t...

12 lines
378 B
Ruby

# frozen_string_literal: true
class AddValuesToHotTopics < ActiveRecord::Migration[4.2]
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