Sha256: 40155f217d8f4d01f60820dcdd377a78752d4e3cedae42762cabf46eddf1590e

Contents?: true

Size: 622 Bytes

Versions: 20

Compression:

Stored size: 622 Bytes

Contents

class MoveCustomerProfileId < ActiveRecord::Migration
  def self.up
    add_column :users, :customer_profile_id, :string, :limit => 512
    BillingInformation.all.each do |bi|
      bi.billable.update_attribute(:customer_profile_id, bi.customer_profile_id)
    end
    remove_column :billing_informations, :customer_profile_id
  end

  def self.down
    add_column :billing_informations, :customer_profile_id, :string, :limit => 512
    BillingInformation.all.each do |bi|
      bi.update_attribute(:customer_profile_id, bi.billable.customer_profile_id)
    end
    remove_column :users, :customer_profile_id
  end
  
end

Version data entries

20 entries across 10 versions & 1 rubygems

Version Path
muck-commerce-3.0.1 test/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-3.0.1 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.8 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.8 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.7 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.7 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.6 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.6 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.5 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.5 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.4 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.4 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.3 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.3 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.2 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.2 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.1 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.1 db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.0 test/rails_root/db/migrate/20100408035338_move_customer_profile_id.rb
muck-commerce-0.2.0 db/migrate/20100408035338_move_customer_profile_id.rb