3scale/porta

View on GitHub
db/migrate/20081117120328_add_state_to_profile.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddStateToProfile < ActiveRecord::Migration
  def self.up
    add_column :profiles, :state, :string

    Profile.all.each do |p|
      p.update_attribute(:state, 'published') if p.account
    end
  end

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