Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just forgot how to do this and cannot find a helpful tutorial on the internet.

It is possible to setup a db table and then to fill it with data within the migration.

So I got my db "persons" with t.column :name => :string and want to add a person after the dbs creation. It was something like Person.add :name => "Nobody"... But I forgot how the method is called exactly.

Can you help me?

Thanks,

yours

Joern.

share|improve this question

2 Answers

up vote 0 down vote accepted

Try this .. Person.create(:name => 'nobody')

share|improve this answer
that was exactly what I was looking for... such a simple question but when you just forgot the methods name....... – Joern Akkermann Mar 14 '11 at 13:18
2  
If this is your answer than mark it as your answer. – krunal shah Mar 14 '11 at 13:20

Try to use krunal shah's sample in seed.rb. Then run rake task rake db:seed

share|improve this answer
it works in self.up... then first the table creation and under this Person.create.... – Joern Akkermann Mar 14 '11 at 13:48

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.