spec/db/schema.rb in dump-1.0.7 vs spec/db/schema.rb in dump-1.0.8
- old
+ new
@@ -2,6 +2,12 @@
create_table :chickens, :force => true do |t|
%w[string text integer float decimal datetime timestamp time date binary boolean].each do |type|
t.column "#{type}_col", type
end
end
+
+ create_table :another_chickens, :force => true do |t|
+ %w[string text decimal datetime timestamp date ].each do |type|
+ t.column "#{type}_col", type
+ end
+ end
end