I\'m trying to migrate a ton of users from an old database. To do this, I\'m using activerecord-import and trying to save all my user data directly to DB (bypassing the User mo
An alternative method is: User.new.send(:password_digest, 'xxx')
User.new.send(:password_digest, 'xxx')