Skip to content

Instantly share code, notes, and snippets.

@ignu
Created January 12, 2010 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ignu/274868 to your computer and use it in GitHub Desktop.
Save ignu/274868 to your computer and use it in GitHub Desktop.
class Goal
include DataMapper::Resource
property :id, Serial
property :name, String
has n, :targeting_goals
end
class TargetingGoal
include DataMapper::Resource
property :id, Serial
property :description, String
belongs_to :goal
belongs_to :campaign
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment