class CreateProjecaoProjecoesDoIndice < ActiveRecord::Migration[4.2]
  def change
    create_table :projecao_projecoes_do_indice do |t|
      t.integer :tipo_de_indice_id
      t.string :exercicio
      t.decimal :percentual, precision: 5, scale: 2
      t.string :fonte_da_projecao

      t.timestamps null: false
    end
  end
end
