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.
- data/README.md +5 -0
- data/lib/importable/mapper.rb +9 -1
- data/lib/importable/uploader.rb +1 -1
- data/lib/importable/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +781 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3595/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3596/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3598/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3599/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3600/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3601/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3602/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3603/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3604/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3605/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3606/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3607/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3608/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3609/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3610/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3611/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3612/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3613/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3614/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3615/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3616/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3617/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3618/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3619/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3620/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3621/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo/3622/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/tmp/uploads/importable/spreadsheet/file/foo_required_field/3597/foo_multi_worksheet_required_field_invalid.xlsx +0 -0
- data/spec/lib/mapper_spec.rb +25 -0
- metadata +84 -30
- 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
|
data/lib/importable/mapper.rb
CHANGED
@@ -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
|
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
|
|
data/lib/importable/uploader.rb
CHANGED
@@ -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
|
data/lib/importable/version.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -100690,3 +100690,784 @@ Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
|
100690
100690
|
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
[1m[35mSQL (0.6ms)[0m 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
|
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[36mSQL (47.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.2ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3596"]]
|
100762
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3598"]]
|
100861
|
+
[1m[35mSQL (1.4ms)[0m 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
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m 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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3599"]]
|
100903
|
+
[1m[35mSQL (1.6ms)[0m 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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.3ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3604"]]
|
100961
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3605"]]
|
100971
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3606"]]
|
100981
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3607"]]
|
100991
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3608"]]
|
101001
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3609"]]
|
101011
|
+
Completed 200 OK in 15ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
101012
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3610"]]
|
101016
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (39.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3611"]]
|
101030
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (39.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3612"]]
|
101044
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3613"]]
|
101054
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mSQL (1.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mImportable::Spreadsheet Load (0.1ms)[0m [1mSELECT "importable_spreadsheets".* FROM "importable_spreadsheets" WHERE "importable_spreadsheets"."id" = ? LIMIT 1[0m [["id", "3614"]]
|
101068
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mSQL (2.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (46.3ms)[0m 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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (2.3ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "importable_spreadsheets" ("created_at", "file", "object_type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mImportable::Spreadsheet Load (0.1ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36m (2.3ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101139
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101143
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[36mSQL (19.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36m (2.1ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101182
|
+
[1m[36mSQL (17.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36m (2.2ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101199
|
+
[1m[36mSQL (18.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (5.6ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (2.1ms)[0m SELECT COUNT(*) FROM "foos"
|
101221
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (40.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101225
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (17.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (6.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (3.4ms)[0m SELECT COUNT(*) FROM "foos"
|
101253
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (34.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101257
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (17.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36m (2.0ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101280
|
+
[1m[36mSQL (18.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36m (2.1ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101297
|
+
[1m[36mSQL (18.4ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (2.5ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36m (2.1ms)[0m [1mSELECT COUNT(*) FROM "foos" [0m
|
101314
|
+
[1m[36mSQL (19.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (2.4ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (2.6ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (2.5ms)[0m SELECT COUNT(*) FROM "foos"
|
101336
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101340
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (18.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (2.0ms)[0m SELECT COUNT(*) FROM "foos"
|
101368
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (38.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101372
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (18.2ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (2.1ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (3.7ms)[0m SELECT COUNT(*) FROM "foos"
|
101400
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (35.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101404
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (18.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (35.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (2.1ms)[0m SELECT COUNT(*) FROM "foos"
|
101432
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101436
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (23.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (2.3ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (2.1ms)[0m SELECT COUNT(*) FROM "foos"
|
101464
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
101468
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foo_required_fields" ("created_at", "doof", "moof", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("a", "b", "c", "created_at", "d", "doof", "moof", "q", "r", "s", "t", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (2.2ms)[0m INSERT INTO "foos" ("a", "b", "c", "created_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]]
|