【发布时间】:2018-05-14 07:47:00
【问题描述】:
我收到了弃用警告:
弃用警告:Contact.belongs_to :customer 声明中的以下选项已弃用::conditions。请改用范围块。例如:
has_many :spam_comments, conditions: { spam: true }, class_name: 'Comment'
应该改写如下:
has_many :spam_comments, -> { where spam: true }, class_name: 'Comment'
这是带有 :condition 的行
belongs_to :customer, foreign_key: 'contactable_id',\
conditions: "contacts.contactable_type = 'Customer'"
我只是尝试了一些变体,但无法修复。也许我错过了什么
【问题讨论】:
标签: ruby-on-rails ruby-on-rails-4 deprecation-warning