wagons 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +8 -8
  2. data/Rakefile +4 -6
  3. data/lib/generators/wagon/templates/%singular_name%.gemspec.tt +12 -11
  4. data/lib/generators/wagon/templates/{script → bin}/rails.tt +3 -2
  5. data/lib/generators/wagon/templates/config/routes.rb +1 -1
  6. data/lib/generators/wagon/templates/lib/%singular_name%/version.rb.tt +2 -2
  7. data/lib/generators/wagon/templates/lib/%singular_name%.rb.tt +0 -1
  8. data/lib/generators/wagon/wagon_generator.rb +4 -6
  9. data/lib/wagons/extensions/application.rb +2 -4
  10. data/lib/wagons/extensions/require_optional.rb +2 -2
  11. data/lib/wagons/extensions/test_case.rb +5 -7
  12. data/lib/wagons/installer.rb +52 -56
  13. data/lib/wagons/railtie.rb +2 -2
  14. data/lib/wagons/version.rb +1 -1
  15. data/lib/wagons/view_helper.rb +14 -16
  16. data/lib/wagons/wagon.rb +6 -8
  17. data/lib/wagons.rb +8 -10
  18. data/test/ci/rails3.gemfile.lock +108 -0
  19. data/test/dummy/Gemfile.lock +52 -48
  20. data/test/dummy/app/controllers/people_controller.rb +1 -3
  21. data/test/dummy/app/models/person.rb +1 -1
  22. data/test/dummy/config/application.rb +3 -4
  23. data/test/dummy/config/boot.rb +1 -1
  24. data/test/dummy/config/environments/development.rb +1 -1
  25. data/test/dummy/config/environments/production.rb +1 -1
  26. data/test/dummy/config/environments/test.rb +2 -2
  27. data/test/dummy/config/initializers/session_store.rb +1 -1
  28. data/test/dummy/config/initializers/wagon_app_version.rb +1 -1
  29. data/test/dummy/config/initializers/wrap_parameters.rb +1 -1
  30. data/test/dummy/config/routes.rb +3 -3
  31. data/test/dummy/db/development.sqlite3 +0 -0
  32. data/test/dummy/db/fixtures/development/people.rb +3 -3
  33. data/test/dummy/db/fixtures/test/people.rb +3 -3
  34. data/test/dummy/db/schema.rb +5 -5
  35. data/test/dummy/db/test.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +1528 -1015
  37. data/test/dummy/log/test.log +11807 -6530
  38. data/test/dummy/test/models/person_test.rb +5 -5
  39. data/test/dummy/test/test_helper.rb +1 -1
  40. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  41. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  42. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  43. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  44. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  45. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  46. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  47. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  48. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  49. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  50. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  51. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  52. data/test/dummy/vendor/wagons/superliner/Gemfile.lock +53 -49
  53. data/test/dummy/vendor/wagons/superliner/app/controllers/cities_controller.rb +1 -2
  54. data/test/dummy/vendor/wagons/superliner/app/models/city.rb +2 -2
  55. data/test/dummy/vendor/wagons/superliner/db/fixtures/cities.rb +1 -1
  56. data/test/dummy/vendor/wagons/superliner/db/migrate/20120606125058_create_cities.rb +1 -1
  57. data/test/dummy/vendor/wagons/superliner/dummy_superliner.gemspec +11 -11
  58. data/test/dummy/vendor/wagons/superliner/lib/dummy_superliner/version.rb +2 -2
  59. data/test/dummy/vendor/wagons/superliner/lib/dummy_superliner/wagon.rb +3 -4
  60. data/test/dummy/vendor/wagons/superliner/lib/dummy_superliner.rb +1 -1
  61. data/test/dummy/vendor/wagons/superliner/script/rails +1 -1
  62. data/test/dummy/vendor/wagons/superliner/test/controllers/cities_controller_test.rb +5 -7
  63. data/test/dummy/vendor/wagons/superliner/test/controllers/people_controller_test.rb +2 -4
  64. data/test/dummy/vendor/wagons/superliner/test/models/city_test.rb +3 -3
  65. data/test/dummy/vendor/wagons/superliner/test/models/person_test.rb +5 -7
  66. data/test/dummy/vendor/wagons/superliner/test/test_helper.rb +1 -2
  67. data/test/dummy/vendor/wagons/superliner/test/wagon_test.rb +23 -24
  68. data/test/test_helper.rb +5 -5
  69. data/test/wagons_installer_test.rb +72 -75
  70. data/test/wagons_test.rb +1 -1
  71. metadata +174 -160
@@ -1,1401 +1,1914 @@
1
1
  Connecting to database specified by database.yml
2
2
  Connecting to database specified by database.yml
3
3
   (0.1ms) select sqlite_version(*)
4
-  (15.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (42.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
5
   (0.1ms) PRAGMA index_list("schema_migrations")
6
-  (8.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
- Migrating to CreatePeople (20120606125104)
9
-  (0.1ms) begin transaction
10
-  (1.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
11
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
12
-  (9.7ms) commit transaction
13
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
14
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
-  (0.1ms) select sqlite_version(*)
17
-  (10.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
18
-  (8.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
19
-  (0.1ms) PRAGMA index_list("schema_migrations")
20
-  (9.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21
-  (0.2ms) SELECT version FROM "schema_migrations"
22
-  (7.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
23
- Connecting to database specified by database.yml
24
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
25
-  (0.2ms) select sqlite_version(*)
26
-  (12.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
27
-  (7.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
28
-  (0.1ms) PRAGMA index_list("schema_migrations")
29
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
30
-  (0.2ms) SELECT version FROM "schema_migrations"
31
-  (9.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
32
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
33
- Migrating to CreateCities (20120606125058)
34
-  (0.1ms) begin transaction
35
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
36
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
37
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
38
-  (7.7ms) commit transaction
39
-  (0.1ms) begin transaction
40
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
41
- SQL (3.3ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 22 Aug 2012 12:28:35 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 12:28:35 UTC +00:00]]
42
-  (7.7ms) commit transaction
43
-  (0.2ms) begin transaction
44
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
45
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 12:28:35 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 22 Aug 2012 12:28:35 UTC +00:00]]
46
-  (8.8ms) commit transaction
47
- Connecting to database specified by database.yml
6
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
48
7
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
49
-  (0.1ms) select sqlite_version(*)
50
-  (12.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
51
-  (8.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
52
-  (0.1ms) PRAGMA index_list("schema_migrations")
53
-  (12.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54
-  (0.2ms) SELECT version FROM "schema_migrations"
55
-  (8.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
56
-  (0.1ms) begin transaction
57
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
58
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 22 Aug 2012 12:28:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 12:28:38 UTC +00:00]]
59
-  (6.9ms) commit transaction
60
8
  Connecting to database specified by database.yml
61
9
  Connecting to database specified by database.yml
62
10
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
63
11
  Migrating to CreatePeople (20120606125104)
64
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
65
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
66
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
67
-  (0.2ms) select sqlite_version(*)
68
-  (11.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
-  (9.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
70
-  (0.1ms) PRAGMA index_list("schema_migrations")
71
-  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
72
-  (0.2ms) SELECT version FROM "schema_migrations"
73
-  (11.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
74
- Connecting to database specified by database.yml
75
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
76
-  (0.2ms) select sqlite_version(*)
77
-  (12.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
78
-  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
79
-  (0.1ms) PRAGMA index_list("schema_migrations")
80
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
81
-  (0.2ms) SELECT version FROM "schema_migrations"
82
-  (8.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
83
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
84
- Migrating to CreateCities (20120606125058)
85
-  (0.0ms) begin transaction
86
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
87
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
88
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
89
-  (8.5ms) commit transaction
90
-  (0.1ms) begin transaction
91
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
92
- SQL (2.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 22 Aug 2012 12:59:13 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 12:59:13 UTC +00:00]]
93
-  (9.0ms) commit transaction
12
+  (0.0ms) select sqlite_version(*)
94
13
   (0.0ms) begin transaction
95
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
96
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 12:59:13 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 22 Aug 2012 12:59:13 UTC +00:00]]
97
-  (7.0ms) commit transaction
98
- Connecting to database specified by database.yml
14
+  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
15
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
16
+  (41.8ms) commit transaction
17
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
99
19
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
100
20
   (0.1ms) select sqlite_version(*)
101
-  (11.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
102
-  (7.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21
+  (3.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
22
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
103
23
   (0.1ms) PRAGMA index_list("schema_migrations")
104
-  (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
-  (0.2ms) SELECT version FROM "schema_migrations"
106
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
107
-  (0.1ms) begin transaction
108
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
109
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 22 Aug 2012 12:59:16 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 12:59:16 UTC +00:00]]
110
-  (9.2ms) commit transaction
111
- Connecting to database specified by database.yml
112
- Connecting to database specified by database.yml
113
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
114
- Migrating to CreatePeople (20120606125104)
115
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
116
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
117
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
118
-  (0.2ms) select sqlite_version(*)
119
-  (14.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
120
-  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
121
-  (0.1ms) PRAGMA index_list("schema_migrations")
122
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
123
-  (0.2ms) SELECT version FROM "schema_migrations"
124
-  (9.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
24
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+  (0.1ms) SELECT version FROM "schema_migrations"
26
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
125
27
  Connecting to database specified by database.yml
126
28
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
127
-  (0.2ms) select sqlite_version(*)
128
-  (12.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
129
-  (9.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
29
+  (0.1ms) select sqlite_version(*)
30
+  (42.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
31
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
130
32
   (0.1ms) PRAGMA index_list("schema_migrations")
131
-  (10.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
132
-  (0.2ms) SELECT version FROM "schema_migrations"
133
-  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
134
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
33
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
+  (0.1ms) SELECT version FROM "schema_migrations"
35
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
36
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
135
37
  Migrating to CreateCities (20120606125058)
136
-  (0.1ms) begin transaction
137
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
138
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
139
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
140
-  (7.5ms) commit transaction
38
+  (0.0ms) begin transaction
39
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
40
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
41
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
42
+  (3.5ms) commit transaction
141
43
   (0.1ms) begin transaction
142
44
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
143
- SQL (14.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 22 Aug 2012 13:01:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 13:01:00 UTC +00:00]]
144
-  (8.8ms) commit transaction
145
-  (0.0ms) begin transaction
146
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
147
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 13:01:00 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 22 Aug 2012 13:01:00 UTC +00:00]]
148
-  (7.3ms) commit transaction
45
+ SQL (36.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00]]
46
+  (4.3ms) commit transaction
47
+  (0.1ms) begin transaction
48
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
49
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00]]
50
+  (3.0ms) commit transaction
149
51
  Connecting to database specified by database.yml
150
52
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
53
   (0.1ms) select sqlite_version(*)
152
-  (13.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
153
-  (7.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
+  (42.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
55
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
56
   (0.1ms) PRAGMA index_list("schema_migrations")
155
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
156
-  (0.2ms) SELECT version FROM "schema_migrations"
157
-  (9.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
57
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
58
+  (0.1ms) SELECT version FROM "schema_migrations"
59
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
158
60
   (0.1ms) begin transaction
159
61
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
160
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 22 Aug 2012 13:01:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 13:01:04 UTC +00:00]]
161
-  (10.4ms) commit transaction
62
+ SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 16 Aug 2012 16:04:56 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 16 Aug 2012 16:04:56 UTC +00:00]]
63
+  (2.8ms) commit transaction
64
+ Connecting to database specified by database.yml
65
+ Connecting to database specified by database.yml
162
66
  Connecting to database specified by database.yml
163
67
  Connecting to database specified by database.yml
164
68
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
165
69
  Migrating to CreatePeople (20120606125104)
166
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
167
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
168
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
169
-  (0.2ms) select sqlite_version(*)
170
-  (12.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
171
-  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
70
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
71
+  (0.1ms) select sqlite_version(*)
72
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
73
+  (0.0ms) PRAGMA index_list("people")
74
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
75
+  (0.1ms) select sqlite_version(*)
76
+  (70.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
77
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
172
78
   (0.1ms) PRAGMA index_list("schema_migrations")
173
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
-  (0.2ms) SELECT version FROM "schema_migrations"
175
-  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
79
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
80
+  (0.1ms) SELECT version FROM "schema_migrations"
81
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
176
82
  Connecting to database specified by database.yml
177
83
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
178
-  (0.2ms) select sqlite_version(*)
179
-  (12.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
180
-  (8.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
+  (0.0ms) select sqlite_version(*)
85
+  (41.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
181
87
   (0.1ms) PRAGMA index_list("schema_migrations")
182
-  (9.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
-  (0.2ms) SELECT version FROM "schema_migrations"
184
-  (7.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
185
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
88
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
89
+  (0.1ms) SELECT version FROM "schema_migrations"
90
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
91
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
186
92
  Migrating to CreateCities (20120606125058)
187
-  (0.1ms) begin transaction
188
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
93
+  (0.0ms) begin transaction
94
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
95
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
190
96
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
191
-  (7.5ms) commit transaction
97
+  (3.2ms) commit transaction
192
98
   (0.1ms) begin transaction
193
99
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
194
- SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 22 Aug 2012 13:02:15 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 13:02:15 UTC +00:00]]
195
-  (6.9ms) commit transaction
196
-  (0.0ms) begin transaction
100
+ SQL (42.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00]]
101
+  (3.3ms) commit transaction
102
+  (0.1ms) begin transaction
197
103
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
198
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 13:02:15 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 22 Aug 2012 13:02:15 UTC +00:00]]
199
-  (7.0ms) commit transaction
104
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00]]
105
+  (2.9ms) commit transaction
200
106
  Connecting to database specified by database.yml
201
107
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
202
108
   (0.1ms) select sqlite_version(*)
203
-  (14.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
204
-  (13.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
109
+  (44.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
110
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
205
111
   (0.1ms) PRAGMA index_list("schema_migrations")
206
-  (15.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
207
-  (0.2ms) SELECT version FROM "schema_migrations"
208
-  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
209
-  (0.2ms) begin transaction
112
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
113
+  (0.1ms) SELECT version FROM "schema_migrations"
114
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
115
+  (0.1ms) begin transaction
210
116
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
211
- SQL (2.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 22 Aug 2012 13:02:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 22 Aug 2012 13:02:19 UTC +00:00]]
212
-  (9.5ms) commit transaction
117
+ SQL (3.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:56:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:06 UTC +00:00]]
118
+  (2.8ms) commit transaction
213
119
  Connecting to database specified by database.yml
214
120
  Connecting to database specified by database.yml
215
121
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
216
122
  Migrating to CreatePeople (20120606125104)
217
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
218
-  (0.1ms) select sqlite_version(*)
123
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
124
+  (0.0ms) select sqlite_version(*)
219
125
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
220
126
   (0.0ms) PRAGMA index_list("people")
221
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
222
-  (0.2ms) select sqlite_version(*)
223
-  (16.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
224
-  (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
127
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
128
+  (0.1ms) select sqlite_version(*)
129
+  (34.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
225
131
   (0.1ms) PRAGMA index_list("schema_migrations")
226
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
-  (0.2ms) SELECT version FROM "schema_migrations"
228
-  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
132
+  (3.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
133
+  (0.1ms) SELECT version FROM "schema_migrations"
134
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
229
135
  Connecting to database specified by database.yml
230
136
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
231
-  (0.2ms) select sqlite_version(*)
232
-  (14.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
233
-  (6.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
234
-  (0.0ms) PRAGMA index_list("schema_migrations")
235
-  (7.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
-  (0.0ms) SELECT version FROM "schema_migrations"
237
-  (6.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
137
+  (0.1ms) select sqlite_version(*)
138
+  (45.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
140
+  (0.1ms) PRAGMA index_list("schema_migrations")
141
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
142
+  (0.1ms) SELECT version FROM "schema_migrations"
143
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
238
144
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
239
145
  Migrating to CreateCities (20120606125058)
240
146
   (0.0ms) begin transaction
241
147
   (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
242
148
   (0.1ms) ALTER TABLE "people" ADD "city_id" integer
243
149
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
244
-  (5.9ms) commit transaction
150
+  (3.2ms) commit transaction
245
151
   (0.1ms) begin transaction
246
152
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
247
- SQL (17.3ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 28 Sep 2012 14:32:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:32:55 UTC +00:00]]
248
-  (6.1ms) commit transaction
153
+ SQL (3.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00]]
154
+  (2.8ms) commit transaction
249
155
   (0.1ms) begin transaction
250
156
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
251
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 28 Sep 2012 14:32:55 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 28 Sep 2012 14:32:55 UTC +00:00]]
252
-  (6.1ms) commit transaction
157
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00]]
158
+  (2.9ms) commit transaction
253
159
  Connecting to database specified by database.yml
254
160
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
255
-  (0.2ms) select sqlite_version(*)
256
-  (10.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
257
-  (7.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
161
+  (0.1ms) select sqlite_version(*)
162
+  (67.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
163
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
258
164
   (0.1ms) PRAGMA index_list("schema_migrations")
259
-  (8.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
260
-  (0.0ms) SELECT version FROM "schema_migrations"
261
-  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
165
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
166
+  (0.1ms) SELECT version FROM "schema_migrations"
167
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
262
168
   (0.1ms) begin transaction
263
169
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
264
- SQL (2.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 28 Sep 2012 14:32:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:32:59 UTC +00:00]]
265
-  (6.2ms) commit transaction
170
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:56:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:42 UTC +00:00]]
171
+  (38.7ms) commit transaction
266
172
  Connecting to database specified by database.yml
267
173
  Connecting to database specified by database.yml
268
174
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
269
175
  Migrating to CreatePeople (20120606125104)
270
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
271
-  (0.1ms) select sqlite_version(*)
176
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
177
+  (0.0ms) select sqlite_version(*)
272
178
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
273
179
   (0.0ms) PRAGMA index_list("people")
274
180
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
275
-  (0.2ms) select sqlite_version(*)
276
-  (13.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
277
-  (8.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
181
+  (0.0ms) select sqlite_version(*)
182
+  (35.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
183
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
278
184
   (0.1ms) PRAGMA index_list("schema_migrations")
279
-  (11.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
280
-  (0.2ms) SELECT version FROM "schema_migrations"
281
-  (7.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
185
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
186
+  (0.1ms) SELECT version FROM "schema_migrations"
187
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
282
188
  Connecting to database specified by database.yml
283
189
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
284
-  (0.2ms) select sqlite_version(*)
285
-  (11.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
286
-  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
190
+  (0.1ms) select sqlite_version(*)
191
+  (39.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
192
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
287
193
   (0.1ms) PRAGMA index_list("schema_migrations")
288
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
194
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
289
195
   (0.2ms) SELECT version FROM "schema_migrations"
290
-  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
291
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
196
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
197
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
292
198
  Migrating to CreateCities (20120606125058)
293
-  (0.1ms) begin transaction
294
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
295
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
296
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
297
-  (7.5ms) commit transaction
199
+  (0.0ms) begin transaction
200
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
201
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
202
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
203
+  (3.0ms) commit transaction
298
204
   (0.0ms) begin transaction
299
205
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
300
- SQL (15.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 28 Sep 2012 14:33:36 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:33:36 UTC +00:00]]
301
-  (7.3ms) commit transaction
206
+ SQL (3.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00]]
207
+  (2.8ms) commit transaction
302
208
   (0.1ms) begin transaction
303
209
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
304
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 28 Sep 2012 14:33:36 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 28 Sep 2012 14:33:36 UTC +00:00]]
305
-  (7.6ms) commit transaction
210
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00]]
211
+  (2.8ms) commit transaction
306
212
  Connecting to database specified by database.yml
307
213
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
308
214
   (0.1ms) select sqlite_version(*)
309
-  (12.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
310
-  (8.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
215
+  (39.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
216
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
311
217
   (0.1ms) PRAGMA index_list("schema_migrations")
312
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
313
-  (0.2ms) SELECT version FROM "schema_migrations"
314
-  (7.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
315
-  (0.1ms) begin transaction
218
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
219
+  (0.1ms) SELECT version FROM "schema_migrations"
220
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
221
+  (0.0ms) begin transaction
316
222
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
317
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 28 Sep 2012 14:33:40 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:33:40 UTC +00:00]]
318
-  (9.4ms) commit transaction
223
+ SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:58:07 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:07 UTC +00:00]]
224
+  (2.8ms) commit transaction
319
225
  Connecting to database specified by database.yml
320
226
  Connecting to database specified by database.yml
321
227
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
322
228
  Migrating to CreatePeople (20120606125104)
323
229
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
324
-  (0.1ms) select sqlite_version(*)
230
+  (0.0ms) select sqlite_version(*)
325
231
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
326
232
   (0.0ms) PRAGMA index_list("people")
327
233
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
328
-  (0.2ms) select sqlite_version(*)
329
-  (10.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
-  (8.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
234
+  (0.1ms) select sqlite_version(*)
235
+  (31.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
236
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
331
237
   (0.1ms) PRAGMA index_list("schema_migrations")
332
-  (11.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
333
-  (0.2ms) SELECT version FROM "schema_migrations"
334
-  (8.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
238
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
+  (0.1ms) SELECT version FROM "schema_migrations"
240
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
335
241
  Connecting to database specified by database.yml
336
242
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
337
-  (0.2ms) select sqlite_version(*)
338
-  (12.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
339
-  (10.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
243
+  (0.0ms) select sqlite_version(*)
244
+  (45.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
245
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
340
246
   (0.1ms) PRAGMA index_list("schema_migrations")
341
-  (11.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
342
-  (0.2ms) SELECT version FROM "schema_migrations"
343
-  (8.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
247
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
248
+  (0.1ms) SELECT version FROM "schema_migrations"
249
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
344
250
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
345
251
  Migrating to CreateCities (20120606125058)
346
252
   (0.0ms) begin transaction
347
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
348
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
253
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
254
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
349
255
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
350
-  (7.4ms) commit transaction
256
+  (3.5ms) commit transaction
351
257
   (0.1ms) begin transaction
352
258
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
353
- SQL (15.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 28 Sep 2012 14:34:26 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:34:26 UTC +00:00]]
354
-  (7.3ms) commit transaction
259
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
260
+  (2.9ms) commit transaction
355
261
   (0.1ms) begin transaction
356
262
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
357
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 28 Sep 2012 14:34:26 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 28 Sep 2012 14:34:26 UTC +00:00]]
358
-  (6.8ms) commit transaction
263
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
264
+  (3.0ms) commit transaction
359
265
  Connecting to database specified by database.yml
360
266
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
361
-  (0.2ms) select sqlite_version(*)
362
-  (12.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
363
-  (9.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
267
+  (0.1ms) select sqlite_version(*)
268
+  (40.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
269
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
364
270
   (0.1ms) PRAGMA index_list("schema_migrations")
365
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
366
-  (0.2ms) SELECT version FROM "schema_migrations"
367
-  (10.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
271
+  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
272
+  (0.1ms) SELECT version FROM "schema_migrations"
273
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
368
274
   (0.0ms) begin transaction
369
275
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
370
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 28 Sep 2012 14:34:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 28 Sep 2012 14:34:30 UTC +00:00]]
371
-  (7.0ms) commit transaction
276
+ SQL (3.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00]]
277
+  (2.9ms) commit transaction
372
278
  Connecting to database specified by database.yml
373
279
  Connecting to database specified by database.yml
374
280
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
375
281
  Migrating to CreatePeople (20120606125104)
376
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
377
-  (0.1ms) select sqlite_version(*)
282
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
283
+  (0.0ms) select sqlite_version(*)
378
284
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
379
285
   (0.0ms) PRAGMA index_list("people")
380
286
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
381
-  (0.2ms) select sqlite_version(*)
382
-  (11.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
383
-  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
287
+  (0.0ms) select sqlite_version(*)
288
+  (33.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
289
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
384
290
   (0.1ms) PRAGMA index_list("schema_migrations")
385
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
386
-  (0.2ms) SELECT version FROM "schema_migrations"
387
-  (8.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
291
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
292
+  (0.1ms) SELECT version FROM "schema_migrations"
293
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
388
294
  Connecting to database specified by database.yml
389
295
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
390
-  (0.2ms) select sqlite_version(*)
391
-  (10.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
392
-  (7.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
393
-  (0.0ms) PRAGMA index_list("schema_migrations")
394
-  (8.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
+  (0.0ms) select sqlite_version(*)
297
+  (45.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
298
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
299
+  (0.1ms) PRAGMA index_list("schema_migrations")
300
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
395
301
   (0.1ms) SELECT version FROM "schema_migrations"
396
-  (5.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
397
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
302
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
303
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
398
304
  Migrating to CreateCities (20120606125058)
399
305
   (0.0ms) begin transaction
400
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
401
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
306
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
307
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
402
308
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
403
-  (7.3ms) commit transaction
404
-  (0.1ms) begin transaction
309
+  (4.2ms) commit transaction
310
+  (0.0ms) begin transaction
405
311
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
406
- SQL (3.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 20 Nov 2012 11:18:07 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 20 Nov 2012 11:18:07 UTC +00:00]]
407
-  (7.5ms) commit transaction
312
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00]]
313
+  (4.5ms) commit transaction
408
314
   (0.1ms) begin transaction
409
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
410
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Nov 2012 11:18:07 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 20 Nov 2012 11:18:07 UTC +00:00]]
411
-  (7.5ms) commit transaction
315
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
316
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00]]
317
+  (2.9ms) commit transaction
412
318
  Connecting to database specified by database.yml
413
319
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
414
320
   (0.1ms) select sqlite_version(*)
415
-  (12.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
416
-  (9.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
321
+  (44.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
322
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
417
323
   (0.1ms) PRAGMA index_list("schema_migrations")
418
-  (9.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
419
-  (0.2ms) SELECT version FROM "schema_migrations"
420
-  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
324
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
325
+  (0.1ms) SELECT version FROM "schema_migrations"
326
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
421
327
   (0.1ms) begin transaction
422
328
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
423
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 20 Nov 2012 11:18:11 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 20 Nov 2012 11:18:11 UTC +00:00]]
424
-  (9.3ms) commit transaction
329
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:01:15 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:01:15 UTC +00:00]]
330
+  (2.8ms) commit transaction
331
+ Connecting to database specified by database.yml
332
+ Connecting to database specified by database.yml
425
333
  Connecting to database specified by database.yml
426
334
  Connecting to database specified by database.yml
427
335
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
428
336
  Migrating to CreatePeople (20120606125104)
429
337
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
430
-  (0.2ms) select sqlite_version(*)
338
+  (0.0ms) select sqlite_version(*)
431
339
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
432
340
   (0.0ms) PRAGMA index_list("people")
433
341
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
434
-  (0.1ms) select sqlite_version(*)
435
-  (16.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
436
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
342
+  (0.0ms) select sqlite_version(*)
343
+  (32.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
344
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
437
345
   (0.1ms) PRAGMA index_list("schema_migrations")
438
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
439
-  (0.2ms) SELECT version FROM "schema_migrations"
440
-  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
346
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
347
+  (0.1ms) SELECT version FROM "schema_migrations"
348
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
441
349
  Connecting to database specified by database.yml
442
350
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
443
-  (0.2ms) select sqlite_version(*)
444
-  (13.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
445
-  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
351
+  (0.1ms) select sqlite_version(*)
352
+  (40.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
353
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
446
354
   (0.1ms) PRAGMA index_list("schema_migrations")
447
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
448
-  (0.2ms) SELECT version FROM "schema_migrations"
449
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
450
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
355
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
+  (0.1ms) SELECT version FROM "schema_migrations"
357
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
358
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
451
359
  Migrating to CreateCities (20120606125058)
452
-  (0.1ms) begin transaction
453
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
454
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
455
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
456
-  (10.7ms) commit transaction
360
+  (0.0ms) begin transaction
361
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
362
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
363
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
364
+  (2.8ms) commit transaction
457
365
   (0.1ms) begin transaction
458
366
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
459
- SQL (17.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Mon, 26 Nov 2012 13:14:09 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 26 Nov 2012 13:14:09 UTC +00:00]]
460
-  (7.6ms) commit transaction
461
-  (0.2ms) begin transaction
462
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
463
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 26 Nov 2012 13:14:09 UTC +00:00], ["name", "Paris"], ["updated_at", Mon, 26 Nov 2012 13:14:09 UTC +00:00]]
464
-  (7.1ms) commit transaction
465
- Connecting to database specified by database.yml
466
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
467
-  (0.2ms) select sqlite_version(*)
468
-  (15.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
469
-  (10.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
470
-  (0.1ms) PRAGMA index_list("schema_migrations")
471
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
472
-  (0.2ms) SELECT version FROM "schema_migrations"
473
-  (8.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
367
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00]]
368
+  (2.8ms) commit transaction
474
369
   (0.1ms) begin transaction
475
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
476
- SQL (2.5ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Mon, 26 Nov 2012 13:14:13 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 26 Nov 2012 13:14:13 UTC +00:00]]
477
-  (8.5ms) commit transaction
370
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
371
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00]]
372
+  (2.9ms) commit transaction
478
373
  Connecting to database specified by database.yml
479
374
  Connecting to database specified by database.yml
480
375
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
481
376
  Migrating to CreatePeople (20120606125104)
482
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
483
-  (0.2ms) select sqlite_version(*)
377
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
378
+  (0.0ms) select sqlite_version(*)
484
379
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
485
380
   (0.0ms) PRAGMA index_list("people")
486
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
381
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
487
382
   (0.1ms) select sqlite_version(*)
488
-  (15.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
489
-  (9.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
383
+  (36.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
384
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
490
385
   (0.1ms) PRAGMA index_list("schema_migrations")
491
-  (9.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
492
-  (0.2ms) SELECT version FROM "schema_migrations"
493
-  (11.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
386
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
387
+  (0.1ms) SELECT version FROM "schema_migrations"
388
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
494
389
  Connecting to database specified by database.yml
495
390
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
496
-  (0.2ms) select sqlite_version(*)
497
-  (15.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
498
-  (10.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
391
+  (0.1ms) select sqlite_version(*)
392
+  (42.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
393
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
499
394
   (0.1ms) PRAGMA index_list("schema_migrations")
500
-  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
501
-  (0.2ms) SELECT version FROM "schema_migrations"
502
-  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
503
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
395
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
+  (0.1ms) SELECT version FROM "schema_migrations"
397
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
398
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
504
399
  Migrating to CreateCities (20120606125058)
505
-  (0.1ms) begin transaction
506
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
507
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
400
+  (0.0ms) begin transaction
401
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
402
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
508
403
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
509
-  (10.8ms) commit transaction
404
+  (3.0ms) commit transaction
510
405
   (0.1ms) begin transaction
511
406
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
512
- SQL (17.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Mon, 26 Nov 2012 13:23:29 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 26 Nov 2012 13:23:29 UTC +00:00]]
513
-  (7.7ms) commit transaction
514
-  (0.2ms) begin transaction
515
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
516
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 26 Nov 2012 13:23:29 UTC +00:00], ["name", "Paris"], ["updated_at", Mon, 26 Nov 2012 13:23:29 UTC +00:00]]
517
-  (6.6ms) commit transaction
518
- Connecting to database specified by database.yml
519
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
520
-  (0.2ms) select sqlite_version(*)
521
-  (14.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
522
-  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
523
-  (0.1ms) PRAGMA index_list("schema_migrations")
524
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
525
-  (0.2ms) SELECT version FROM "schema_migrations"
526
-  (8.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
407
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00]]
408
+  (3.0ms) commit transaction
527
409
   (0.1ms) begin transaction
528
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
529
- SQL (2.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Mon, 26 Nov 2012 13:23:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 26 Nov 2012 13:23:34 UTC +00:00]]
530
-  (8.1ms) commit transaction
410
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
411
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00]]
412
+  (2.8ms) commit transaction
531
413
  Connecting to database specified by database.yml
532
414
  Connecting to database specified by database.yml
533
415
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
534
416
  Migrating to CreatePeople (20120606125104)
535
417
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
536
-  (0.1ms) select sqlite_version(*)
537
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
418
+  (0.0ms) select sqlite_version(*)
419
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
538
420
   (0.0ms) PRAGMA index_list("people")
539
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
540
-  (0.2ms) select sqlite_version(*)
541
-  (17.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
542
-  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
421
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
422
+  (0.1ms) select sqlite_version(*)
423
+  (32.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
424
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
543
425
   (0.1ms) PRAGMA index_list("schema_migrations")
544
-  (11.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
545
-  (0.2ms) SELECT version FROM "schema_migrations"
546
-  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
426
+  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
+  (0.1ms) SELECT version FROM "schema_migrations"
428
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
547
429
  Connecting to database specified by database.yml
548
430
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
549
-  (0.2ms) select sqlite_version(*)
550
-  (12.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
551
-  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
431
+  (0.1ms) select sqlite_version(*)
432
+  (39.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
433
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
552
434
   (0.1ms) PRAGMA index_list("schema_migrations")
553
-  (14.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
554
-  (0.2ms) SELECT version FROM "schema_migrations"
555
-  (10.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
556
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
435
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
+  (0.1ms) SELECT version FROM "schema_migrations"
437
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
438
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
557
439
  Migrating to CreateCities (20120606125058)
558
-  (0.1ms) begin transaction
559
-  (0.8ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
560
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
561
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
562
-  (10.9ms) commit transaction
563
-  (0.2ms) begin transaction
440
+  (0.0ms) begin transaction
441
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
442
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
443
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
444
+  (4.3ms) commit transaction
445
+  (0.1ms) begin transaction
564
446
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
565
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 29 Nov 2012 12:38:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 12:38:00 UTC +00:00]]
566
-  (7.2ms) commit transaction
447
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00]]
448
+  (2.8ms) commit transaction
567
449
   (0.1ms) begin transaction
568
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
569
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Nov 2012 12:38:00 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 29 Nov 2012 12:38:00 UTC +00:00]]
570
-  (8.9ms) commit transaction
450
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
451
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00]]
452
+  (2.9ms) commit transaction
571
453
  Connecting to database specified by database.yml
572
454
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
573
455
   (0.1ms) select sqlite_version(*)
574
-  (18.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
575
-  (14.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
456
+  (38.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
457
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
576
458
   (0.1ms) PRAGMA index_list("schema_migrations")
577
-  (14.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
578
-  (0.2ms) SELECT version FROM "schema_migrations"
579
-  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
459
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
460
+  (0.1ms) SELECT version FROM "schema_migrations"
461
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
580
462
   (0.1ms) begin transaction
581
463
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
582
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 12:38:05 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 12:38:05 UTC +00:00]]
583
-  (8.4ms) commit transaction
584
- Connecting to database specified by database.yml
585
- Connecting to database specified by database.yml
586
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
587
- Migrating to CreatePeople (20120606125104)
588
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
589
-  (0.1ms) select sqlite_version(*)
590
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
591
-  (0.0ms) PRAGMA index_list("people")
592
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
593
-  (0.2ms) select sqlite_version(*)
594
-  (13.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
595
-  (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
596
-  (0.1ms) PRAGMA index_list("schema_migrations")
597
-  (10.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
598
-  (0.2ms) SELECT version FROM "schema_migrations"
599
-  (8.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
464
+ SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:12:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:12:04 UTC +00:00]]
465
+  (2.8ms) commit transaction
600
466
  Connecting to database specified by database.yml
601
467
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
602
468
   (0.1ms) select sqlite_version(*)
603
-  (13.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
604
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
469
+  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
470
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
605
471
   (0.1ms) PRAGMA index_list("schema_migrations")
606
-  (10.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
607
-  (0.2ms) SELECT version FROM "schema_migrations"
608
-  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
472
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
473
+  (0.1ms) SELECT version FROM "schema_migrations"
474
+  (5.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
609
475
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
610
476
  Migrating to CreateCities (20120606125058)
611
477
   (0.0ms) begin transaction
612
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
478
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
613
479
   (0.1ms) ALTER TABLE "people" ADD "city_id" integer
614
480
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
615
-  (9.4ms) commit transaction
616
-  (0.2ms) begin transaction
481
+  (3.7ms) commit transaction
482
+  (0.1ms) begin transaction
617
483
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
618
- SQL (2.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 29 Nov 2012 12:39:43 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 12:39:43 UTC +00:00]]
619
-  (8.3ms) commit transaction
484
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00]]
485
+  (2.9ms) commit transaction
620
486
   (0.1ms) begin transaction
621
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
622
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Nov 2012 12:39:43 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 29 Nov 2012 12:39:43 UTC +00:00]]
623
-  (7.4ms) commit transaction
487
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
488
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00]]
489
+  (3.6ms) commit transaction
624
490
  Connecting to database specified by database.yml
625
491
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
626
492
   (0.1ms) select sqlite_version(*)
627
-  (11.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
628
-  (10.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
493
+  (43.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
494
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
629
495
   (0.1ms) PRAGMA index_list("schema_migrations")
630
-  (9.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
631
-  (0.2ms) SELECT version FROM "schema_migrations"
632
-  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
496
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
497
+  (0.1ms) SELECT version FROM "schema_migrations"
498
+  (29.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
499
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
500
+ Migrating to CreateCities (20120606125058)
501
+  (0.0ms) begin transaction
502
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
503
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
504
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
505
+  (3.0ms) commit transaction
506
+  (0.1ms) begin transaction
507
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
508
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00]]
509
+  (2.9ms) commit transaction
633
510
   (0.0ms) begin transaction
511
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
512
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00]]
513
+  (2.9ms) commit transaction
514
+ Connecting to database specified by database.yml
515
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
516
+  (0.1ms) select sqlite_version(*)
517
+  (42.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
518
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
519
+  (0.1ms) PRAGMA index_list("schema_migrations")
520
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
521
+  (0.1ms) SELECT version FROM "schema_migrations"
522
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
523
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
524
+ Migrating to CreateCities (20120606125058)
525
+  (0.0ms) begin transaction
526
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
527
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
528
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
529
+  (3.3ms) commit transaction
530
+  (0.1ms) begin transaction
634
531
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
635
- SQL (2.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 12:39:47 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 12:39:47 UTC +00:00]]
636
-  (11.7ms) commit transaction
532
+ SQL (3.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00]]
533
+  (2.9ms) commit transaction
534
+  (0.1ms) begin transaction
535
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
536
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00]]
537
+  (2.9ms) commit transaction
538
+ Connecting to database specified by database.yml
539
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
540
+  (0.1ms) select sqlite_version(*)
541
+  (38.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
542
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
543
+  (0.1ms) PRAGMA index_list("schema_migrations")
544
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
545
+  (0.1ms) SELECT version FROM "schema_migrations"
546
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
547
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
548
+ Migrating to CreateCities (20120606125058)
549
+  (0.0ms) begin transaction
550
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
551
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
552
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
553
+  (3.2ms) commit transaction
554
+  (0.1ms) begin transaction
555
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
556
+ SQL (3.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00]]
557
+  (2.8ms) commit transaction
558
+  (0.1ms) begin transaction
559
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
560
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00]]
561
+  (2.9ms) commit transaction
562
+ Connecting to database specified by database.yml
563
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
564
+  (0.1ms) select sqlite_version(*)
565
+  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
566
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
567
+  (0.1ms) PRAGMA index_list("schema_migrations")
568
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
569
+  (0.1ms) SELECT version FROM "schema_migrations"
570
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
571
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
572
+ Migrating to CreateCities (20120606125058)
573
+  (0.0ms) begin transaction
574
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
575
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
576
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
577
+  (5.0ms) commit transaction
578
+  (0.1ms) begin transaction
579
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
580
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00]]
581
+  (2.9ms) commit transaction
582
+  (0.1ms) begin transaction
583
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
584
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00]]
585
+  (3.6ms) commit transaction
586
+ Connecting to database specified by database.yml
587
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
588
+  (0.1ms) select sqlite_version(*)
589
+  (38.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
590
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
591
+  (0.1ms) PRAGMA index_list("schema_migrations")
592
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
593
+  (0.1ms) SELECT version FROM "schema_migrations"
594
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
595
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
596
+ Migrating to CreateCities (20120606125058)
597
+  (0.0ms) begin transaction
598
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
599
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
600
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
601
+  (3.0ms) commit transaction
602
+  (0.1ms) begin transaction
603
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
604
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00]]
605
+  (2.9ms) commit transaction
606
+  (0.1ms) begin transaction
607
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
608
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00]]
609
+  (2.9ms) commit transaction
610
+ Connecting to database specified by database.yml
611
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
612
+  (0.1ms) select sqlite_version(*)
613
+  (45.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
614
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
615
+  (0.1ms) PRAGMA index_list("schema_migrations")
616
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
617
+  (0.1ms) SELECT version FROM "schema_migrations"
618
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
619
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
620
+ Migrating to CreateCities (20120606125058)
621
+  (0.0ms) begin transaction
622
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
623
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
624
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
625
+  (3.0ms) commit transaction
626
+  (0.1ms) begin transaction
627
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
628
+ SQL (3.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00]]
629
+  (2.9ms) commit transaction
630
+  (0.1ms) begin transaction
631
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
632
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00]]
633
+  (2.8ms) commit transaction
634
+ Connecting to database specified by database.yml
635
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
636
+  (0.1ms) select sqlite_version(*)
637
+  (44.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
638
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
639
+  (0.1ms) PRAGMA index_list("schema_migrations")
640
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
641
+  (0.1ms) SELECT version FROM "schema_migrations"
642
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
643
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
644
+ Migrating to CreateCities (20120606125058)
645
+  (0.0ms) begin transaction
646
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
647
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
648
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
649
+  (3.0ms) commit transaction
650
+  (0.0ms) begin transaction
651
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
652
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00]]
653
+  (2.9ms) commit transaction
654
+  (0.1ms) begin transaction
655
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
656
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00]]
657
+  (2.9ms) commit transaction
658
+ Connecting to database specified by database.yml
659
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
660
+  (0.1ms) select sqlite_version(*)
661
+  (41.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
662
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
663
+  (0.1ms) PRAGMA index_list("schema_migrations")
664
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
665
+  (0.1ms) SELECT version FROM "schema_migrations"
666
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
667
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
668
+ Migrating to CreateCities (20120606125058)
669
+  (0.0ms) begin transaction
670
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
671
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
672
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
673
+  (3.4ms) commit transaction
674
+  (0.1ms) begin transaction
675
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
676
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00]]
677
+  (2.8ms) commit transaction
678
+  (0.1ms) begin transaction
679
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
680
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00]]
681
+  (2.9ms) commit transaction
682
+ Connecting to database specified by database.yml
683
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
684
+  (0.1ms) select sqlite_version(*)
685
+  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
686
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
687
+  (0.1ms) PRAGMA index_list("schema_migrations")
688
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
689
+  (0.1ms) SELECT version FROM "schema_migrations"
690
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
691
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
692
+ Migrating to CreateCities (20120606125058)
693
+  (0.1ms) begin transaction
694
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
695
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
696
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
697
+  (3.0ms) commit transaction
698
+  (0.1ms) begin transaction
699
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
700
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00]]
701
+  (4.4ms) commit transaction
702
+  (0.1ms) begin transaction
703
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
704
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00]]
705
+  (2.9ms) commit transaction
637
706
  Connecting to database specified by database.yml
638
707
  Connecting to database specified by database.yml
639
708
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
640
709
  Migrating to CreatePeople (20120606125104)
641
710
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
642
-  (0.1ms) select sqlite_version(*)
711
+  (0.0ms) select sqlite_version(*)
643
712
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
644
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
645
-  (0.2ms) select sqlite_version(*)
646
-  (14.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
647
-  (12.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
648
-  (10.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
649
-  (0.2ms) SELECT version FROM "schema_migrations"
650
-  (7.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
713
+  (0.0ms) PRAGMA index_list("people")
714
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
715
+  (0.0ms) select sqlite_version(*)
716
+  (31.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
717
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
718
+  (0.1ms) PRAGMA index_list("schema_migrations")
719
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
720
+  (0.1ms) SELECT version FROM "schema_migrations"
721
+  (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
651
722
  Connecting to database specified by database.yml
652
723
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
653
-  (0.2ms) select sqlite_version(*)
654
-  (9.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
655
-  (10.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
656
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
657
-  (0.2ms) SELECT version FROM "schema_migrations"
658
-  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
659
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
724
+  (0.1ms) select sqlite_version(*)
725
+  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
726
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
727
+  (0.1ms) PRAGMA index_list("schema_migrations")
728
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
+  (0.1ms) SELECT version FROM "schema_migrations"
730
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
731
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
660
732
  Migrating to CreateCities (20120606125058)
733
+  (0.0ms) begin transaction
734
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
735
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
736
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
737
+  (2.8ms) commit transaction
661
738
   (0.1ms) begin transaction
662
-  (0.8ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
663
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
664
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
665
-  (10.0ms) commit transaction
666
-  (0.2ms) begin transaction
667
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
668
- SQL (5.6ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 29 Nov 2012 13:43:27 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 13:43:27 UTC +00:00]]
669
-  (7.6ms) commit transaction
670
-  (0.2ms) begin transaction
671
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
672
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Nov 2012 13:43:28 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 29 Nov 2012 13:43:28 UTC +00:00]]
673
-  (7.0ms) commit transaction
739
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
740
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00]]
741
+  (2.9ms) commit transaction
742
+  (0.1ms) begin transaction
743
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
744
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00]]
745
+  (2.9ms) commit transaction
674
746
  Connecting to database specified by database.yml
675
747
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
676
748
   (0.1ms) select sqlite_version(*)
677
-  (13.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
678
-  (13.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
679
-  (13.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
680
-  (0.2ms) SELECT version FROM "schema_migrations"
681
-  (11.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
682
-  (0.1ms) begin transaction
683
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
684
- SQL (3.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 13:43:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 13:43:34 UTC +00:00]]
685
-  (58.2ms) commit transaction
749
+  (41.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
750
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
751
+  (0.1ms) PRAGMA index_list("schema_migrations")
752
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
753
+  (0.1ms) SELECT version FROM "schema_migrations"
754
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
755
+  (0.0ms) begin transaction
756
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
757
+ SQL (3.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00]]
758
+  (2.5ms) commit transaction
686
759
  Connecting to database specified by database.yml
687
760
  Connecting to database specified by database.yml
688
761
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
689
762
  Migrating to CreatePeople (20120606125104)
690
763
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
691
-  (0.1ms) select sqlite_version(*)
764
+  (0.0ms) select sqlite_version(*)
692
765
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
766
+  (0.0ms) PRAGMA index_list("people")
767
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
768
+  (0.1ms) select sqlite_version(*)
769
+  (36.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
770
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
771
+  (0.1ms) PRAGMA index_list("schema_migrations")
772
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
773
+  (0.1ms) SELECT version FROM "schema_migrations"
774
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
775
+ Connecting to database specified by database.yml
776
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
777
+  (0.1ms) select sqlite_version(*)
778
+  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
779
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
780
+  (0.1ms) PRAGMA index_list("schema_migrations")
781
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
782
+  (0.1ms) SELECT version FROM "schema_migrations"
783
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
784
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
785
+ Migrating to CreateCities (20120606125058)
786
+  (0.0ms) begin transaction
787
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
788
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
789
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
790
+  (3.2ms) commit transaction
791
+  (0.1ms) begin transaction
792
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
793
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00]]
794
+  (2.9ms) commit transaction
795
+  (0.1ms) begin transaction
796
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
797
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00]]
798
+  (2.9ms) commit transaction
799
+ Connecting to database specified by database.yml
800
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
801
+  (0.1ms) select sqlite_version(*)
802
+  (42.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
803
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
804
+  (0.1ms) PRAGMA index_list("schema_migrations")
805
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
806
+  (0.1ms) SELECT version FROM "schema_migrations"
807
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
808
+  (0.1ms) begin transaction
809
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
810
+ SQL (3.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:38:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:38:17 UTC +00:00]]
811
+  (6.6ms) commit transaction
812
+ Connecting to database specified by database.yml
693
813
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
694
814
   (0.2ms) select sqlite_version(*)
695
-  (13.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
696
-  (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
697
-  (10.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
698
-  (0.3ms) SELECT version FROM "schema_migrations"
699
-  (8.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
815
+  (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
816
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
817
+  (0.1ms) PRAGMA index_list("schema_migrations")
818
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
819
+  (0.2ms) SELECT version FROM "schema_migrations"
820
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
821
+ Connecting to database specified by database.yml
822
+ Connecting to database specified by database.yml
823
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
824
+ Migrating to CreatePeople (20120606125104)
825
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
826
+  (0.3ms) select sqlite_version(*)
827
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
828
+  (0.0ms) PRAGMA index_list("people")
829
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
+  (0.2ms) select sqlite_version(*)
831
+  (3.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
832
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
833
+  (0.1ms) PRAGMA index_list("schema_migrations")
834
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
+  (0.1ms) SELECT version FROM "schema_migrations"
836
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
700
837
  Connecting to database specified by database.yml
701
838
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
702
839
   (0.2ms) select sqlite_version(*)
703
-  (11.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
704
-  (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
705
-  (11.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
706
-  (0.2ms) SELECT version FROM "schema_migrations"
707
-  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
708
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
840
+  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
841
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
842
+  (0.1ms) PRAGMA index_list("schema_migrations")
843
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
844
+  (0.2ms) SELECT version FROM "schema_migrations"
845
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
846
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
709
847
  Migrating to CreateCities (20120606125058)
848
+  (0.0ms) begin transaction
849
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
850
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
851
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
852
+  (4.5ms) commit transaction
710
853
   (0.1ms) begin transaction
711
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
712
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
713
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
714
-  (9.4ms) commit transaction
715
-  (0.2ms) begin transaction
716
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
717
- SQL (4.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 29 Nov 2012 13:44:39 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 13:44:39 UTC +00:00]]
718
-  (7.7ms) commit transaction
719
-  (0.2ms) begin transaction
720
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
721
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Nov 2012 13:44:39 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 29 Nov 2012 13:44:39 UTC +00:00]]
722
-  (9.8ms) commit transaction
854
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
855
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00]]
856
+  (2.9ms) commit transaction
857
+  (0.1ms) begin transaction
858
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
859
+ SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00]]
860
+  (2.9ms) commit transaction
861
+ Connecting to database specified by database.yml
723
862
  Connecting to database specified by database.yml
724
863
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
725
-  (0.2ms) select sqlite_version(*)
726
-  (9.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
727
-  (7.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
728
-  (7.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
864
+ Migrating to CreatePeople (20120606125104)
865
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
866
+  (0.2ms) select sqlite_version(*)
867
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
868
+  (0.0ms) PRAGMA index_list("people")
869
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
870
+  (0.2ms) select sqlite_version(*)
871
+  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
872
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
873
+  (0.1ms) PRAGMA index_list("schema_migrations")
874
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
875
   (0.1ms) SELECT version FROM "schema_migrations"
730
-  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
876
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
877
+ Connecting to database specified by database.yml
878
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
879
+  (0.3ms) select sqlite_version(*)
880
+  (37.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
881
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
882
+  (0.1ms) PRAGMA index_list("schema_migrations")
883
+  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
884
+  (0.2ms) SELECT version FROM "schema_migrations"
885
+  (9.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
886
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
887
+ Migrating to CreateCities (20120606125058)
731
888
   (0.1ms) begin transaction
732
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
733
- SQL (4.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 13:44:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 13:44:46 UTC +00:00]]
734
-  (7.2ms) commit transaction
889
+  (0.5ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
891
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
892
+  (3.7ms) commit transaction
893
+  (0.3ms) begin transaction
894
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
895
+ SQL (6.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00]]
896
+  (3.8ms) commit transaction
897
+  (0.1ms) begin transaction
898
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
899
+ SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00]]
900
+  (2.8ms) commit transaction
735
901
  Connecting to database specified by database.yml
736
902
  Connecting to database specified by database.yml
737
903
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
738
904
  Migrating to CreatePeople (20120606125104)
739
905
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
740
-  (0.1ms) select sqlite_version(*)
906
+  (0.2ms) select sqlite_version(*)
741
907
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
908
+  (0.0ms) PRAGMA index_list("people")
909
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
910
+  (0.2ms) select sqlite_version(*)
911
+  (29.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
912
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
913
+  (0.1ms) PRAGMA index_list("schema_migrations")
914
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
915
+  (0.1ms) SELECT version FROM "schema_migrations"
916
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
917
+ Connecting to database specified by database.yml
742
918
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
743
-  (0.1ms) select sqlite_version(*)
744
-  (15.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
745
-  (10.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
746
-  (12.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
747
-  (0.2ms) SELECT version FROM "schema_migrations"
748
-  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
919
+  (0.3ms) select sqlite_version(*)
920
+  (38.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
921
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
922
+  (0.1ms) PRAGMA index_list("schema_migrations")
923
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
924
+  (0.1ms) SELECT version FROM "schema_migrations"
925
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
926
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
927
+ Migrating to CreateCities (20120606125058)
928
+  (0.1ms) begin transaction
929
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
930
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
931
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
932
+  (3.0ms) commit transaction
933
+  (0.1ms) begin transaction
934
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
935
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00]]
936
+  (2.8ms) commit transaction
937
+  (0.1ms) begin transaction
938
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
939
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00]]
940
+  (2.7ms) commit transaction
941
+ Connecting to database specified by database.yml
942
+ Connecting to database specified by database.yml
943
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
944
+ Migrating to CreatePeople (20120606125104)
945
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
946
+  (0.2ms) select sqlite_version(*)
947
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
948
+  (0.0ms) PRAGMA index_list("people")
949
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
950
+  (0.2ms) select sqlite_version(*)
951
+  (29.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
952
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
953
+  (0.1ms) PRAGMA index_list("schema_migrations")
954
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
955
+  (0.1ms) SELECT version FROM "schema_migrations"
956
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
749
957
  Connecting to database specified by database.yml
750
958
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
751
959
   (0.2ms) select sqlite_version(*)
752
-  (12.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
753
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
754
-  (12.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
755
-  (0.2ms) SELECT version FROM "schema_migrations"
756
-  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
757
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
960
+  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
961
+  (35.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
962
+  (0.1ms) PRAGMA index_list("schema_migrations")
963
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
+  (0.1ms) SELECT version FROM "schema_migrations"
965
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
966
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
758
967
  Migrating to CreateCities (20120606125058)
968
+  (0.0ms) begin transaction
969
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
970
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
971
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
972
+  (2.5ms) commit transaction
759
973
   (0.1ms) begin transaction
760
-  (0.9ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
761
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
762
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
763
-  (14.4ms) commit transaction
764
-  (0.2ms) begin transaction
765
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
766
- SQL (3.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 29 Nov 2012 15:41:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 15:41:18 UTC +00:00]]
767
-  (7.9ms) commit transaction
768
-  (0.2ms) begin transaction
769
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
770
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Nov 2012 15:41:18 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 29 Nov 2012 15:41:18 UTC +00:00]]
771
-  (6.9ms) commit transaction
974
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
975
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00]]
976
+  (2.8ms) commit transaction
977
+  (0.1ms) begin transaction
978
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
979
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00]]
980
+  (2.8ms) commit transaction
981
+ Connecting to database specified by database.yml
772
982
  Connecting to database specified by database.yml
773
983
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
774
-  (0.1ms) select sqlite_version(*)
775
-  (13.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
776
-  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
777
-  (10.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
778
-  (0.2ms) SELECT version FROM "schema_migrations"
779
-  (7.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
780
-  (0.0ms) begin transaction
781
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
782
- SQL (3.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 15:41:25 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 15:41:25 UTC +00:00]]
783
-  (8.9ms) commit transaction
984
+ Migrating to CreatePeople (20120606125104)
985
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
986
+  (0.2ms) select sqlite_version(*)
987
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
988
+  (0.0ms) PRAGMA index_list("people")
989
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
990
+  (0.2ms) select sqlite_version(*)
991
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
993
+  (0.1ms) PRAGMA index_list("schema_migrations")
994
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
995
+  (0.1ms) SELECT version FROM "schema_migrations"
996
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
784
997
  Connecting to database specified by database.yml
785
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
786
-  (0.1ms) select sqlite_version(*)
787
-  (37.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
788
-  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
789
-  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
790
-  (0.2ms) SELECT version FROM "schema_migrations"
791
-  (13.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
998
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
999
+  (0.2ms) select sqlite_version(*)
1000
+  (40.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1001
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1002
+  (0.1ms) PRAGMA index_list("schema_migrations")
1003
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1004
+  (0.1ms) SELECT version FROM "schema_migrations"
1005
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1006
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1007
+ Migrating to CreateCities (20120606125058)
1008
+  (0.1ms) begin transaction
1009
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1010
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1011
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1012
+  (3.3ms) commit transaction
1013
+  (0.1ms) begin transaction
1014
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1015
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00]]
1016
+  (2.8ms) commit transaction
1017
+  (0.1ms) begin transaction
1018
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1019
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00]]
1020
+  (2.7ms) commit transaction
792
1021
  Connecting to database specified by database.yml
793
1022
  Connecting to database specified by database.yml
794
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1023
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
795
1024
  Migrating to CreatePeople (20120606125104)
796
1025
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
797
-  (0.0ms) select sqlite_version(*)
1026
+  (0.2ms) select sqlite_version(*)
798
1027
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1028
+  (0.0ms) PRAGMA index_list("people")
1029
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1030
+  (0.2ms) select sqlite_version(*)
1031
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1032
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1033
+  (0.1ms) PRAGMA index_list("schema_migrations")
1034
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1035
+  (0.1ms) SELECT version FROM "schema_migrations"
1036
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1037
+ Connecting to database specified by database.yml
799
1038
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
800
1039
   (0.2ms) select sqlite_version(*)
801
-  (28.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
802
-  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
803
-  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
804
-  (0.0ms) SELECT version FROM "schema_migrations"
805
-  (11.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1040
+  (7.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1041
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1042
+  (0.1ms) PRAGMA index_list("schema_migrations")
1043
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1044
+  (0.1ms) SELECT version FROM "schema_migrations"
1045
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1046
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1047
+ Migrating to CreateCities (20120606125058)
1048
+  (0.0ms) begin transaction
1049
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1050
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1051
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1052
+  (3.0ms) commit transaction
1053
+  (0.1ms) begin transaction
1054
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1055
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1056
+  (2.9ms) commit transaction
1057
+  (0.2ms) begin transaction
1058
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1059
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1060
+  (2.9ms) commit transaction
806
1061
  Connecting to database specified by database.yml
807
1062
  Connecting to database specified by database.yml
808
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1063
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
809
1064
  Migrating to CreatePeople (20120606125104)
810
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
811
-  (0.0ms) select sqlite_version(*)
812
1065
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
813
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
814
-  (0.1ms) select sqlite_version(*)
815
-  (25.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
816
-  (13.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
817
-  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
818
-  (0.2ms) SELECT version FROM "schema_migrations"
819
-  (12.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1066
+  (0.2ms) select sqlite_version(*)
1067
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1068
+  (0.0ms) PRAGMA index_list("people")
1069
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1070
+  (0.2ms) select sqlite_version(*)
1071
+  (26.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1072
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1073
+  (0.1ms) PRAGMA index_list("schema_migrations")
1074
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1075
+  (0.1ms) SELECT version FROM "schema_migrations"
1076
+  (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
820
1077
  Connecting to database specified by database.yml
821
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
822
-  (0.1ms) select sqlite_version(*)
823
-  (18.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
824
-  (16.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
825
-  (14.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
-  (0.2ms) SELECT version FROM "schema_migrations"
827
-  (15.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
828
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1078
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1079
+  (0.2ms) select sqlite_version(*)
1080
+  (44.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1081
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1082
+  (0.1ms) PRAGMA index_list("schema_migrations")
1083
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
+  (0.1ms) SELECT version FROM "schema_migrations"
1085
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1086
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
829
1087
  Migrating to CreateCities (20120606125058)
830
-  (0.1ms) begin transaction
831
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
832
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
833
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
834
-  (11.3ms) commit transaction
835
-  (0.0ms) begin transaction
836
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
837
- SQL (15.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:03:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:03:00 UTC +00:00]]
838
-  (11.0ms) commit transaction
839
1088
   (0.1ms) begin transaction
840
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
841
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:03:00 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:03:00 UTC +00:00]]
842
-  (10.9ms) commit transaction
1089
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1090
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1091
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1092
+  (3.0ms) commit transaction
1093
+  (0.1ms) begin transaction
1094
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1095
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00]]
1096
+  (2.9ms) commit transaction
1097
+  (0.2ms) begin transaction
1098
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1099
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00]]
1100
+  (3.0ms) commit transaction
843
1101
  Connecting to database specified by database.yml
844
1102
  Connecting to database specified by database.yml
845
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1103
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
846
1104
  Migrating to CreatePeople (20120606125104)
847
1105
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
848
-  (0.0ms) select sqlite_version(*)
1106
+  (0.2ms) select sqlite_version(*)
849
1107
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
850
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
851
-  (0.1ms) select sqlite_version(*)
852
-  (24.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
853
-  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
854
-  (13.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
855
-  (0.2ms) SELECT version FROM "schema_migrations"
856
-  (14.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1108
+  (0.0ms) PRAGMA index_list("people")
1109
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1110
+  (0.2ms) select sqlite_version(*)
1111
+  (26.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1112
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1113
+  (0.1ms) PRAGMA index_list("schema_migrations")
1114
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1115
+  (0.1ms) SELECT version FROM "schema_migrations"
1116
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
857
1117
  Connecting to database specified by database.yml
858
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
859
-  (0.1ms) select sqlite_version(*)
860
-  (17.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
861
-  (13.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
862
-  (13.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
863
-  (0.2ms) SELECT version FROM "schema_migrations"
864
-  (11.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
865
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1118
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1119
+  (0.2ms) select sqlite_version(*)
1120
+  (41.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1121
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1122
+  (0.1ms) PRAGMA index_list("schema_migrations")
1123
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1124
+  (0.1ms) SELECT version FROM "schema_migrations"
1125
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1126
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
866
1127
  Migrating to CreateCities (20120606125058)
867
-  (0.1ms) begin transaction
868
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
869
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
870
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
871
-  (10.6ms) commit transaction
872
-  (0.0ms) begin transaction
873
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
874
- SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:03:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:03:17 UTC +00:00]]
875
-  (10.9ms) commit transaction
876
1128
   (0.1ms) begin transaction
877
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
878
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:03:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:03:17 UTC +00:00]]
879
-  (11.0ms) commit transaction
1129
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1130
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1131
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1132
+  (2.9ms) commit transaction
1133
+  (0.1ms) begin transaction
1134
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1135
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00]]
1136
+  (2.9ms) commit transaction
1137
+  (0.1ms) begin transaction
1138
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1139
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00]]
1140
+  (2.9ms) commit transaction
880
1141
  Connecting to database specified by database.yml
881
1142
  Connecting to database specified by database.yml
882
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1143
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
883
1144
  Migrating to CreatePeople (20120606125104)
884
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
885
-  (0.0ms) select sqlite_version(*)
886
1145
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
887
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
888
-  (0.1ms) select sqlite_version(*)
889
-  (27.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
-  (18.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
891
-  (19.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
892
-  (0.2ms) SELECT version FROM "schema_migrations"
893
-  (14.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1146
+  (0.2ms) select sqlite_version(*)
1147
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1148
+  (0.0ms) PRAGMA index_list("people")
1149
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1150
+  (0.2ms) select sqlite_version(*)
1151
+  (25.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1152
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1153
+  (0.0ms) PRAGMA index_list("schema_migrations")
1154
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
+  (0.1ms) SELECT version FROM "schema_migrations"
1156
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
894
1157
  Connecting to database specified by database.yml
895
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
896
-  (0.1ms) select sqlite_version(*)
897
-  (17.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
898
-  (16.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
899
-  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
900
-  (0.2ms) SELECT version FROM "schema_migrations"
901
-  (12.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
902
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1158
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1159
+  (0.2ms) select sqlite_version(*)
1160
+  (43.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1161
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
+  (0.1ms) PRAGMA index_list("schema_migrations")
1163
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1164
+  (0.1ms) SELECT version FROM "schema_migrations"
1165
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1166
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
903
1167
  Migrating to CreateCities (20120606125058)
904
-  (0.1ms) begin transaction
905
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
906
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
907
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
908
-  (10.7ms) commit transaction
909
-  (0.0ms) begin transaction
910
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
911
- SQL (15.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:04:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:04:17 UTC +00:00]]
912
-  (12.1ms) commit transaction
913
1168
   (0.1ms) begin transaction
914
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
915
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:04:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:04:17 UTC +00:00]]
916
-  (11.9ms) commit transaction
1169
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1170
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1171
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1172
+  (3.3ms) commit transaction
1173
+  (0.1ms) begin transaction
1174
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1175
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00]]
1176
+  (2.8ms) commit transaction
1177
+  (0.1ms) begin transaction
1178
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1179
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00]]
1180
+  (2.8ms) commit transaction
917
1181
  Connecting to database specified by database.yml
918
1182
  Connecting to database specified by database.yml
919
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1183
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
920
1184
  Migrating to CreatePeople (20120606125104)
921
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
922
-  (0.0ms) select sqlite_version(*)
923
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
924
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1185
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1186
+  (0.2ms) select sqlite_version(*)
1187
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1188
+  (0.0ms) PRAGMA index_list("people")
1189
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1190
+  (0.2ms) select sqlite_version(*)
1191
+  (26.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1192
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1193
+  (0.1ms) PRAGMA index_list("schema_migrations")
1194
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1195
+  (0.1ms) SELECT version FROM "schema_migrations"
1196
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1197
+ Connecting to database specified by database.yml
1198
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
925
1199
   (0.2ms) select sqlite_version(*)
926
-  (28.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
927
-  (14.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
928
-  (15.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
929
-  (0.2ms) SELECT version FROM "schema_migrations"
930
-  (14.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1200
+  (44.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1201
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1202
+  (0.1ms) PRAGMA index_list("schema_migrations")
1203
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1204
+  (0.1ms) SELECT version FROM "schema_migrations"
1205
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1206
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1207
+ Migrating to CreateCities (20120606125058)
1208
+  (0.1ms) begin transaction
1209
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1210
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1211
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1212
+  (3.3ms) commit transaction
1213
+  (0.1ms) begin transaction
1214
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1215
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00]]
1216
+  (2.9ms) commit transaction
1217
+  (0.1ms) begin transaction
1218
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1219
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00]]
1220
+  (2.9ms) commit transaction
931
1221
  Connecting to database specified by database.yml
932
1222
  Connecting to database specified by database.yml
933
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1223
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
934
1224
  Migrating to CreatePeople (20120606125104)
935
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
936
-  (0.0ms) select sqlite_version(*)
937
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1225
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1226
+  (0.2ms) select sqlite_version(*)
1227
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1228
+  (0.0ms) PRAGMA index_list("people")
1229
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1230
+  (0.2ms) select sqlite_version(*)
1231
+  (23.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1232
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1233
+  (0.1ms) PRAGMA index_list("schema_migrations")
1234
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1235
+  (0.3ms) SELECT version FROM "schema_migrations"
1236
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1237
+ Connecting to database specified by database.yml
938
1238
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
939
-  (0.1ms) select sqlite_version(*)
940
-  (24.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
941
-  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
942
-  (13.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
943
-  (0.2ms) SELECT version FROM "schema_migrations"
944
-  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1239
+  (0.2ms) select sqlite_version(*)
1240
+  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1241
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1242
+  (0.1ms) PRAGMA index_list("schema_migrations")
1243
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1244
+  (0.1ms) SELECT version FROM "schema_migrations"
1245
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1246
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1247
+ Migrating to CreateCities (20120606125058)
1248
+  (0.1ms) begin transaction
1249
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1250
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1251
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1252
+  (3.2ms) commit transaction
1253
+  (0.1ms) begin transaction
1254
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1255
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00]]
1256
+  (2.9ms) commit transaction
1257
+  (0.2ms) begin transaction
1258
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1259
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00]]
1260
+  (2.8ms) commit transaction
945
1261
  Connecting to database specified by database.yml
946
1262
  Connecting to database specified by database.yml
947
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1263
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
948
1264
  Migrating to CreatePeople (20120606125104)
949
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
950
-  (0.0ms) select sqlite_version(*)
951
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
952
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1265
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1266
+  (0.2ms) select sqlite_version(*)
1267
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1268
+  (0.0ms) PRAGMA index_list("people")
1269
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1270
+  (0.2ms) select sqlite_version(*)
1271
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1272
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1273
+  (0.1ms) PRAGMA index_list("schema_migrations")
1274
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
+  (0.1ms) SELECT version FROM "schema_migrations"
1276
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1277
+ Connecting to database specified by database.yml
1278
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
953
1279
   (0.2ms) select sqlite_version(*)
954
-  (18.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
955
-  (12.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
956
-  (12.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1280
+  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1281
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1282
+  (0.1ms) PRAGMA index_list("schema_migrations")
1283
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1284
+  (0.1ms) SELECT version FROM "schema_migrations"
1285
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1286
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1287
+ Migrating to CreateCities (20120606125058)
1288
+  (0.0ms) begin transaction
1289
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1290
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1291
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1292
+  (3.2ms) commit transaction
1293
+  (0.1ms) begin transaction
1294
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1295
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00]]
1296
+  (2.7ms) commit transaction
1297
+  (0.1ms) begin transaction
1298
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1299
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00]]
1300
+  (2.7ms) commit transaction
1301
+ Connecting to database specified by database.yml
1302
+ Connecting to database specified by database.yml
1303
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1304
+ Migrating to CreatePeople (20120606125104)
1305
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1306
+  (0.2ms) select sqlite_version(*)
1307
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1308
+  (0.0ms) PRAGMA index_list("people")
1309
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1310
+  (0.2ms) select sqlite_version(*)
1311
+  (27.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1312
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1313
+  (0.1ms) PRAGMA index_list("schema_migrations")
1314
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
957
1315
   (0.1ms) SELECT version FROM "schema_migrations"
958
-  (9.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1316
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1317
+ Connecting to database specified by database.yml
1318
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1319
+  (0.2ms) select sqlite_version(*)
1320
+  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1321
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1322
+  (0.1ms) PRAGMA index_list("schema_migrations")
1323
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1324
+  (0.1ms) SELECT version FROM "schema_migrations"
1325
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1326
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1327
+ Migrating to CreateCities (20120606125058)
1328
+  (0.1ms) begin transaction
1329
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1330
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1331
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1332
+  (3.1ms) commit transaction
1333
+  (0.1ms) begin transaction
1334
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1335
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1336
+  (2.8ms) commit transaction
1337
+  (0.1ms) begin transaction
1338
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1339
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1340
+  (2.8ms) commit transaction
959
1341
  Connecting to database specified by database.yml
960
1342
  Connecting to database specified by database.yml
961
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1343
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
962
1344
  Migrating to CreatePeople (20120606125104)
963
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
964
-  (0.0ms) select sqlite_version(*)
965
1345
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
966
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
967
-  (0.1ms) select sqlite_version(*)
968
-  (32.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
969
-  (12.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
970
-  (44.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
971
-  (0.2ms) SELECT version FROM "schema_migrations"
972
-  (13.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1346
+  (0.2ms) select sqlite_version(*)
1347
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1348
+  (0.0ms) PRAGMA index_list("people")
1349
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1350
+  (0.2ms) select sqlite_version(*)
1351
+  (29.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1352
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1353
+  (0.1ms) PRAGMA index_list("schema_migrations")
1354
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1355
+  (0.1ms) SELECT version FROM "schema_migrations"
1356
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
973
1357
  Connecting to database specified by database.yml
974
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
975
-  (0.1ms) select sqlite_version(*)
976
-  (18.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
977
-  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
978
-  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
979
-  (0.2ms) SELECT version FROM "schema_migrations"
980
-  (12.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
981
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1358
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1359
+  (0.2ms) select sqlite_version(*)
1360
+  (40.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1361
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1362
+  (0.1ms) PRAGMA index_list("schema_migrations")
1363
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1364
+  (0.1ms) SELECT version FROM "schema_migrations"
1365
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1366
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
982
1367
  Migrating to CreateCities (20120606125058)
983
-  (0.1ms) begin transaction
984
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
985
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
986
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
987
-  (10.8ms) commit transaction
988
-  (0.0ms) begin transaction
989
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
990
- SQL (14.6ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:13:09 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:09 UTC +00:00]]
991
-  (12.0ms) commit transaction
992
1368
   (0.1ms) begin transaction
993
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
994
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:13:09 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:13:09 UTC +00:00]]
995
-  (11.3ms) commit transaction
1369
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1370
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1371
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1372
+  (3.2ms) commit transaction
1373
+  (0.1ms) begin transaction
1374
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1375
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00]]
1376
+  (2.8ms) commit transaction
1377
+  (0.1ms) begin transaction
1378
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1379
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00]]
1380
+  (2.8ms) commit transaction
996
1381
  Connecting to database specified by database.yml
997
1382
  Connecting to database specified by database.yml
998
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1383
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
999
1384
  Migrating to CreatePeople (20120606125104)
1000
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
-  (0.0ms) select sqlite_version(*)
1002
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1003
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1004
-  (0.1ms) select sqlite_version(*)
1005
-  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1006
-  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1007
-  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1008
-  (0.2ms) SELECT version FROM "schema_migrations"
1009
-  (12.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1385
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1386
+  (0.2ms) select sqlite_version(*)
1387
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1388
+  (0.0ms) PRAGMA index_list("people")
1389
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1390
+  (0.2ms) select sqlite_version(*)
1391
+  (31.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1392
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1393
+  (0.1ms) PRAGMA index_list("schema_migrations")
1394
+  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1395
+  (0.1ms) SELECT version FROM "schema_migrations"
1396
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1010
1397
  Connecting to database specified by database.yml
1011
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1012
-  (0.1ms) select sqlite_version(*)
1013
-  (18.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1014
-  (15.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1015
-  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1016
-  (0.2ms) SELECT version FROM "schema_migrations"
1017
-  (13.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1018
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1398
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1399
+  (0.2ms) select sqlite_version(*)
1400
+  (41.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1401
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1402
+  (0.1ms) PRAGMA index_list("schema_migrations")
1403
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1404
+  (0.1ms) SELECT version FROM "schema_migrations"
1405
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1406
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1019
1407
  Migrating to CreateCities (20120606125058)
1020
-  (0.1ms) begin transaction
1021
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1022
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1023
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1024
-  (11.1ms) commit transaction
1025
-  (0.0ms) begin transaction
1026
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1027
- SQL (15.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:13:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:51 UTC +00:00]]
1028
-  (17.0ms) commit transaction
1029
1408
   (0.1ms) begin transaction
1030
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1031
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:13:51 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:13:51 UTC +00:00]]
1032
-  (64.8ms) commit transaction
1409
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1410
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1411
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1412
+  (3.4ms) commit transaction
1413
+  (0.1ms) begin transaction
1414
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1415
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00]]
1416
+  (2.7ms) commit transaction
1417
+  (0.1ms) begin transaction
1418
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1419
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00]]
1420
+  (2.8ms) commit transaction
1033
1421
  Connecting to database specified by database.yml
1034
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1422
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1035
1423
   (0.2ms) select sqlite_version(*)
1036
-  (20.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1037
-  (12.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1038
-  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1039
-  (0.2ms) SELECT version FROM "schema_migrations"
1040
-  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1041
-  (0.0ms) begin transaction
1042
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1043
- SQL (14.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:13:54 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:54 UTC +00:00]]
1044
-  (16.4ms) commit transaction
1424
+  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1425
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1426
+  (0.1ms) PRAGMA index_list("schema_migrations")
1427
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1428
+  (0.1ms) SELECT version FROM "schema_migrations"
1429
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1430
+  (0.1ms) begin transaction
1431
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1432
+ SQL (7.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 13:51:16 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:51:16 UTC +00:00]]
1433
+  (2.7ms) commit transaction
1434
+ Connecting to database specified by database.yml
1435
+
1436
+
1437
+ Started GET "/" for 127.0.0.1 at 2012-11-25 14:53:17 +0100
1438
+
1439
+ ActionController::RoutingError (No route matches [GET] "/"):
1440
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1441
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1442
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1443
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1444
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1445
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1446
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1447
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1448
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1449
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1450
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1451
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1452
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1453
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1454
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1455
+ /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1456
+ /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1457
+ /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1458
+
1459
+
1460
+ Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
1461
+
1462
+
1463
+ Started GET "/people" for 127.0.0.1 at 2012-11-25 14:53:20 +0100
1464
+ Processing by PeopleController#index as HTML
1465
+ Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.5ms)
1466
+ Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.5ms)
1467
+ Rendered shared/_sidebar.html.erb (2.3ms)
1468
+ Rendered people/index.html.erb within layouts/application (8.8ms)
1469
+ Compiled application.css (1ms) (pid 1948)
1470
+ Completed 500 Internal Server Error in 73ms
1471
+
1472
+ ActionView::Template::Error (couldn't find file 'jquery'
1473
+ (in /Users/pascal/Code/ruby/wagons/test/dummy/app/assets/javascripts/application.js:13)):
1474
+ 3: <head>
1475
+ 4: <title>Dummy</title>
1476
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1477
+ 6: <%= javascript_include_tag "application" %>
1478
+ 7: <%= csrf_meta_tags %>
1479
+ 8: </head>
1480
+ 9: <body>
1481
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1537380431507552604_2176532200'
1482
+
1483
+
1484
+ Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1485
+ Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1486
+ Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
1487
+
1488
+
1489
+ Started GET "/people" for 127.0.0.1 at 2012-11-25 14:53:48 +0100
1490
+ Processing by PeopleController#index as HTML
1491
+ Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.1ms)
1492
+ Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.0ms)
1493
+ Rendered shared/_sidebar.html.erb (1.0ms)
1494
+ Rendered people/index.html.erb within layouts/application (3.3ms)
1495
+ Compiled application.js (1ms) (pid 1948)
1496
+ Completed 200 OK in 55ms (Views: 55.0ms | ActiveRecord: 0.0ms)
1497
+
1498
+
1499
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:53:49 +0100
1500
+ Served asset /application.js - 200 OK (3ms)
1501
+
1502
+
1503
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:53:49 +0100
1504
+ Served asset /application.css - 200 OK (2ms)
1505
+
1506
+
1507
+ Started GET "/people" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1508
+ Processing by PeopleController#index as HTML
1509
+ Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.0ms)
1510
+ Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.0ms)
1511
+ Rendered shared/_sidebar.html.erb (1.1ms)
1512
+ Rendered people/index.html.erb within layouts/application (3.2ms)
1513
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1514
+
1515
+
1516
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1517
+ Served asset /application.js - 304 Not Modified (0ms)
1518
+
1519
+
1520
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1521
+ Served asset /application.css - 304 Not Modified (0ms)
1522
+ Connecting to database specified by database.yml
1523
+
1524
+
1525
+ Started GET "/people" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1526
+ Processing by PeopleController#index as HTML
1527
+ Rendered shared/_sidebar.html.erb (0.8ms)
1528
+ Rendered people/index.html.erb within layouts/application (8.0ms)
1529
+ Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms)
1530
+
1531
+
1532
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1533
+ Served asset /application.css - 304 Not Modified (2ms)
1534
+
1535
+
1536
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1537
+ Served asset /application.js - 304 Not Modified (2ms)
1538
+ Connecting to database specified by database.yml
1539
+
1540
+
1541
+ Started GET "/people" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1542
+ Processing by PeopleController#index as HTML
1543
+ Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.5ms)
1544
+ Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.4ms)
1545
+ Rendered shared/_sidebar.html.erb (1.9ms)
1546
+ Rendered people/index.html.erb within layouts/application (10.2ms)
1547
+ Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
1548
+
1549
+
1550
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1551
+ Served asset /application.js - 304 Not Modified (2ms)
1552
+
1553
+
1554
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1555
+ Served asset /application.css - 304 Not Modified (2ms)
1045
1556
  Connecting to database specified by database.yml
1046
1557
  Connecting to database specified by database.yml
1047
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1558
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1048
1559
  Migrating to CreatePeople (20120606125104)
1049
1560
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1050
-  (0.0ms) select sqlite_version(*)
1561
+  (0.2ms) select sqlite_version(*)
1051
1562
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1052
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1053
-  (0.2ms) select sqlite_version(*)
1054
-  (110.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1055
-  (12.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1056
-  (13.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1057
-  (0.2ms) SELECT version FROM "schema_migrations"
1058
-  (12.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1563
+  (0.0ms) PRAGMA index_list("people")
1564
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1565
+  (0.2ms) select sqlite_version(*)
1566
+  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1567
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1568
+  (0.1ms) PRAGMA index_list("schema_migrations")
1569
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1570
+  (0.1ms) SELECT version FROM "schema_migrations"
1571
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1059
1572
  Connecting to database specified by database.yml
1060
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1061
-  (0.1ms) select sqlite_version(*)
1062
-  (16.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1063
-  (12.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1064
-  (13.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1065
-  (0.2ms) SELECT version FROM "schema_migrations"
1066
-  (12.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1067
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1573
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1574
+  (0.2ms) select sqlite_version(*)
1575
+  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1576
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1577
+  (0.1ms) PRAGMA index_list("schema_migrations")
1578
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1579
+  (0.1ms) SELECT version FROM "schema_migrations"
1580
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1581
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1068
1582
  Migrating to CreateCities (20120606125058)
1069
-  (0.1ms) begin transaction
1070
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1071
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1072
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1073
-  (11.2ms) commit transaction
1074
-  (0.1ms) begin transaction
1075
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1076
- SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:14:14 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:14 UTC +00:00]]
1077
-  (13.8ms) commit transaction
1078
1583
   (0.1ms) begin transaction
1079
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1080
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:14:14 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:14:14 UTC +00:00]]
1081
-  (11.6ms) commit transaction
1584
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1585
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1586
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1587
+  (3.0ms) commit transaction
1588
+  (0.1ms) begin transaction
1589
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1590
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00]]
1591
+  (2.8ms) commit transaction
1592
+  (0.1ms) begin transaction
1593
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1594
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00]]
1595
+  (2.9ms) commit transaction
1082
1596
  Connecting to database specified by database.yml
1083
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1597
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1084
1598
   (0.2ms) select sqlite_version(*)
1085
-  (22.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1086
-  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1087
-  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1088
-  (0.2ms) SELECT version FROM "schema_migrations"
1089
-  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1090
-  (0.1ms) begin transaction
1091
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1092
- SQL (14.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:14:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:18 UTC +00:00]]
1093
-  (11.6ms) commit transaction
1599
+  (41.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1600
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1601
+  (0.1ms) PRAGMA index_list("schema_migrations")
1602
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1603
+  (0.1ms) SELECT version FROM "schema_migrations"
1604
+  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1605
+  (0.1ms) begin transaction
1606
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1607
+ SQL (16.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00]]
1608
+  (2.9ms) commit transaction
1094
1609
  Connecting to database specified by database.yml
1095
1610
  Connecting to database specified by database.yml
1096
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1611
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1097
1612
  Migrating to CreatePeople (20120606125104)
1098
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1099
-  (0.0ms) select sqlite_version(*)
1100
1613
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1101
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1102
-  (0.1ms) select sqlite_version(*)
1103
-  (27.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1104
-  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1105
-  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1106
-  (0.2ms) SELECT version FROM "schema_migrations"
1107
-  (12.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1614
+  (0.2ms) select sqlite_version(*)
1615
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1616
+  (0.0ms) PRAGMA index_list("people")
1617
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1618
+  (0.2ms) select sqlite_version(*)
1619
+  (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1620
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1621
+  (0.1ms) PRAGMA index_list("schema_migrations")
1622
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1623
+  (0.1ms) SELECT version FROM "schema_migrations"
1624
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1108
1625
  Connecting to database specified by database.yml
1109
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1110
-  (0.1ms) select sqlite_version(*)
1111
-  (19.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1112
-  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1113
-  (15.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1114
-  (0.2ms) SELECT version FROM "schema_migrations"
1115
-  (13.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1116
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1626
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1627
+  (0.2ms) select sqlite_version(*)
1628
+  (43.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1629
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1630
+  (0.1ms) PRAGMA index_list("schema_migrations")
1631
+  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1632
+  (0.1ms) SELECT version FROM "schema_migrations"
1633
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1634
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1117
1635
  Migrating to CreateCities (20120606125058)
1118
-  (0.1ms) begin transaction
1119
-  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1120
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1121
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1122
-  (12.5ms) commit transaction
1123
-  (0.1ms) begin transaction
1124
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1125
- SQL (14.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:14:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:38 UTC +00:00]]
1126
-  (12.4ms) commit transaction
1127
1636
   (0.1ms) begin transaction
1128
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1129
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:14:38 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:14:38 UTC +00:00]]
1130
-  (11.3ms) commit transaction
1637
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1638
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1639
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1640
+  (3.4ms) commit transaction
1641
+  (0.1ms) begin transaction
1642
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1643
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00]]
1644
+  (2.9ms) commit transaction
1645
+  (0.1ms) begin transaction
1646
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1647
+ SQL (0.7ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00]]
1648
+  (2.6ms) commit transaction
1131
1649
  Connecting to database specified by database.yml
1132
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1650
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1133
1651
   (0.2ms) select sqlite_version(*)
1134
-  (17.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1135
-  (13.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1136
-  (14.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1137
-  (0.2ms) SELECT version FROM "schema_migrations"
1138
-  (14.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1139
-  (0.2ms) begin transaction
1140
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1141
- SQL (15.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:14:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:42 UTC +00:00]]
1142
-  (13.6ms) commit transaction
1652
+  (44.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1653
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1654
+  (0.1ms) PRAGMA index_list("schema_migrations")
1655
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1656
+  (0.1ms) SELECT version FROM "schema_migrations"
1657
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1658
+  (0.1ms) begin transaction
1659
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1660
+ SQL (18.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 14:40:09 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:40:09 UTC +00:00]]
1661
+  (3.3ms) commit transaction
1143
1662
  Connecting to database specified by database.yml
1144
1663
  Connecting to database specified by database.yml
1145
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1664
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1146
1665
  Migrating to CreatePeople (20120606125104)
1147
1666
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1148
-  (0.1ms) select sqlite_version(*)
1667
+  (0.3ms) select sqlite_version(*)
1149
1668
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1150
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1151
-  (0.2ms) select sqlite_version(*)
1152
-  (21.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1153
-  (23.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1154
-  (18.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
-  (0.2ms) SELECT version FROM "schema_migrations"
1156
-  (17.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1669
+  (0.0ms) PRAGMA index_list("people")
1670
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1671
+  (0.2ms) select sqlite_version(*)
1672
+  (22.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1673
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1674
+  (0.1ms) PRAGMA index_list("schema_migrations")
1675
+  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1676
+  (0.1ms) SELECT version FROM "schema_migrations"
1677
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1157
1678
  Connecting to database specified by database.yml
1158
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1159
-  (0.1ms) select sqlite_version(*)
1160
-  (20.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1161
-  (13.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
-  (14.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1163
-  (0.2ms) SELECT version FROM "schema_migrations"
1164
-  (13.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1165
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1679
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1680
+  (0.2ms) select sqlite_version(*)
1681
+  (44.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1682
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1683
+  (0.1ms) PRAGMA index_list("schema_migrations")
1684
+  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1685
+  (0.1ms) SELECT version FROM "schema_migrations"
1686
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1687
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1166
1688
  Migrating to CreateCities (20120606125058)
1167
-  (0.1ms) begin transaction
1168
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1169
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1170
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1171
-  (13.1ms) commit transaction
1172
-  (0.2ms) begin transaction
1173
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1174
- SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 15:15:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 15:15:38 UTC +00:00]]
1175
-  (12.6ms) commit transaction
1176
1689
   (0.1ms) begin transaction
1177
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1178
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 15:15:38 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 15:15:38 UTC +00:00]]
1179
-  (11.1ms) commit transaction
1690
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1691
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1692
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1693
+  (2.7ms) commit transaction
1694
+  (0.1ms) begin transaction
1695
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1696
+ SQL (7.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00]]
1697
+  (3.5ms) commit transaction
1698
+  (0.1ms) begin transaction
1699
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1700
+ SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00]]
1701
+  (2.6ms) commit transaction
1180
1702
  Connecting to database specified by database.yml
1181
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1182
-  (0.2ms) select sqlite_version(*)
1183
-  (21.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1184
-  (14.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1185
-  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1703
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1704
+  (0.7ms) select sqlite_version(*)
1705
+  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1706
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1707
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1186
1708
   (0.1ms) SELECT version FROM "schema_migrations"
1187
-  (12.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1709
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1188
1710
   (0.1ms) begin transaction
1189
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1190
- SQL (14.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 15:15:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 15:15:42 UTC +00:00]]
1191
-  (13.6ms) commit transaction
1711
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1712
+ SQL (6.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 15:23:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 15:23:03 UTC +00:00]]
1713
+  (2.7ms) commit transaction
1192
1714
  Connecting to database specified by database.yml
1193
1715
  Connecting to database specified by database.yml
1194
-  (7.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1716
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1195
1717
  Migrating to CreatePeople (20120606125104)
1196
1718
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1197
1719
   (0.1ms) select sqlite_version(*)
1198
1720
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1199
1721
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1200
1722
   (0.2ms) select sqlite_version(*)
1201
-  (24.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1202
-  (13.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1203
-  (14.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1723
+  (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1724
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1725
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1204
1726
   (0.1ms) SELECT version FROM "schema_migrations"
1205
-  (16.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1727
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1206
1728
  Connecting to database specified by database.yml
1207
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1729
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1208
1730
   (0.2ms) select sqlite_version(*)
1209
-  (18.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1210
-  (14.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1211
-  (16.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1212
-  (0.2ms) SELECT version FROM "schema_migrations"
1213
-  (15.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1214
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1731
+  (39.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1732
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1733
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1734
+  (0.1ms) SELECT version FROM "schema_migrations"
1735
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1736
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1215
1737
  Migrating to CreateCities (20120606125058)
1216
-  (0.1ms) begin transaction
1217
-  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1218
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1219
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1220
-  (15.1ms) commit transaction
1738
+  (0.0ms) begin transaction
1739
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1740
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1741
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1742
+  (4.7ms) commit transaction
1221
1743
   (0.1ms) begin transaction
1222
1744
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1223
- SQL (16.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00]]
1224
-  (13.0ms) commit transaction
1225
-  (0.0ms) begin transaction
1745
+ SQL (4.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00]]
1746
+  (2.6ms) commit transaction
1747
+  (0.1ms) begin transaction
1226
1748
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1227
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00], ["name", "Paris"], ["updated_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00]]
1228
-  (12.7ms) commit transaction
1749
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00]]
1750
+  (3.5ms) commit transaction
1229
1751
  Connecting to database specified by database.yml
1230
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1752
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1231
1753
   (0.2ms) select sqlite_version(*)
1232
-  (14.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1233
-  (15.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1234
-  (16.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1235
-  (0.2ms) SELECT version FROM "schema_migrations"
1236
-  (16.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1237
-  (0.1ms) begin transaction
1754
+  (97.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1755
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1756
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1757
+  (0.1ms) SELECT version FROM "schema_migrations"
1758
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1759
+  (0.0ms) begin transaction
1238
1760
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1239
- SQL (15.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Mon, 03 Jun 2013 08:28:57 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 03 Jun 2013 08:28:57 UTC +00:00]]
1240
-  (12.9ms) commit transaction
1241
- Connecting to database specified by database.yml
1761
+ SQL (4.5ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 19 Apr 2013 15:31:58 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 19 Apr 2013 15:31:58 UTC +00:00]]
1762
+  (2.7ms) commit transaction
1242
1763
  Connecting to database specified by database.yml
1243
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1244
- Migrating to CreatePeople (20120606125104)
1245
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1246
-  (0.0ms) select sqlite_version(*)
1247
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1248
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1249
-  (0.1ms) select sqlite_version(*)
1250
-  (37.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1251
-  (14.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1252
-  (14.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1764
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1765
+  (0.2ms) select sqlite_version(*)
1766
+  (2.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1767
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1768
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1253
1769
   (0.2ms) SELECT version FROM "schema_migrations"
1254
-  (15.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1770
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1255
1771
  Connecting to database specified by database.yml
1256
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1772
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1257
1773
   (0.2ms) select sqlite_version(*)
1258
-  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1259
-  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1260
-  (14.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1261
-  (0.2ms) SELECT version FROM "schema_migrations"
1262
-  (15.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1263
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1774
+  (42.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1775
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1776
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1777
+  (0.1ms) SELECT version FROM "schema_migrations"
1778
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1779
+ Connecting to database specified by database.yml
1780
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1781
+  (0.1ms) select sqlite_version(*)
1782
+  (42.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1783
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1784
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1785
+  (0.1ms) SELECT version FROM "schema_migrations"
1786
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1787
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1264
1788
  Migrating to CreateCities (20120606125058)
1265
-  (0.1ms) begin transaction
1266
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1267
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1268
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1269
-  (15.1ms) commit transaction
1270
-  (0.2ms) begin transaction
1789
+  (0.0ms) begin transaction
1790
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1791
+  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1792
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1793
+  (3.4ms) commit transaction
1794
+  (0.1ms) begin transaction
1271
1795
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1272
- SQL (4.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00]]
1273
-  (13.4ms) commit transaction
1796
+ SQL (4.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00]]
1797
+  (2.9ms) commit transaction
1274
1798
   (0.1ms) begin transaction
1275
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1276
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00]]
1277
-  (12.2ms) commit transaction
1799
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1800
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00]]
1801
+  (3.5ms) commit transaction
1278
1802
  Connecting to database specified by database.yml
1279
-  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1280
-  (0.2ms) select sqlite_version(*)
1281
-  (15.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1282
-  (15.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1283
-  (14.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1284
-  (0.2ms) SELECT version FROM "schema_migrations"
1285
-  (14.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1803
+ Connecting to database specified by database.yml
1804
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1805
+  (0.3ms) select sqlite_version(*)
1806
+  (105.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1807
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1808
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1809
+  (0.1ms) SELECT version FROM "schema_migrations"
1810
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1811
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1812
+ Migrating to CreateCities (20120606125058)
1813
+  (0.0ms) begin transaction
1814
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1815
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1816
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1817
+  (3.7ms) commit transaction
1286
1818
   (0.1ms) begin transaction
1287
1819
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1288
- SQL (3.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 12:53:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 12:53:51 UTC +00:00]]
1289
-  (13.5ms) commit transaction
1820
+ SQL (4.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00]]
1821
+  (40.4ms) commit transaction
1822
+  (0.1ms) begin transaction
1823
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1824
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00]]
1825
+  (3.1ms) commit transaction
1290
1826
  Connecting to database specified by database.yml
1827
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1828
+  (0.1ms) select sqlite_version(*)
1829
+  (41.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1830
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1831
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1832
+  (0.1ms) SELECT version FROM "schema_migrations"
1833
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1834
+  (0.1ms) begin transaction
1835
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1836
+ SQL (4.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 13 Dec 2013 12:50:35 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:50:35 UTC +00:00]]
1837
+  (2.9ms) commit transaction
1291
1838
  Connecting to database specified by database.yml
1292
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1293
- Migrating to CreatePeople (20120606125104)
1294
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1295
-  (0.1ms) select sqlite_version(*)
1839
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1840
+  (0.1ms) select sqlite_version(*)
1841
+  (39.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1842
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1843
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1844
+  (0.1ms) SELECT version FROM "schema_migrations"
1845
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1296
1846
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1297
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1298
-  (0.2ms) select sqlite_version(*)
1299
-  (23.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1300
-  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1301
-  (12.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1302
-  (0.0ms) SELECT version FROM "schema_migrations"
1303
-  (12.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1304
- Connecting to database specified by database.yml
1305
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1306
-  (0.2ms) select sqlite_version(*)
1307
-  (23.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1308
-  (38.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1309
-  (30.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1310
-  (0.2ms) SELECT version FROM "schema_migrations"
1311
-  (31.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1312
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1313
1847
  Migrating to CreateCities (20120606125058)
1314
-  (0.1ms) begin transaction
1315
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1316
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1317
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1318
-  (46.6ms) commit transaction
1848
+  (0.0ms) begin transaction
1849
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1850
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1851
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1852
+  (3.2ms) commit transaction
1319
1853
   (0.1ms) begin transaction
1320
1854
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1321
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 14:28:48 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:28:48 UTC +00:00]]
1322
-  (92.7ms) commit transaction
1855
+ SQL (4.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00]]
1856
+  (2.8ms) commit transaction
1323
1857
   (0.1ms) begin transaction
1324
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1325
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 14:28:49 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 14:28:49 UTC +00:00]]
1326
-  (26.0ms) commit transaction
1327
- Connecting to database specified by database.yml
1328
-  (16.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
-  (0.2ms) select sqlite_version(*)
1330
-  (32.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1331
-  (27.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1332
-  (22.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1333
-  (0.0ms) SELECT version FROM "schema_migrations"
1334
-  (14.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1858
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1859
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00]]
1860
+  (3.2ms) commit transaction
1861
+ Connecting to database specified by database.yml
1862
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1863
+  (0.3ms) select sqlite_version(*)
1864
+  (44.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1865
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1866
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1867
+  (0.1ms) SELECT version FROM "schema_migrations"
1868
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1335
1869
   (0.1ms) begin transaction
1336
1870
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1337
- SQL (3.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 14:28:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:28:53 UTC +00:00]]
1338
-  (19.1ms) commit transaction
1871
+ SQL (4.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 13 Dec 2013 12:51:11 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:51:11 UTC +00:00]]
1872
+  (2.8ms) commit transaction
1339
1873
  Connecting to database specified by database.yml
1340
1874
  Connecting to database specified by database.yml
1341
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1875
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1342
1876
  Migrating to CreatePeople (20120606125104)
1343
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1877
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1344
1878
   (0.0ms) select sqlite_version(*)
1345
1879
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1346
1880
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1347
-  (0.1ms) select sqlite_version(*)
1348
-  (22.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1349
-  (15.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1350
-  (14.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1351
-  (0.2ms) SELECT version FROM "schema_migrations"
1352
-  (17.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1353
- Connecting to database specified by database.yml
1354
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1355
1881
   (0.2ms) select sqlite_version(*)
1356
-  (21.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1357
-  (13.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1358
-  (15.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1359
-  (0.2ms) SELECT version FROM "schema_migrations"
1360
-  (14.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1361
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1362
- Migrating to CreateCities (20120606125058)
1363
-  (0.1ms) begin transaction
1364
-  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1365
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1366
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1367
-  (14.5ms) commit transaction
1368
-  (0.1ms) begin transaction
1369
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1370
- SQL (2.8ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00]]
1371
-  (13.8ms) commit transaction
1372
-  (0.1ms) begin transaction
1373
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1374
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00]]
1375
-  (13.0ms) commit transaction
1882
+  (33.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1883
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1884
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1885
+  (0.1ms) SELECT version FROM "schema_migrations"
1886
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1376
1887
  Connecting to database specified by database.yml
1377
-  (14.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1378
-  (0.1ms) select sqlite_version(*)
1379
-  (20.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1380
-  (15.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1381
-  (14.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1382
-  (0.2ms) SELECT version FROM "schema_migrations"
1383
-  (13.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1384
-  (0.2ms) begin transaction
1385
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1386
- SQL (2.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 14:31:22 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:31:22 UTC +00:00]]
1387
-  (13.5ms) commit transaction
1888
+ Connecting to database specified by database.yml
1889
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1890
+ Migrating to CreatePeople (20120606125104)
1891
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1892
+  (0.1ms) select sqlite_version(*)
1893
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1894
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1895
+  (0.2ms) select sqlite_version(*)
1896
+  (34.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1897
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1898
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1899
+  (0.1ms) SELECT version FROM "schema_migrations"
1900
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1388
1901
  Connecting to database specified by database.yml
1389
1902
  Connecting to database specified by database.yml
1390
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1903
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1391
1904
  Migrating to CreatePeople (20120606125104)
1392
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1905
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1393
1906
   (0.1ms) select sqlite_version(*)
1394
1907
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1395
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1396
-  (0.1ms) select sqlite_version(*)
1397
-  (21.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1398
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1399
-  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1400
-  (0.2ms) SELECT version FROM "schema_migrations"
1401
-  (15.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1908
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1909
+  (0.2ms) select sqlite_version(*)
1910
+  (4.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1911
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1912
+  (5.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1913
+  (0.1ms) SELECT version FROM "schema_migrations"
1914
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')