Re: [Rails] undefined method `seed'

2011-11-09 Thread Rameshwar Vyevhare
Pls try out this heroku:rake:db:seed On 08/11/11 3:16 AM, slava mikerin.sl...@gmail.com wrote: hello, I am trying to deploy a rails 3.1 app to Heroku and need to run db:seed My seeds file has this code User.seed do |s| s.email = t...@temp.com s.password = bigsecret

Re: [Rails] undefined method `seed'

2011-11-09 Thread Rameshwar Vyevhare
Opps my mistake try out this heroku rake db:seed On 09/11/11 10:36 AM, Rameshwar Vyevhare ramesh...@retailrealm.co.uk wrote: Pls try out this heroku:rake:db:seed On 08/11/11 3:16 AM, slava mikerin.sl...@gmail.com wrote: hello, I am trying to deploy a rails 3.1 app to Heroku and need to run

Re: [Rails] undefined method `seed'

2011-11-09 Thread Slava Mikerin
heroku:rake:db:seed command does not exist. Are you sure about this sintax? On Tue, Nov 8, 2011 at 9:06 PM, Rameshwar Vyevhare ramesh...@retailrealm.co.uk wrote: Pls try out this  heroku:rake:db:seed On 08/11/11 3:16 AM, slava mikerin.sl...@gmail.com wrote: hello, I am trying to deploy a

Re: [Rails] undefined method `seed'

2011-11-09 Thread Slava Mikerin
I did. This is the code that has problems, that I described in first post. Running heroku rake db:seed is what caused the problem in the first place. On Tue, Nov 8, 2011 at 9:08 PM, Rameshwar Vyevhare ramesh...@retailrealm.co.uk wrote: Opps my mistake try out this heroku rake db:seed On

[Rails] undefined method `seed'

2011-11-07 Thread slava
hello, I am trying to deploy a rails 3.1 app to Heroku and need to run db:seed My seeds file has this code User.seed do |s| s.email = t...@temp.com s.password = bigsecret s.password_confirmation = bigsecret end Running rake db:seed locally works fine, but after deployment to Heroku I try