class CreateComments

Public Instance Methods

change() click to toggle source
# File db/migrate/20130403021409_create_comments.rb, line 2
def change
  create_table :comments do |t|
    t.string :comment
    t.integer :user_id
    t.integer :comment_type
    t.integer :location_id
    t.datetime :posted_at

    t.timestamps
  end
end