Skip to content

Instantly share code, notes, and snippets.

@myabc
Forked from robbielamb/gist:239606
Created November 20, 2009 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myabc/239613 to your computer and use it in GitHub Desktop.
Save myabc/239613 to your computer and use it in GitHub Desktop.
require "rubygems"
require "dm-core"
require "dm-migrations"
DataMapper.setup(:default, "mysql://test:@localhost/test")
class Circle
include DataMapper::Resource
property :id, Serial
property :radius, Integer
end
# Dies Here
Circle.auto_migrate!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment