2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class CreateTopTopics < ActiveRecord::Migration[4.2]
|
2014-01-14 08:02:14 +08:00
|
|
|
PERIODS = %i[yearly monthly weekly daily]
|
|
|
|
SORT_ORDERS = %i[posts views likes]
|
|
|
|
|
2013-12-24 07:50:36 +08:00
|
|
|
def change
|
2014-01-01 03:37:43 +08:00
|
|
|
create_table :top_topics, force: true do |t|
|
2013-12-24 07:50:36 +08:00
|
|
|
t.belongs_to :topic
|
|
|
|
|
2014-01-14 08:02:14 +08:00
|
|
|
PERIODS.each do |period|
|
|
|
|
SORT_ORDERS.each do |sort|
|
2013-12-24 07:50:36 +08:00
|
|
|
t.integer "#{period}_#{sort}_count".to_sym, null: false, default: 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :top_topics, :topic_id, unique: true
|
|
|
|
|
2014-01-14 08:02:14 +08:00
|
|
|
PERIODS.each do |period|
|
|
|
|
SORT_ORDERS.each do |sort|
|
2013-12-24 07:50:36 +08:00
|
|
|
add_index :top_topics, "#{period}_#{sort}_count".to_sym, order: "desc"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|