Retrospring/db/migrate/20140801175112_create_answe...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
340 B
Ruby
Raw Normal View History

2023-10-19 16:37:34 -07:00
# frozen_string_literal: true
class CreateAnswers < ActiveRecord::Migration[4.2]
2014-10-27 22:36:38 -07:00
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
2023-10-19 16:37:34 -07:00
add_index :answers, %i[user_id created_at]
2014-10-27 22:36:38 -07:00
end
end