мое приложение не работает после обновления Rails с 5.1 до 5.2
Ошибка: Relation passed to #or must be structurally compatible, Incompatible values: [:create_with]):
, и я не могу понять, что не так.
Проблема связана с этой областью
scope :publication, -> do
where.not(type: 'Content::Teaser').
where.not(home_position: nil).
or(
Content::Teaser.where(
id: Content::Teaser.select(:id).joins(:content).where(content: Content.publication)
)
)
end
Почему эта ошибка?