1 2 3 4 5 6 7
class AddNameToUser < ActiveRecord::Migration def change change_table :users do |t| t.string :name end end end