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.

After creating a new record an saving i can not get the id of the record.

# /var/www# rails g model Foo name:string
      invoke  active_record
      create    db/migrate/20120904030554_create_foos.rb
      create    app/models/foo.rb
      invoke    test_unit
      create      test/unit/foo_test.rb
      create      test/fixtures/foos.yml
# /var/www# rake db:migrate
==  CreateFoos: migrating =====================================================
-- create_table(:foos)
   -> 0.3451s
==  CreateFoos: migrated (0.3452s) ============================================

# /var/www# rails c
Loading development environment (Rails 3.2.8)
1.9.3p194 :001 > foo = Foo.new(:name => 'bar')
 => #<Foo id: nil, name: "bar", created_at: nil, updated_at: nil> 
1.9.3p194 :002 > foo.save
   (0.2ms)  BEGIN
  SQL (0.4ms)  INSERT INTO `foos` (`created_at`, `name`, `updated_at`) VALUES ('2012-09-04 03:06:26', 'bar', '2012-09-04 03:06:26')
   (103.2ms)  COMMIT
 => true 
1.9.3p194 :004 > Foo.last
  Foo Load (0.5ms)  SELECT `foos`.* FROM `foos` ORDER BY `foos`.`id` DESC LIMIT 1
 => #<Foo id: 1, name: "bar", created_at: "2012-09-04 03:06:26", updated_at: "2012-09-04 03:06:26"> 
1.9.3p194 :003 > foo.inspect
 => "#<Foo id: nil, name: \"bar\", created_at: \"2012-09-04 03:06:26\", updated_at: \"2012-09-04 03:06:26\">" 

This only seems to be a problem in my application. I have done the same on a fresh rails new foo application and the id shows up.

How can this happen?

share|improve this question
possible duplicate of Howto get new model id after @model.save – Frederick Cheung Sep 3 '12 at 8:19
actually it's really weird you have the updated timestamps shown, but no id present. Could you please show your model Unit? – alony Sep 3 '12 at 8:29
Did you create table with migrations? – Emrah Sep 3 '12 at 8:55
Frederick: i have added a new question because this seems to be the main problem of the question you mentioned and i wanted to isolate this issue. Will reference if this is solved. – tonymarschall Sep 3 '12 at 9:09
alony, emraht: i have added model and migrations code – tonymarschall Sep 3 '12 at 9:09
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.