> > I have to REMOVE (Comment out) the following from the migration file for > the $ rake db:migrate to work: > > t.registerable > t.validatable > > Is that anything to do with Rails3.0.0.rc which I'm using? > > The 1.1 branch of devise doesn't have those strategies as far as I'm aware. Here's the github page: http://github.com/plataformatec/devise
What I'm seeing in terms of AR migration strategies on the 1.1 branch are the following: t.database_authenticatable t.recoverable t.renemberable t.trackable t.confirmable t.lockable t.token_authenticatable Whatever guide you are following might be using the 1.0.X branch of devise which is intended for rails 2.3.2+. There have been some relatively large changes between the 1.0.X branch and the 1.1.X branch. -Patrick Robertson On Sun, Aug 8, 2010 at 6:56 PM, Abder-Rahman Ali <[email protected]>wrote: > I have to REMOVE (Comment out) the following from the migration file for > the $ rake db:migrate to work: > > t.registerable > t.validatable > > Is that anything to do with Rails3.0.0.rc which I'm using? > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<rubyonrails-talk%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

