class CreateProjecaoIndices < ActiveRecord::Migration[4.2]
	def change
		create_table :projecao_indices do |t|
			t.references :modulo, polymorphic: true
			t.string :nome

			t.timestamps null: false
		end
	end
end
