lib/ridgepole/dsl_parser.rb in ridgepole-0.4.2 vs lib/ridgepole/dsl_parser.rb in ridgepole-0.4.3

- old
+ new

@@ -37,10 +37,10 @@ column_names.each {|name| column(name, column_type, options) } end end def timestamps(*args) - options = { :null => false }.merge(args.extract_options!) + options = {:null => false}.merge(args.extract_options!) column(:created_at, :datetime, options.dup) column(:updated_at, :datetime, options.dup) end def references(*args)