importable 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. data/README.md +5 -0
  2. data/lib/importable/mapper.rb +9 -1
  3. data/lib/importable/uploader.rb +1 -1
  4. data/lib/importable/version.rb +1 -1
  5. data/spec/dummy/db/test.sqlite3 +0 -0
  6. data/spec/dummy/log/test.log +781 -0
  7. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3595/foo_single_worksheet.xlsx +0 -0
  8. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3596/foo_multi_worksheet.xlsx +0 -0
  9. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3598/foo_multi_worksheet.xlsx +0 -0
  10. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3599/foo_multi_worksheet.xlsx +0 -0
  11. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3600/foo_multi_worksheet.xlsx +0 -0
  12. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3601/foo_multi_worksheet.xlsx +0 -0
  13. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3602/foo_multi_worksheet.xlsx +0 -0
  14. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3603/foo_multi_worksheet.xlsx +0 -0
  15. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3604/foo_multi_worksheet.xlsx +0 -0
  16. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3605/foo_multi_worksheet.xlsx +0 -0
  17. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3606/foo_multi_worksheet.xlsx +0 -0
  18. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3607/foo_multi_worksheet.xlsx +0 -0
  19. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3608/foo_multi_worksheet.xlsx +0 -0
  20. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3609/foo_multi_worksheet.xlsx +0 -0
  21. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3610/foo_multi_worksheet.xlsx +0 -0
  22. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3611/foo_multi_worksheet.xlsx +0 -0
  23. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3612/foo_multi_worksheet.xlsx +0 -0
  24. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3613/foo_multi_worksheet.xlsx +0 -0
  25. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3614/foo_single_worksheet.xlsx +0 -0
  26. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3615/foo_multi_worksheet.xlsx +0 -0
  27. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3616/foo_multi_worksheet.xlsx +0 -0
  28. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3617/foo_multi_worksheet.xlsx +0 -0
  29. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3618/foo_multi_worksheet.xlsx +0 -0
  30. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3619/foo_multi_worksheet.xlsx +0 -0
  31. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3620/foo_multi_worksheet.xlsx +0 -0
  32. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3621/foo_multi_worksheet.xlsx +0 -0
  33. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3622/foo_multi_worksheet.xlsx +0 -0
  34. data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo_required_field/3597/foo_multi_worksheet_required_field_invalid.xlsx +0 -0
  35. data/spec/lib/mapper_spec.rb +25 -0
  36. metadata +84 -30
  37. data/spec/dummy/tmp/pids/server.pid +0 -1
data/README.md CHANGED
@@ -39,6 +39,10 @@ Write an import mapper
39
39
 
40
40
  TODO
41
41
 
42
+ Import parameters
43
+
44
+ TODO
45
+
42
46
  Use the provided UI to import data
43
47
 
44
48
  TODO
@@ -56,3 +60,4 @@ Add support for other file types that roo supports
56
60
  Set gem versions with ~>
57
61
  Back button specs
58
62
  Figure out how to allow overriding map specific templates in app/views/importable/spreadsheets/foos rather than app/views/foos/importable/spreadsheets
63
+ Initializer for configuration, should allow setting the file upload path
@@ -8,7 +8,9 @@ module Importable
8
8
  @raw_data = data
9
9
  @invalid_objects = []
10
10
 
11
+ before_mapping
11
12
  map_to_objects!
13
+ after_mapping
12
14
  validate_objects!
13
15
  save_objects!
14
16
  end
@@ -27,7 +29,13 @@ module Importable
27
29
  end
28
30
  end
29
31
 
30
- def map_row(row)
32
+ def before_mapping
33
+ end
34
+
35
+ def after_mapping
36
+ end
37
+
38
+ def map_row
31
39
  raise NotImplementedError.new('map_row method must be overriden by mapper')
32
40
  end
33
41
 
@@ -7,7 +7,7 @@ module Importable
7
7
  end
8
8
 
9
9
  def store_dir
10
- "#{Rails.root}/uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.object_type}/#{model.id}"
10
+ "#{Rails.root}/tmp/uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.object_type}/#{model.id}"
11
11
  end
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module Importable
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
Binary file
@@ -100690,3 +100690,784 @@ Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.1ms)
100690
100690
  SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00]]
100691
100691
  SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00]]
100692
100692
  SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 22:53:33 UTC +00:00]]
100693
+
100694
+
100695
+ Started GET "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:30 -0400
100696
+ Processing by Importable::SpreadsheetsController#new as HTML
100697
+ Parameters: {"type"=>"foo"}
100698
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (1.4ms)
100699
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.4ms)
100700
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.7ms)
100701
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (9.8ms)
100702
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/new.html.erb within layouts/application (84.4ms)
100703
+ Completed 200 OK in 142ms (Views: 134.5ms | ActiveRecord: 0.0ms)
100704
+
100705
+
100706
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100707
+ Processing by Importable::SpreadsheetsController#create as HTML
100708
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x0000010359c5f0 @original_filename="foo_single_worksheet.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_single_worksheet.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 26577\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-6nhh3c>>, "current_step"=>"upload_file", "return_to"=>"import", "commit"=>"Upload", "type"=>"foo"}
100709
+ SQL (47.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100710
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100711
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100712
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100713
+ SQL (1.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100714
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100715
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100716
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100717
+ SQL (0.2ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_single_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100718
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100719
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100720
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100721
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100722
+ Redirected to http://www.example.com/importable/foo
100723
+ Completed 302 Found in 173ms
100724
+
100725
+
100726
+ Started GET "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100727
+ Processing by Importable::SpreadsheetsController#new as HTML
100728
+ Parameters: {"type"=>"foo"}
100729
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100730
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100731
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100732
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.0ms)
100733
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/new.html.erb within layouts/application (2.4ms)
100734
+ Completed 200 OK in 7ms (Views: 3.7ms | ActiveRecord: 0.0ms)
100735
+
100736
+
100737
+ Started GET "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100738
+ Processing by Importable::SpreadsheetsController#new as HTML
100739
+ Parameters: {"type"=>"foo"}
100740
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100741
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100742
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100743
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.0ms)
100744
+ Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 0.0ms)
100745
+
100746
+
100747
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100748
+ Processing by Importable::SpreadsheetsController#create as HTML
100749
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000104bcc1b8 @original_filename="foo_multi_worksheet.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_multi_worksheet.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 27552\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-e5midq>>, "current_step"=>"upload_file", "return_to"=>"import", "commit"=>"Upload", "type"=>"foo"}
100750
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100751
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100752
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100753
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.3ms)
100754
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_choose_worksheet_step.html.erb (3.3ms)
100755
+ Completed 200 OK in 65ms (Views: 5.8ms | ActiveRecord: 0.4ms)
100756
+
100757
+
100758
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100759
+ Processing by Importable::SpreadsheetsController#create as HTML
100760
+ Parameters: {"utf8"=>"✓", "default_sheet"=>"1", "spreadsheet_id"=>"3596", "current_step"=>"choose_worksheet", "return_to"=>"import", "commit"=>"Continue", "type"=>"foo"}
100761
+ Importable::Spreadsheet Load (0.2ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3596"]]
100762
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100763
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100764
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100765
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100766
+ SQL (1.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100767
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100768
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100769
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100770
+ Redirected to http://www.example.com/importable/foo
100771
+ Completed 302 Found in 35ms
100772
+
100773
+
100774
+ Started GET "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100775
+ Processing by Importable::SpreadsheetsController#new as HTML
100776
+ Parameters: {"type"=>"foo"}
100777
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100778
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100779
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100780
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.1ms)
100781
+ Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.0ms)
100782
+
100783
+
100784
+ Started GET "/importable/foo_required_field" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100785
+ Processing by Importable::SpreadsheetsController#new as HTML
100786
+ Parameters: {"type"=>"foo_required_field"}
100787
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100788
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100789
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100790
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.1ms)
100791
+ Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.0ms)
100792
+
100793
+
100794
+ Started POST "/importable/foo_required_field" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100795
+ Processing by Importable::SpreadsheetsController#create as HTML
100796
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x000001036ef290 @original_filename="foo_required_field_invalid.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_required_field_invalid.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 25558\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-cvhcfg>>, "current_step"=>"upload_file", "return_to"=>"import", "commit"=>"Upload", "type"=>"foo_required_field"}
100797
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (1.9ms)
100798
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100799
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100800
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (4.1ms)
100801
+ Completed 200 OK in 29ms (Views: 6.0ms | ActiveRecord: 0.3ms)
100802
+
100803
+
100804
+ Started GET "/importable/foo_required_field" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100805
+ Processing by Importable::SpreadsheetsController#new as HTML
100806
+ Parameters: {"type"=>"foo_required_field"}
100807
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100808
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100809
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100810
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (1.9ms)
100811
+ Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 0.0ms)
100812
+
100813
+
100814
+ Started POST "/importable/foo_required_field" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100815
+ Processing by Importable::SpreadsheetsController#create as HTML
100816
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x000001029aa6e8 @original_filename="foo_multi_worksheet_required_field_invalid.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_multi_worksheet_required_field_invalid.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 26462\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-1v72ut2>>, "current_step"=>"upload_file", "return_to"=>"import", "commit"=>"Upload", "type"=>"foo_required_field"}
100817
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_multi_worksheet_required_field_invalid.xlsx"], ["object_type", "foo_required_field"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100818
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100819
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100820
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.3ms)
100821
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_choose_worksheet_step.html.erb (3.9ms)
100822
+ Completed 200 OK in 65ms (Views: 5.8ms | ActiveRecord: 0.4ms)
100823
+
100824
+
100825
+ Started POST "/importable/foo_required_field" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100826
+ Processing by Importable::SpreadsheetsController#create as HTML
100827
+ Parameters: {"utf8"=>"✓", "default_sheet"=>"0", "spreadsheet_id"=>"3597", "current_step"=>"choose_worksheet", "return_to"=>"import", "commit"=>"Continue", "type"=>"foo_required_field"}
100828
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3597"]]
100829
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (1.1ms)
100830
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100831
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100832
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (3.3ms)
100833
+ Completed 200 OK in 19ms (Views: 5.1ms | ActiveRecord: 0.1ms)
100834
+
100835
+
100836
+ Started GET "/importable/foo?return_to=index" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100837
+ Processing by Importable::SpreadsheetsController#new as HTML
100838
+ Parameters: {"return_to"=>"index", "type"=>"foo"}
100839
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100840
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100841
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100842
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.3ms)
100843
+ Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms)
100844
+
100845
+
100846
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100847
+ Processing by Importable::SpreadsheetsController#create as HTML
100848
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000102b6d778 @original_filename="foo_multi_worksheet.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_multi_worksheet.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 27552\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-1cqf9zi>>, "current_step"=>"upload_file", "return_to"=>"index", "commit"=>"Upload", "type"=>"foo"}
100849
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100850
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.1ms)
100851
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100852
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.3ms)
100853
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_choose_worksheet_step.html.erb (2.8ms)
100854
+ Completed 200 OK in 27ms (Views: 5.8ms | ActiveRecord: 0.4ms)
100855
+
100856
+
100857
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100858
+ Processing by Importable::SpreadsheetsController#create as HTML
100859
+ Parameters: {"utf8"=>"✓", "default_sheet"=>"0", "spreadsheet_id"=>"3598", "current_step"=>"choose_worksheet", "return_to"=>"index", "commit"=>"Continue", "type"=>"foo"}
100860
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3598"]]
100861
+ SQL (1.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100862
+ SQL (1.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100863
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100864
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100865
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100866
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100867
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100868
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100869
+ Redirected to http://www.example.com/foos
100870
+ Completed 302 Found in 45ms
100871
+
100872
+
100873
+ Started GET "/foos" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100874
+ Processing by FoosController#index as HTML
100875
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
100876
+
100877
+
100878
+ Started GET "/importable/foo?return_to=import" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100879
+ Processing by Importable::SpreadsheetsController#new as HTML
100880
+ Parameters: {"return_to"=>"import", "type"=>"foo"}
100881
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.1ms)
100882
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100883
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100884
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.1ms)
100885
+ Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms)
100886
+
100887
+
100888
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100889
+ Processing by Importable::SpreadsheetsController#create as HTML
100890
+ Parameters: {"utf8"=>"✓", "file"=>#<ActionDispatch::Http::UploadedFile:0x00000101d9e2a0 @original_filename="foo_multi_worksheet.xlsx", @content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"foo_multi_worksheet.xlsx\"\r\nContent-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\r\nContent-Length: 27552\r\n", @tempfile=#<File:/var/folders/ef/efyWo2K6H3iqCQPrjpN61k+++TI/-Tmp-/RackMultipart20110922-13282-15zsk9m>>, "current_step"=>"upload_file", "return_to"=>"import", "commit"=>"Upload", "type"=>"foo"}
100891
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100892
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100893
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100894
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.3ms)
100895
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_choose_worksheet_step.html.erb (2.7ms)
100896
+ Completed 200 OK in 60ms (Views: 5.1ms | ActiveRecord: 0.4ms)
100897
+
100898
+
100899
+ Started POST "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100900
+ Processing by Importable::SpreadsheetsController#create as HTML
100901
+ Parameters: {"utf8"=>"✓", "default_sheet"=>"0", "spreadsheet_id"=>"3599", "current_step"=>"choose_worksheet", "return_to"=>"import", "commit"=>"Continue", "type"=>"foo"}
100902
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3599"]]
100903
+ SQL (1.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100904
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100905
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100906
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100907
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100908
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100909
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100910
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100911
+ Redirected to http://www.example.com/importable/foo
100912
+ Completed 302 Found in 35ms
100913
+
100914
+
100915
+ Started GET "/importable/foo" for 127.0.0.1 at 2011-09-22 19:25:31 -0400
100916
+ Processing by Importable::SpreadsheetsController#new as HTML
100917
+ Parameters: {"type"=>"foo"}
100918
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_errors.html.erb (0.0ms)
100919
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_extras.html.erb (0.0ms)
100920
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_actions.html.erb (0.2ms)
100921
+ Rendered /Users/mike/work/importable/app/views/importable/spreadsheets/_upload_file_step.html.erb (2.0ms)
100922
+ Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.0ms)
100923
+ Processing by Importable::SpreadsheetsController#new as HTML
100924
+ Parameters: {"type"=>"foo", "use_route"=>"importable"}
100925
+ Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
100926
+ Processing by Importable::SpreadsheetsController#new as HTML
100927
+ Parameters: {"type"=>"foo", "use_route"=>"importable"}
100928
+ Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
100929
+ Processing by Importable::SpreadsheetsController#new as HTML
100930
+ Parameters: {"type"=>"bar", "use_route"=>"importable"}
100931
+ Completed 500 Internal Server Error in 4ms
100932
+ Processing by Importable::SpreadsheetsController#new as HTML
100933
+ Parameters: {"type"=>"foo", "use_route"=>"importable"}
100934
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.0ms)
100935
+ Processing by Importable::SpreadsheetsController#new as HTML
100936
+ Parameters: {"type"=>"moof", "use_route"=>"importable"}
100937
+ Completed 200 OK in 6ms (Views: 1.8ms | ActiveRecord: 0.0ms)
100938
+ Processing by Importable::SpreadsheetsController#create as HTML
100939
+ Parameters: {"type"=>"foo", "current_step"=>"upload_file", "use_route"=>"importable"}
100940
+ SQL (0.5ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:31 UTC +00:00]]
100941
+ Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.5ms)
100942
+ Processing by Importable::SpreadsheetsController#create as HTML
100943
+ Parameters: {"import_params"=>{"moof"=>"1"}, "type"=>"foo", "current_step"=>"upload_file", "use_route"=>"importable"}
100944
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100945
+ Completed 200 OK in 18ms (Views: 1.7ms | ActiveRecord: 0.3ms)
100946
+ Processing by Importable::SpreadsheetsController#create as HTML
100947
+ Parameters: {"type"=>"foo", "current_step"=>"upload_file", "use_route"=>"importable"}
100948
+ SQL (0.5ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100949
+ Completed 200 OK in 62ms (Views: 1.6ms | ActiveRecord: 0.5ms)
100950
+ Processing by Importable::SpreadsheetsController#create as HTML
100951
+ Parameters: {"type"=>"foo", "current_step"=>"upload_file", "use_route"=>"importable"}
100952
+ Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 0.0ms)
100953
+ Processing by Importable::SpreadsheetsController#create as HTML
100954
+ Parameters: {"type"=>"foo", "current_step"=>"upload_file", "use_route"=>"importable"}
100955
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100956
+ Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 0.4ms)
100957
+ SQL (0.8ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100958
+ Processing by Importable::SpreadsheetsController#create as HTML
100959
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3604", "use_route"=>"importable"}
100960
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3604"]]
100961
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100962
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100963
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100964
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100965
+ Redirected to http://test.host/importable/foo/3604
100966
+ Completed 302 Found in 65ms
100967
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100968
+ Processing by Importable::SpreadsheetsController#create as HTML
100969
+ Parameters: {"import_params"=>{"moof"=>"1"}, "type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3605", "use_route"=>"importable"}
100970
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3605"]]
100971
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100972
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100973
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100974
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100975
+ Redirected to http://test.host/importable/foo/3605
100976
+ Completed 302 Found in 65ms
100977
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100978
+ Processing by Importable::SpreadsheetsController#create as HTML
100979
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3606", "use_route"=>"importable"}
100980
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3606"]]
100981
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100982
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100983
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100984
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100985
+ Redirected to http://test.host/importable/foo/3606
100986
+ Completed 302 Found in 25ms
100987
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100988
+ Processing by Importable::SpreadsheetsController#create as HTML
100989
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3607", "use_route"=>"importable"}
100990
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3607"]]
100991
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100992
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100993
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100994
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100995
+ Redirected to http://test.host/importable/foo/3607
100996
+ Completed 302 Found in 65ms
100997
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
100998
+ Processing by Importable::SpreadsheetsController#create as HTML
100999
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3608", "use_route"=>"importable"}
101000
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3608"]]
101001
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101002
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101003
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101004
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101005
+ Redirected to http://test.host/importable/foo/3608
101006
+ Completed 302 Found in 24ms
101007
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101008
+ Processing by Importable::SpreadsheetsController#create as HTML
101009
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3609", "back_button"=>"1", "use_route"=>"importable"}
101010
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3609"]]
101011
+ Completed 200 OK in 15ms (Views: 1.6ms | ActiveRecord: 0.1ms)
101012
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101013
+ Processing by Importable::SpreadsheetsController#create as HTML
101014
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3610", "default_sheet"=>"1", "use_route"=>"importable"}
101015
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3610"]]
101016
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101017
+ SQL (39.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101018
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101019
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101020
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101021
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101022
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101023
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101024
+ Redirected to http://test.host/importable/foo/3610
101025
+ Completed 302 Found in 73ms
101026
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101027
+ Processing by Importable::SpreadsheetsController#create as HTML
101028
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3611", "default_sheet"=>"1", "use_route"=>"importable"}
101029
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3611"]]
101030
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101031
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101032
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101033
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101034
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 9], ["r", 8], ["s", 7], ["t", 6], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101035
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 8], ["r", 7], ["s", 6], ["t", 5], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101036
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 7], ["r", 6], ["s", 5], ["t", 4], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101037
+ SQL (39.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", nil], ["doof", nil], ["moof", nil], ["q", 6], ["r", 5], ["s", 4], ["t", 3], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101038
+ Redirected to http://test.host/importable/foo/3611
101039
+ Completed 302 Found in 72ms
101040
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101041
+ Processing by Importable::SpreadsheetsController#create as HTML
101042
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3612", "use_route"=>"importable"}
101043
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3612"]]
101044
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101045
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101046
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101047
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101048
+ Redirected to http://test.host/importable/foo/3612
101049
+ Completed 302 Found in 32ms
101050
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101051
+ Processing by Importable::SpreadsheetsController#create as HTML
101052
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3613", "use_route"=>"importable"}
101053
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3613"]]
101054
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101055
+ SQL (1.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101056
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101057
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101058
+ Redirected to http://test.host/importable/foo/3613
101059
+ Completed 302 Found in 75ms
101060
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101061
+ SQL (1.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101062
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101063
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101064
+ SQL (0.1ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_single_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101065
+ Processing by Importable::SpreadsheetsController#create as HTML
101066
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3614", "use_route"=>"importable"}
101067
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3614"]]
101068
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101069
+ SQL (2.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101070
+ SQL (46.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101071
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101072
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101073
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101074
+ SQL (2.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101075
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101076
+ Redirected to http://test.host/importable/foo/3614
101077
+ Completed 302 Found in 86ms
101078
+ SQL (0.7ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101079
+ Processing by Importable::SpreadsheetsController#create as HTML
101080
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3615", "use_route"=>"importable"}
101081
+ Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.0ms)
101082
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101083
+ Processing by Importable::SpreadsheetsController#create as HTML
101084
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3616", "use_route"=>"importable"}
101085
+ Redirected to http://test.host/importable/foo/3616
101086
+ Completed 302 Found in 7ms
101087
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:32 UTC +00:00]]
101088
+ Processing by Importable::SpreadsheetsController#create as HTML
101089
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3617", "return_to"=>"index", "use_route"=>"importable"}
101090
+ Redirected to http://test.host/foos
101091
+ Completed 302 Found in 7ms
101092
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101093
+ Processing by Importable::SpreadsheetsController#create as HTML
101094
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3618", "return_to"=>"import", "use_route"=>"importable"}
101095
+ Redirected to http://test.host/importable/foo
101096
+ Completed 302 Found in 7ms
101097
+ SQL (0.4ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101098
+ Processing by Importable::SpreadsheetsController#create as HTML
101099
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3619", "use_route"=>"importable"}
101100
+ Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
101101
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101102
+ Processing by Importable::SpreadsheetsController#create as HTML
101103
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3620", "use_route"=>"importable"}
101104
+ Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
101105
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101106
+ Processing by Importable::SpreadsheetsController#create as HTML
101107
+ Parameters: {"type"=>"foo", "current_step"=>"choose_worksheet", "spreadsheet_id"=>"3621", "use_route"=>"importable"}
101108
+ Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
101109
+ SQL (0.3ms) INSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["file", "foo_multi_worksheet.xlsx"], ["object_type", "foo"], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101110
+ Processing by Importable::SpreadsheetsController#show as HTML
101111
+ Parameters: {"type"=>"foo", "id"=>"3622", "use_route"=>"importable"}
101112
+ Importable::Spreadsheet Load (0.1ms) SELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1 [["id", "3622"]]
101113
+ Completed 200 OK in 8ms (Views: 2.4ms | ActiveRecord: 0.1ms)
101114
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101115
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101116
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101117
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101118
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101119
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101120
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101121
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101122
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101123
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101124
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101125
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101126
+ SQL (0.4ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101127
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101128
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101129
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101130
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101131
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101132
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101133
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101134
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101135
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101136
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101137
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101138
+  (2.3ms) SELECT COUNT(*) FROM "foos" 
101139
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101140
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101141
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101142
+  (0.3ms) SELECT COUNT(*) FROM "foos" 
101143
+ SQL (0.3ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101144
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101145
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101146
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101147
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101148
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101149
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101150
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101151
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101152
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101153
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101154
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101155
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101156
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101157
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101158
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101159
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101160
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101161
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101162
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101163
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101164
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101165
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 1], ["b", 2], ["c", 3], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 4], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101166
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 2], ["b", 3], ["c", 4], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 5], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101167
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 3], ["b", 4], ["c", 5], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 6], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101168
+ SQL (0.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", 4], ["b", 5], ["c", 6], ["created_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00], ["d", 7], ["doof", nil], ["moof", nil], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Thu, 22 Sep 2011 23:25:33 UTC +00:00]]
101169
+ SQL (19.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101170
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101171
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101172
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101173
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101174
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101175
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101176
+ SQL (1.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101177
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101178
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101179
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101180
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:08 UTC +00:00]]
101181
+  (2.1ms) SELECT COUNT(*) FROM "foos" 
101182
+ SQL (17.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101183
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101184
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101185
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101186
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101187
+ SQL (1.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101188
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101189
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101190
+ SQL (1.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101191
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101192
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101193
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101194
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101195
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101196
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101197
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:43:21 UTC +00:00]]
101198
+  (2.2ms) SELECT COUNT(*) FROM "foos" 
101199
+ SQL (18.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101200
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101201
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101202
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101203
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101204
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101205
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101206
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101207
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101208
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101209
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101210
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101211
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101212
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101213
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101214
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101215
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101216
+ SQL (1.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101217
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:10 UTC +00:00]]
101218
+ SQL (5.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101219
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101220
+  (2.1ms) SELECT COUNT(*) FROM "foos"
101221
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101222
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101223
+ SQL (40.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101224
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101225
+ SQL (0.4ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101226
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101227
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101228
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101229
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101230
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:11 UTC +00:00]]
101231
+ SQL (17.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101232
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101233
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101234
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101235
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101236
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101237
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101238
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101239
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101240
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101241
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101242
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101243
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101244
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101245
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101246
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101247
+ SQL (2.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101248
+ SQL (6.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101249
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101250
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101251
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101252
+  (3.4ms) SELECT COUNT(*) FROM "foos"
101253
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101254
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101255
+ SQL (34.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101256
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101257
+ SQL (0.4ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101258
+ SQL (0.7ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101259
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101260
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101261
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101262
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:44:40 UTC +00:00]]
101263
+ SQL (17.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101264
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101265
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101266
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101267
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101268
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101269
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101270
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101271
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101272
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101273
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101274
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101275
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101276
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101277
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101278
+ SQL (1.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:45:50 UTC +00:00]]
101279
+  (2.0ms) SELECT COUNT(*) FROM "foos" 
101280
+ SQL (18.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101281
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101282
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101283
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101284
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101285
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101286
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101287
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101288
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101289
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101290
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101291
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101292
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101293
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101294
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101295
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:04 UTC +00:00]]
101296
+  (2.1ms) SELECT COUNT(*) FROM "foos" 
101297
+ SQL (18.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:23 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:23 UTC +00:00]]
101298
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101299
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101300
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101301
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101302
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101303
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101304
+ SQL (2.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101305
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101306
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101307
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101308
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101309
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101310
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101311
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101312
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:24 UTC +00:00]]
101313
+  (2.1ms) SELECT COUNT(*) FROM "foos" 
101314
+ SQL (19.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101315
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101316
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101317
+ SQL (1.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101318
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101319
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101320
+ SQL (1.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101321
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101322
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101323
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101324
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101325
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:52 UTC +00:00]]
101326
+ SQL (1.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101327
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101328
+ SQL (2.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101329
+ SQL (1.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101330
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101331
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101332
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101333
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101334
+ SQL (2.6ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101335
+  (2.5ms) SELECT COUNT(*) FROM "foos"
101336
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101337
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101338
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101339
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101340
+ SQL (0.6ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101341
+ SQL (0.5ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101342
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101343
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101344
+ SQL (1.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101345
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:46:53 UTC +00:00]]
101346
+ SQL (18.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101347
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101348
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101349
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101350
+ SQL (2.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101351
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101352
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101353
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101354
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101355
+ SQL (1.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101356
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101357
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101358
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101359
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101360
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101361
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101362
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101363
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101364
+ SQL (1.5ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101365
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101366
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101367
+  (2.0ms) SELECT COUNT(*) FROM "foos"
101368
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101369
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101370
+ SQL (38.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101371
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101372
+ SQL (0.4ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101373
+ SQL (0.3ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101374
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101375
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101376
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101377
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:06 UTC +00:00]]
101378
+ SQL (18.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101379
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101380
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101381
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101382
+ SQL (2.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101383
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101384
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101385
+ SQL (2.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101386
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101387
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101388
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101389
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101390
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101391
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101392
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101393
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101394
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101395
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101396
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101397
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101398
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101399
+  (3.7ms) SELECT COUNT(*) FROM "foos"
101400
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101401
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101402
+ SQL (35.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101403
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101404
+ SQL (0.4ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101405
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101406
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101407
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101408
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101409
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:47:19 UTC +00:00]]
101410
+ SQL (18.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101411
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101412
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101413
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101414
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101415
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101416
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101417
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101418
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101419
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101420
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101421
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101422
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101423
+ SQL (35.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101424
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101425
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101426
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101427
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101428
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101429
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101430
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101431
+  (2.1ms) SELECT COUNT(*) FROM "foos"
101432
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101433
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101434
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101435
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101436
+ SQL (0.6ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101437
+ SQL (0.3ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101438
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101439
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101440
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101441
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:48:16 UTC +00:00]]
101442
+ SQL (23.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101443
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101444
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101445
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101446
+ SQL (1.4ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101447
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101448
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101449
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101450
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101451
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101452
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101453
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101454
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101455
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101456
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101457
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101458
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101459
+ SQL (2.3ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101460
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101461
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101462
+ SQL (1.1ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101463
+  (2.1ms) SELECT COUNT(*) FROM "foos"
101464
+ SQL (1.0ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101465
+ SQL (0.9ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101466
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101467
+  (0.3ms) SELECT COUNT(*) FROM "foos"
101468
+ SQL (0.7ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["doof", 2], ["moof", 1], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101469
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["doof", 4], ["moof", 3], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101470
+ SQL (0.2ms) INSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["doof", 6], ["moof", 5], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101471
+ SQL (0.8ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 2], ["moof", 1], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101472
+ SQL (0.7ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 4], ["moof", 3], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]
101473
+ SQL (2.2ms) INSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["a", nil], ["b", nil], ["c", nil], ["created_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00], ["d", nil], ["doof", 6], ["moof", 5], ["q", nil], ["r", nil], ["s", nil], ["t", nil], ["updated_at", Fri, 23 Sep 2011 00:49:17 UTC +00:00]]