0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 02:19:55 +08:00
discourse/db/migrate/20131223171005_create_top_topics.rb
Jarek Radosz d89531f2f6
DEV: Enable some minor rubocop rules (#40094)
* Style/RedundantFreeze
* Style/RedundantConditional
* Lint/DuplicateMagicComment
* Lint/IdentityComparison
* Lint/SymbolConversion

(to be enabled in the shared config)
2026-05-19 15:29:38 +02:00

22 lines
602 B
Ruby
Vendored

# frozen_string_literal: true
class CreateTopTopics < ActiveRecord::Migration[4.2]
PERIODS = %i[yearly monthly weekly daily]
SORT_ORDERS = %i[posts views likes]
def change
create_table :top_topics, force: true do |t|
t.belongs_to :topic
PERIODS.each do |period|
SORT_ORDERS.each { |sort| t.integer :"#{period}_#{sort}_count", null: false, default: 0 }
end
end
add_index :top_topics, :topic_id, unique: true
PERIODS.each do |period|
SORT_ORDERS.each { |sort| add_index :top_topics, :"#{period}_#{sort}_count", order: "desc" }
end
end
end