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

I have already created a User Model using devise, but I now want to add support for token_authenticable, so I need to migrate these additions. Is the following correct, and what type should token_authenticatable be?

class AddAuthenticationTokenToUser < ActiveRecord::Migration

  def change

    add_column :users, :token_authenticatable
    add_index  :users, :authentication_token, :unique => true

  end

end
share|improve this question

2 Answers

up vote 10 down vote accepted

From the devise 2.0 generator (line 74) on Github:

# t.string :authentication_token

If you are going to be looking up a user based on their token, then adding an index is a good idea.

Here is the devise 1.5 file

share|improve this answer
Thanks for the links. – Pedr Jan 12 '12 at 21:04
add_column :users, :token_authenticatable, :string

Don't forget to add devise :token_authenticatable to your user model.

share|improve this answer
Thanks. Much appreciated. – Pedr Jan 12 '12 at 21:03
2  
This schema style was changed in devise 2.0. The column name should be authentication_token. github.com/plataformatec/devise/wiki/… – thedeeno Feb 28 at 17:37

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.