I have been messing around with how it will be best for my new application to represent the users table in the database.
I noticed a migration named like this:
20110512234640_devise_create_users.rb
Is that something that Device creates upon its install? Or can I just use a simpler users table migration that I’d write by hand?
How do people usually configure Devise and still be able to add on extra columns to the users table which their particular applications might need?
Thanks,
Alex
Usually you can create on more migration to add your own fields to Devise used table (this is to keep devise migration clear and simple)