mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
9 lines
342 B
Ruby
9 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
|