Skip to content

Instantly share code, notes, and snippets.

@solnic
Created July 7, 2010 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save solnic/466722 to your computer and use it in GitHub Desktop.
Save solnic/466722 to your computer and use it in GitHub Desktop.
class User
include DataMapper::Resource
property :id, Serial
property :name, String
property :age, Integer
property :created_at, DateTime
end
class User
include DataMapper::Resource
properties do
id Serial
name String
age Integer
created_at DateTime
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment