retrospring/db/migrate/20140801175137_create_comments.rb

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

15 lines
292 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
class CreateComments < ActiveRecord::Migration[4.2]
2014-10-28 06:36:38 +01:00
def change
create_table :comments do |t|
t.string :content
t.integer :answer_id
t.integer :user_id
t.timestamps
end
2023-10-20 01:37:34 +02:00
add_index :comments, %i[user_id created_at]
2014-10-28 06:36:38 +01:00
end
end