041_add_enabled_to_profile.rb 200 Bytes
class AddEnabledToProfile < ActiveRecord::Migration
  def self.up
    add_column :profiles, :enabled, :boolean, :default => true
  end

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