Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 user's name:

<h2>Sign up</h2>

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>

  <p><%= f.label :name %><br />
  <%= f.text_field :name %></p>

  <p><%= f.label :email %><br />
  <%= f.email_field :email %></p>

  <p><%= f.label :password %><br />
  <%= f.password_field :password %></p>

  <p><%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %></p>

  <p><%= f.submit "Sign up" %></p>
<% end %>

<%= render :partial => "devise/shared/links" %>

It lets me log in, but when I check the database after doing so, name: nil. Do I have to add something to Devise's User controller or something? Thanks!

share|improve this question
1  
Woludn't you also need to create a migration that adds "name" to the database table for User? – Sam Rose Dec 13 '11 at 19:45

3 Answers

up vote 15 down vote accepted

in your user model locate;

 attr_accessible :email, :password, :password_confirmation, :remember_me

and add :name on the end

share|improve this answer

Yes. Add :name to attr_accessible in User Model

share|improve this answer

if you want name verification do Go to your devise.rb in initializer directory and uncomment this line

# config.authentication_keys = [ :email ]

change the email attribute name else Add also include, :name to attr_accessible in User Model

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.