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-friends-3.0.2 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-groups-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-shares-3.0.1 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-services-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.1 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.1 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-comments-3.0.2 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-activities-3.0.1 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-profiles-3.0.0 db/migrate/20091124205819_add_fields_to_profiles.rb
muck-comments-3.0.1 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-comments-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-friends-3.0.0 test/rails_test/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-comments-0.1.21 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-0.2.8 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-0.2.7 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-invites-0.1.12 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-0.2.6 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-0.2.5 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb
muck-commerce-0.2.4 test/rails_root/db/migrate/20091124205819_add_fields_to_profiles.rb