diff --git a/db/migrate/20150106050733_set_mysql_to_unicode_mb4.rb b/db/migrate/20150106050733_set_mysql_to_unicode_mb4.rb index 9495e7f80d2f7b3ede9974ca1d950c07d5d87528..0f5181eb212893a18f59dddfa05e2dbe7d7b2020 100644 --- a/db/migrate/20150106050733_set_mysql_to_unicode_mb4.rb +++ b/db/migrate/20150106050733_set_mysql_to_unicode_mb4.rb @@ -25,24 +25,8 @@ class SetMysqlToUnicodeMb4 < ActiveRecord::Migration execute "ALTER DATABASE `#{ActiveRecord::Base.connection.current_database}` CHARACTER SET #{encoding} COLLATE #{collation};" tables.each do |table| - execute "ALTER TABLE `#{table}` CHARACTER SET = #{encoding} COLLATE #{collation}" + execute "ALTER TABLE `#{table}` CONVERT TO CHARACTER SET #{encoding} COLLATE #{collation}" end - - character_columns.each do |table, columns| - columns.each do |column| - execute "ALTER TABLE `#{table}` CHANGE `#{column.name}` `#{column.name}` #{column.sql_type} CHARACTER SET #{encoding} COLLATE #{collation} #{column.null ? 'NULL' : 'NOT NULL'} #{"DEFAULT '#{column.default}'" if column.has_default?};" - end - end - end - - def character_columns - # build a hash with all the columns that contain characters - @character_columns ||= Hash[tables.map {|table| - col = columns(table) - .select {|column| column.type == :string || column.type == :text } - next if col.empty? - [table, col] - }.compact] end def shorten_indexes