created a new rails db migration for renaming a set of columns including one with blob format. when running the migration the following error occurs and the migration is canceled:
SQLite3::SQLException: unrecognized token: "'Salted__��v�/JB���*}�]��+Ai��x��w=9yǚ�...
the migration:
...
rename_column :users, :private_key, :encrypted_private_key
...
as far as I know when a column is renamed, there is a temporary table created. to me it looks like there's a problem when creating this temporary table.
is there any way to rename a blob column ?
Rails 4.2.0, Activerecord 4.2.0