Am using SimpleAuth and its obviously added Profile details which I want too use...
I want to predefine some fields and set whether they are required and what not...
The way I was thinking of doing this was using an array which I store in my Model_User which I can set some basic settings for...
Is this a good idea? Or should I approach it from a different way?
I have a Model_User and Model_Profile. My user model is where I store the password, email, login stuff. I try to really only query that table for login info then a more basic Model_Profile that is basically just a user id, name, and things along those lines.