Mysql2::Error: Specified key was too long; max key length is 767 bytesを解決する
現象
utf8mb4のカラム(name
)に対してindexをはるときにエラーになってしまった
...
-- add_index("posts", ["name"], {:name=>"name_index"})
[ERROR] Mysql2::Error: Specified key was too long; max key length is 767 bytes: CREATE INDEX `name_index` ON `posts` (`name`)
...
このあたりの記事を見ると、いろんな方法があるみたい
- MySQL(InnoDB) で "Index column size too large. The maximum column size is 767 bytes." いわれるときの対策 - かみぽわーる
- Mysql2::Error: Specified key was too long; max key length is 767 bytes: CREATE UNIQUE INDEX - リア充爆発日記
- Mysql2::Error: Specified key was too long; max key length is 767 bytes limit – hello-world.jp.net
対応
今回はcnfを書き換えてDBごと対応することにします。
cnfファイルの場所はmysql --help | grep my.cnf
などで調べます
/usr/local/etc/my.cnf
...
innodb_file_format = Barracuda
innodb_file_per_table = 1
innodb_large_prefix
homebrewでインストールした[email protected]を使っていたのでbrew services
コマンドで再起動。
brew services restart [email protected]
以上です
Author And Source
この問題について(Mysql2::Error: Specified key was too long; max key length is 767 bytesを解決する), 我々は、より多くの情報をここで見つけました https://qiita.com/paranishian/items/06d095fca2f6253b7989著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .