Sha256: 3dfc3d5054f9823659ed1e0d76020a27e5303baf88ab3b4e790b287a0769b2a3

Contents?: true

Size: 689 Bytes

Versions: 64

Compression:

Stored size: 689 Bytes

Contents

class AddFieldsToProfiles < ActiveRecord::Migration
  def self.up
    add_column :profiles, :about, :text
    add_column :profiles, :first_name, :string
    add_column :profiles, :last_name, :string
    add_column :profiles, :city, :string
    add_column :profiles, :state_id, :integer
    add_column :profiles, :country_id, :integer
    add_column :profiles, :language_id, :integer
  end

  def self.down
    remove_column :profiles, :about
    remove_column :profiles, :first_name
    remove_column :profiles, :last_name
    remove_column :profiles, :city
    remove_column :profiles, :state_id
    remove_column :profiles, :country_id
    remove_column :profiles, :language_id
  end
end

Version data entries

64 entries across 55 versions & 10 rubygems

Version Path
muck-activities-3.2.2 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.5 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-activities-3.2.1 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-services-3.3.3 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-3.0.1 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.4 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.4 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-auth-3.5.4 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-auth-3.5.3 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.3 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.3 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-auth-3.5.2 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-invites-3.4.1 test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.2 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.1 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.1.0 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-friends-3.0.3 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.2 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.2 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-invites-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb