20160420140141_create_external_person.rb 348 Bytes
class CreateExternalPerson < ActiveRecord::Migration
  def change
    create_table :external_people do |t|
      t.string :name
      t.string :identifier
      t.string :source
      t.string :email
      t.integer :environment_id
      t.boolean :visible, default: true
      t.datetime :created_at
      t.datetime :updated_at
    end
  end
end