Created
January 12, 2010 03:27
-
-
Save ignu/274868 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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