Skip to content

Instantly share code, notes, and snippets.

@jcbozonier
Created October 26, 2010 19:55
Show Gist options
  • Save jcbozonier/647644 to your computer and use it in GitHub Desktop.
Save jcbozonier/647644 to your computer and use it in GitHub Desktop.
All the SQL I need to write using Sinatra + DataMapper so far... :)
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