I've created a simple webapp with user authentication. I've made two models: Users
for user authentication and Details
for additional user details. They are associated with one-to-one
relationship. I'm having problems with updating two models from the same controller.
Is one-to-one
association recommended at all in this case (I'm not willing to shove too many fields in one table), and if so, what is the proper way of handling two models via one controller?