Hi all,
How do you create a data-only migration for my User model that adds a password salt and encrypted password to the Users table?
Also, my model validates the equivalence of :password and :password_confirmation, neither of which are columns in the Users table. I need my data-only migration to either bypasses the validation or pass it. How do I do this?
Thanks!
Steven.