I\'m trying to add a name attribute to the User model provided by Devise. I added a \"name\" column to my database, and changed the sign up view so that it asks for the use
uncomment some of the generated code:
class Users::RegistrationsController < Devise::RegistrationsController before_filter :configure_sign_up_params, only: [:create] protected def configure_sign_up_params devise_parameter_sanitizer.for(:sign_up) << :name end end