PG::StringDataRightTruncation: ERROR: PostgreSQL string(255) limit | Heroku

前端 未结 3 1537
名媛妹妹
名媛妹妹 2020-12-15 21:06

I Have a Listings controller and users can add a description. If the description is long, which it should be, I receive this error in Heroku:

A         


        
3条回答
  •  鱼传尺愫
    2020-12-15 21:28

    The input given is too long for a string field, so just change to a text field:

    class ChangeListingsDescriptionTypeToText < ActiveRecord::Migration
      def change
        change_column :listings, :description, :text
      end
    end
    

    Then run rake db:migrate

提交回复
热议问题