Generalize the Budget::Investment::Milestone model to a polymorphic Milestone model so it can be used for entities other than Budget::Investment.
8 lines
144 B
Ruby
8 lines
144 B
Ruby
module Milestoneable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_many :milestones, as: :milestoneable, dependent: :destroy
|
|
end
|
|
end
|