class CreateMembroDoComiteDeInvestimento < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_membros_dos_comites_de_investimento do |t|
      t.integer :pessoa_id
      t.integer :comite_de_investimento_id
      t.date :data_de_admissao
      t.date :data_de_saida
      t.integer :arquivo_id
      t.timestamps
    end
  end
end
