15 lines
725 B
Ruby
15 lines
725 B
Ruby
class AddQuarterlyToTopTopics < ActiveRecord::Migration
|
|
def change
|
|
add_column :top_topics, :quarterly_posts_count, :integer, default: 0, null: false
|
|
add_column :top_topics, :quarterly_views_count, :integer, default: 0, null: false
|
|
add_column :top_topics, :quarterly_likes_count, :integer, default: 0, null: false
|
|
add_column :top_topics, :quarterly_score, :float, default: 0.0
|
|
add_column :top_topics, :quarterly_op_likes_count, :integer, default: 0, null: false
|
|
|
|
add_index :top_topics, [:quarterly_posts_count]
|
|
add_index :top_topics, [:quarterly_views_count]
|
|
add_index :top_topics, [:quarterly_likes_count]
|
|
add_index :top_topics, [:quarterly_op_likes_count]
|
|
end
|
|
end
|