Мои данные, кажется, не загружаются, когда я выполняю миграцию с 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
.
Спасибо!