2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class AddQuarterlyToTopTopics < ActiveRecord::Migration[4.2]
|
2015-07-29 00:31:31 +08:00
|
|
|
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
|