aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120824094751_add_name_to_user.rb
blob: 6822e4d6ed660cd177f2c972be478b31beb96c8b (plain)
1
2
3
4
5
6
7
class AddNameToUser < ActiveRecord::Migration
  def change
    change_table :users do |t|
      t.string :name
    end
  end
end