[Rails] ActiveRecord::ValueTooLong (Mysql2::Error: Data too long for column 'content' at row 1):
なぜこのエラーが出たか
データ型の文字制限を超えた情報をDBに格納しようとしたから。
解決方法
データ型を変えることにした
- t.string "content"
+ t.text "content"
migrateした後は、DBにしっかり格納された。
補足:
limitオプションでも条件を変えることができる。
Author And Source
この問題について([Rails] ActiveRecord::ValueTooLong (Mysql2::Error: Data too long for column 'content' at row 1):), 我々は、より多くの情報をここで見つけました https://qiita.com/kazumawada/items/8b70f386a013a36d01bf著者帰属:元の著者の情報は、元の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 .