I have a rails application running on production mode, but all of the sudden this error came up today when a user tried to save a record.
Also, if you don't want to do changes in your database structure, you could opt by serializing the field in question.
class MyModel < ActiveRecord::Base serialize :content attr_accessible :content, :title end