ActiveModel::MissingAttributeError: can't write unknown attribute `ad_id' with FactoryGirl

后端 未结 4 699
抹茶落季
抹茶落季 2021-01-03 18:06

I have the following models:

class Ad < ActiveRecord::Base
  belongs_to :page

  has_one :image
  has_one :logo
end

class Page < ActiveRecord::Base
           


        
4条回答
  •  北海茫月
    2021-01-03 18:19

    Check your test database.

    In my case, sometimes I did not modify the columns in the test database after modifying the development database after an incorrect migration.

提交回复
热议问题