007_create_affiliations.rb 262 Bytes
class CreateAffiliations < ActiveRecord::Migration
  def self.up
    create_table :affiliations do |t|
      t.column :person_id,            :integer
      t.column :profile_id,      :integer
    end
  end

  def self.down
    drop_table :affiliations
  end
end