LoginSignup
0
0

More than 3 years have passed since last update.

[Rails] ActiveRecord::ValueTooLong (Mysql2::Error: Data too long for column 'content' at row 1):

Last updated at Posted at 2021-04-03

なぜこのエラーが出たか

データ型の文字制限を超えた情報をDBに格納しようとしたから。

解決方法

データ型を変えることにした

    - t.string "content"
    + t.text "content"

migrateした後は、DBにしっかり格納された。

補足:
limitオプションでも条件を変えることができる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0