Created
June 5, 2010 11:23
-
-
Save ku1ik/426546 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
require "bundler" | |
Bundler.setup | |
require "dm-core" | |
require "dm-types" | |
require "dm-migrations" | |
DataMapper.setup(:default, "mysql://localhost/test") | |
class User | |
include DataMapper::Resource | |
property :id, Serial | |
property :status, Enum, :flags => [:new, :old], :default => :new | |
auto_migrate! # BOOM! "Invalid default value for 'status' (DataObjects::SQLError)" | |
# same for Flag | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment