discourse/db/migrate/20130328162943_create_hot_t...

13 lines
343 B
Ruby
Raw Normal View History

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