class AdicionarColunaOnProjecaoProjecoesDeReceita < ActiveRecord::Migration[4.2]
	def up
		add_column :projecao_receitas, :novo_tipo, :boolean, default: true
	end

	def down
		remove_column :projecao_receitas, :novo_tipo, :boolean, default: true
	end
end