class CreateProjecaoTiposDeIndice < ActiveRecord::Migration[4.2]
	def change
		create_table :projecao_tipos_de_indice do |t|
			t.string :nome
			t.integer :indice_id

			t.timestamps null: false
		end
	end
end
