retrospring/db/migrate/20140801175112_create_answers.rb
2020-04-19 18:10:31 +02:00

14 lines
310 B
Ruby

class CreateAnswers < ActiveRecord::Migration[4.2]
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