class CreatePpaQuantitativos < ActiveRecord::Migration[4.2]
	def change
		create_table :ppa_quantitativos do |t|
			t.integer :iniciativa_id
			t.integer :exercicio
			t.string :unidade_de_medida
			t.decimal :indice_de_referencia, precision: 8, scale: 2

			t.timestamps null: false
		end
	end
end
