Rails4 で Utf8mb4 にしたい話
自分用のメモ
/etc/my.cnf
1 2 3 4 5 6 7 8 |
|
$RAILS_ROOT/config/database.yml
default に追加
1 2 3 |
|
ridgepole の Schemafile
create_table :news, force: true, id: :bigint, options: “ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC” do |t| blahblah… end
参考
http://blog.arith-metic.jp/category/rails http://yamacent.hatenablog.com/entry/2015/06/06/235900