class CreateContabilidadeInvestimentosDoRpps < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_investimentos_do_rpps do |t|
      t.integer :orcamento_id
      t.integer :arquivo_id
      t.integer :percentual_da_alocacao_de_recurso_id
      t.float :saldo_inicial
      t.float :valor_da_aplicacao
      t.float :valor_do_resgate
      t.float :valor_do_rendimento
      t.date :data_do_investimento
      t.string :identificacao_do_fundo

      t.timestamps
    end
  end
end
