Добавление данных в миграцию в рельсах - PullRequest
2 голосов
/ 08 февраля 2011

Мои данные, кажется, не загружаются, когда я выполняю миграцию с ruby ​​на рельсах.

Может кто-нибудь увидеть проблему?

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

источник модели:

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

После, я делаю rake db:migrate.

Спасибо!

1 Ответ

5 голосов
/ 08 февраля 2011

Сделайте это прямо перед Ad.create:

Ad.reset_column_information
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...