Sha256: 1827ae15f7352a08a5c571fa72b137a8dd2049c953021589278aeb4153bc093e
Contents?: true
Size: 641 Bytes
Versions: 19
Compression:
Stored size: 641 Bytes
Contents
# These rake tasks are to be run by MySql users only, they fix the management of # binary-encoded strings for tag 'names'. Issues: # https://github.com/mbleigh/acts-as-taggable-on/issues/623 namespace :acts_as_taggable_on_engine do namespace :tag_names do desc "Forcing collate of tag names to utf8_bin" task :collate_bin => [:environment] do |t, args| ActsAsTaggableOn::Configuration.apply_binary_collation(true) end desc "Forcing collate of tag names to utf8_general_ci" task :collate_ci => [:environment] do |t, args| ActsAsTaggableOn::Configuration.apply_binary_collation(false) end end end
Version data entries
19 entries across 18 versions & 4 rubygems