Mysql::Error: Incorrect string value: '\xE7\x94\xB7' for column 'gender' . 在 migration 文件中修改某一列字符集编码如何书写?
class Xxx < ActiveRecord::Migration def up execute "ALTER TABLE....." end def down execute "ALTER TABLE..." end end
#1 楼 @huobazi 好的,一直在找固定用法,这样有数据库基础直接执行 execute 就方便多了