mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 02:39:29 +08:00
![Robin Ward](/assets/img/avatar_default.png)
hotness. Note: People on Heroku will have to update their jobs to the new structure in Heroku.md
13 lines
343 B
Ruby
13 lines
343 B
Ruby
class CreateHotTopics < ActiveRecord::Migration
|
|
def change
|
|
create_table :hot_topics, force: true do |t|
|
|
t.integer :topic_id, null: false
|
|
t.integer :category_id, null: true
|
|
t.float :score, null: false
|
|
end
|
|
|
|
add_index :hot_topics, :topic_id, unique: true
|
|
add_index :hot_topics, :score, order: 'desc'
|
|
end
|
|
end
|