1
2
3
4
5
6
7
8
9
|
require_dependency 'delivery_plugin/option'
class DeliveryPlugin::Option
belongs_to :cycle, -> {
where "delivery_plugin_options.owner_type = 'OrdersCyclePlugin::Cycle'"
}, class_name: 'OrdersCyclePlugin::Cycle', foreign_key: :owner_id
end
|