Skip to content

Instantly share code, notes, and snippets.

@pathsny
Created September 1, 2010 20:57
Show Gist options
  • Save pathsny/561357 to your computer and use it in GitHub Desktop.
Save pathsny/561357 to your computer and use it in GitHub Desktop.
class Foo
include DataMapper::Resource
property :id, Serial
property :external_id, UUID
end
Foo.auto_migrate!
f = Foo.create
f.external_id = UUIDTools::UUID.random_create
f.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment