class CreateContabilidadeAportesDespesas < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_aportes_despesas do |t|
      t.date :data_da_documentacao
      t.integer :natureza_do_lancamento
      t.integer :tipo
      t.float :valor
      t.integer :orcamento_id
      t.integer :arquivo_id

      t.timestamps
    end
  end
end
