I have a rails 5 app that is an API, I am getting this error:
It was working fine before I added the gem.
ActiveRecord::StatementInvalid (Mysql2::Error: Unknown column 'disclosure_forms.name' in 'where clause': SELECT `disclosure_forms`.* FROM `disclosure_forms` WHERE `disclosure_forms`.`name` = 'Chris Habgood' LIMIT 1):
I *really* enjoyed this screencast, and can't wait to try out this gem on my next app! Keep up the good work and thanks again!
Hi there,
thanks a lot for the great series, especially for this episode, which lead me to trying out this gem.
With my tests, I am running into problems. I am trying out to encrypt the safeword of my user model.
The new standard of attr_encrypted needs an iv_column for the encrypted field. So my fixtures like:
fail with a "table "user" has no column named "safeword"" error.
I would like to replace "safeword" with
But how to I set the required "encrypted_safeword_iv" field? How do I calculate the iv value?
Any help is very appreciated!
Thanks a lot!
Cheers,
Volker