cirandas.net

ref: master

db/migrate/20110726115751_add_national_region_code_to_profiles.rb


1
2
3
4
5
6
7
8
9
class AddNationalRegionCodeToProfiles < ActiveRecord::Migration
  def self.up
    add_column :profiles, :national_region_code, :string, :null => true
  end

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