Im trying to set up my app to work with authlogic.. the thing is, other than the fields authlogic is supposed to use I want to keep in my database other attributes
Like Name, Last Name, PIN, etc… is there a way to do this?
Im trying to set up my app to work with authlogic.. the thing is,
Share
You say “keep” – do you mean you have an existing database of users and you want to keep this info as you migrate to AuthLogic, or do you mean you just want to store this additional info?
Either way is possible but I’m going to assume you mean that you just want to store additional information – all you have to do is
script/generate migration AddFieldsToUserthen edit the migration:Then run
rake db:migrate