Change the MySQL collation type to utf8_bin to ensure case-sensitive tags are supported

This commit is contained in:
Stan Hu 2015-05-07 16:26:45 -07:00
parent c4aa700398
commit 548cec6ea4
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# This migration is a duplicate of 20150425164651_change_collation_for_tag_names.acts_as_taggable_on_engine.rb
# It shold be applied before the index additions to ensure that `name` is case sensitive.
class GitlabChangeCollationForTagNames < ActiveRecord::Migration
def up
if ActsAsTaggableOn::Utils.using_mysql?
execute("ALTER TABLE tags MODIFY name varchar(255) CHARACTER SET utf8 COLLATE utf8_bin;")
end
end
end