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.

My data seems to be not loading when I do a migration with ruby on rails.

Can anyone see the problem?

class CreateAds < ActiveRecord::Migration
  def self.up
    create_table :ads do |t|
      t.string :title
      t.string :description
      t.string :image
      t.integer :price
      t.string :featured
      t.string :state
      t.string :zipcode
      t.boolean :is_public
      t.boolean :is_activated
      t.timestamp :expires_at
      t.float :longitude
      t.float :latitude

      t.timestamps
    end
    Ad.create  :title => "notice"
  end

model source:

class Ad < ActiveRecord::Base
    has_many :categories
    belongs_to :user
end

After, I do rake db:migrate.

Thanks!

share|improve this question
2  
Are there any validations setup for the model that it could be failing during the create? – HBlend Feb 8 '11 at 3:18
1  
Any validations or such on the model? – macarthy Feb 8 '11 at 3:21
1  
What does the model's source look like? What happens if you Ad.reset_column_information before Ad.create? – mu is too short Feb 8 '11 at 3:31
model source: class Ad < ActiveRecord::Base has_many :categories belongs_to :user end – Cedric Dugas Feb 8 '11 at 12:35

1 Answer

up vote 4 down vote accepted

Do this right before Ad.create:

Ad.reset_column_information
share|improve this answer
I still have problems, it worked the first time, now, not so much, it might have something to do with the fact that I deleted rows in the database? anyway, seeds.rb works well, I will use that, thanks – Cedric Dugas Feb 8 '11 at 13:02

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.