class CreateProjecaoCalculoPorExercicios < ActiveRecord::Migration[4.2]
  def change
    create_table :projecao_calculo_por_exercicios do |t|
      t.integer :receita_id
      t.integer :receita_do_calculo_de_projecao_id
      t.integer :tipo
      t.integer :exercicio
      t.decimal :total, precision: 12, scale: 2

      t.timestamps null: false
    end
  end
end
