class AddAttachmentBrasaoToConfiguracoes < ActiveRecord::Migration[4.2]
	def self.up
		change_table :configuracoes do |t|
			t.attachment :brasao
		end
	end

	def self.down
		remove_attachment :configuracoes, :brasao
	end
end
