レールに対してrakedb:migrateを実行していましたが、次のエラーで失敗しました。
== AddColumnsToSavedSearch: migrating ========================================
-- add_column(:saved_searches, :search_param1, :string, {:limit=>1000})
-> 0.0574s
-- add_column(:saved_searches, :search_param2, :string, {:limit=>1000})
rake aborted!
An error has occurred, all later migrations canceled:
Mysql2::Error: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. You have to change some columns to TEXT or BLOBs: ALTER TABLE `saved_searches` ADD `search_param2` varchar(1000)
この移行は、同じ構成(同じOSとDB)を持つ他のシステムで正常に実行されます。
私のMySQLDBバージョンはサーバーバージョン:5.5.24-0ubuntu0.12.04.1(Ubuntu)です。
どんな助けでも大歓迎です。
何か情報が必要な場合はお知らせください。
ありがとう