Created
July 7, 2010 13:54
-
-
Save solnic/466722 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 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