Sha256: 487ee220e0990e60760c6100ff3835be1c2c519b11c6203a07e1774156e2c79b
Contents?: true
Size: 473 Bytes
Versions: 2
Compression:
Stored size: 473 Bytes
Contents
module DataMapper # :nodoc: module MigrationRunner # :nodoc: def reset! @@migrations = [] end end end module SQL # :nodoc: class TableCreator # :nodoc: class Column # :nodoc: def build_type(type_class) schema = {:name => @name, :quote_column_name => quoted_name}.merge(@opts) schema = @adapter.class.type_map[type_class].merge(schema) @adapter.property_schema_statement(schema) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mack-data_mapper-0.6.0 | lib/dm_patches/migrations.rb |
mack-data_mapper-0.6.0.1 | lib/dm_patches/migrations.rb |