discourse/db/migrate/20131223171005_create_top_topics.rb

27 lines
652 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateTopTopics < ActiveRecord::Migration[4.2]
PERIODS = %i[yearly monthly weekly daily]
SORT_ORDERS = %i[posts views likes]
2014-01-13 18:02:14 -06:00
2013-12-23 17:50:36 -06:00
def change
create_table :top_topics, force: true do |t|
2013-12-23 17:50:36 -06:00
t.belongs_to :topic
2014-01-13 18:02:14 -06:00
PERIODS.each do |period|
SORT_ORDERS.each do |sort|
2013-12-23 17:50:36 -06: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-13 18:02:14 -06:00
PERIODS.each do |period|
SORT_ORDERS.each do |sort|
add_index :top_topics, "#{period}_#{sort}_count".to_sym, order: "desc"
2013-12-23 17:50:36 -06:00
end
end
end
end