class CreateFundosDeInvestimento < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_fundos_de_investimento do |t|
      t.integer :percentual_da_alocacao_de_recurso_id
      t.integer :conta_bancaria_id
      t.integer :pessoa_id
      t.string :nome_do_fundo
    end
  end
end
