Retrospring/db/migrate/20140801175112_create_answe...

15 lines
305 B
Ruby
Raw Normal View History

2014-10-27 22:36:38 -07:00
class CreateAnswers < ActiveRecord::Migration
def change
create_table :answers do |t|
t.string :content
t.integer :question_id
t.integer :comments
t.integer :likes
t.integer :user_id
t.timestamps
end
add_index :answers, [:user_id, :created_at]
end
end