mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: top topics all time
tweak top algorithm (we will continue next week)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class AddAllTimeAndOpLikesToTopTopics < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :top_topics, :all_score, :float, default: 0
|
||||
[:daily, :weekly, :monthly, :yearly].each do |period|
|
||||
column = "#{period}_op_likes_count"
|
||||
add_column :top_topics, column, :integer, default: 0, null: false
|
||||
add_index :top_topics, [column]
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user