Skip to content

Instantly share code, notes, and snippets.

@ahawkins
Created June 27, 2012 10:17
Show Gist options
  • Save ahawkins/3003157 to your computer and use it in GitHub Desktop.
Save ahawkins/3003157 to your computer and use it in GitHub Desktop.
class Activity
belongs_to :reference, :polymorphic => true
end
class Campaign
has_many :activities, :as => :reference
end
# Example
Activity.scoped.campaigns # return all the campaigns in this set of activities
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment