summaryrefslogtreecommitdiff
path: root/db/migrate/20140119052825_create_comments.rb
blob: 1ec62c56513f97936df67f6dc5270caf45319492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateComments < ActiveRecord::Migration
  def change
    create_table :comments do |t|
      t.integer :user_id
      t.integer :creation_id
      t.string :text
      t.integer :disqus_id
      t.timestamps
    end

    add_index :comments, :user_id
    add_index :comments, :creation_id
  end
end