Skip to content

Instantly share code, notes, and snippets.

@jonuts
Created June 14, 2010 14:21
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 jonuts/437741 to your computer and use it in GitHub Desktop.
Save jonuts/437741 to your computer and use it in GitHub Desktop.
require 'dm-core'
require 'dm-types'
require 'dm-migrations'
DataMapper.setup :default, "mysql://localhost/test_db"
class Foo
include DataMapper::Resource
property :id, Serial
property :hello, Enum[:lol,:wut], :default => :lol
end
Foo.auto_migrate!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment