047_add_nickname_to_profile.rb 213 Bytes
class AddNicknameToProfile < ActiveRecord::Migration
  def self.up
    add_column :profiles, :nickname, :string, :null => true, :limit => 16
  end

  def self.down
    remove_column :profiles, :nickname
  end
end