Created
October 26, 2010 19:55
-
-
Save jcbozonier/647644 to your computer and use it in GitHub Desktop.
All the SQL I need to write using Sinatra + DataMapper so far... :)
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 User | |
include DataMapper::Resource | |
property :id, Serial | |
property :email, String | |
property :password, Text | |
property :income, Decimal | |
has n, :monthly_bills | |
end | |
class MonthlyBill | |
include DataMapper::Resource | |
property :id, Serial | |
property :amount, Decimal | |
property :day, Integer | |
property :description, String | |
belongs_to :user | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment