wagons 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +5 -13
  2. data/Rakefile +1 -1
  3. data/lib/wagons/version.rb +1 -1
  4. data/lib/wagons/view_helper.rb +1 -1
  5. data/test/ci/rails32.gemfile.lock +34 -34
  6. data/test/dummy/Gemfile.lock +35 -35
  7. data/test/dummy/app/models/person.rb +1 -1
  8. data/test/dummy/config/application.rb +1 -1
  9. data/test/dummy/config/initializers/session_store.rb +1 -1
  10. data/test/dummy/config/initializers/wrap_parameters.rb +1 -1
  11. data/test/dummy/config/routes.rb +1 -1
  12. data/test/dummy/db/development.sqlite3 +0 -0
  13. data/test/dummy/db/fixtures/development/people.rb +2 -2
  14. data/test/dummy/db/fixtures/test/people.rb +2 -2
  15. data/test/dummy/db/test.sqlite3 +0 -0
  16. data/test/dummy/log/development.log +145 -1776
  17. data/test/dummy/log/test.log +5462 -36688
  18. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  19. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  20. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  21. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  22. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  23. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  24. data/test/dummy/vendor/wagons/superliner/Gemfile.lock +35 -35
  25. data/test/dummy/vendor/wagons/superliner/app/models/city.rb +1 -1
  26. data/test/dummy/vendor/wagons/superliner/db/fixtures/cities.rb +1 -1
  27. data/test/dummy/vendor/wagons/superliner/test/models/person_test.rb +2 -2
  28. data/test/dummy/vendor/wagons/superliner/test/wagon_test.rb +1 -1
  29. data/test/wagons_installer_test.rb +4 -4
  30. metadata +88 -90
  31. data/test/ci/rails40.gemfile.lock +0 -101
@@ -1,1857 +1,226 @@
1
1
  Connecting to database specified by database.yml
2
2
  Connecting to database specified by database.yml
3
-  (0.1ms) select sqlite_version(*)
4
-  (15.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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
48
-  (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
- Connecting to database specified by database.yml
61
- Connecting to database specified by database.yml
62
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
63
- 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
94
-  (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
99
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
100
-  (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)
103
-  (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')
125
- Connecting to database specified by database.yml
126
-  (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)
130
-  (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" 
135
- 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
141
-  (0.1ms) begin transaction
142
- 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
149
- Connecting to database specified by database.yml
150
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
-  (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)
154
-  (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')
158
-  (0.1ms) begin transaction
159
- 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
162
- Connecting to database specified by database.yml
163
- Connecting to database specified by database.yml
164
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
165
- 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) 
172
-  (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')
176
- Connecting to database specified by database.yml
177
-  (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)
181
-  (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" 
186
- 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
190
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
191
-  (7.5ms) commit transaction
192
-  (0.1ms) begin transaction
193
- 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
197
- 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
200
- Connecting to database specified by database.yml
201
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
202
-  (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)
205
-  (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
210
- 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
213
- Connecting to database specified by database.yml
214
- Connecting to database specified by database.yml
215
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
216
- Migrating to CreatePeople (20120606125104)
217
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
218
-  (0.1ms) select sqlite_version(*)
219
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
220
-  (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) 
225
-  (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')
229
- Connecting to database specified by database.yml
230
-  (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')
238
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
239
- Migrating to CreateCities (20120606125058)
240
-  (0.0ms) begin transaction
241
-  (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
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
243
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
244
-  (5.9ms) commit transaction
245
-  (0.1ms) begin transaction
246
- 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
249
-  (0.1ms) begin transaction
250
- 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
253
- Connecting to database specified by database.yml
254
-  (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)
258
-  (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')
262
-  (0.1ms) begin transaction
263
- 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
266
- Connecting to database specified by database.yml
267
- Connecting to database specified by database.yml
268
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
269
- Migrating to CreatePeople (20120606125104)
270
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
271
-  (0.1ms) select sqlite_version(*)
272
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
273
-  (0.0ms) PRAGMA index_list("people")
274
-  (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) 
278
-  (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')
282
- Connecting to database specified by database.yml
283
-  (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)
287
-  (0.1ms) PRAGMA index_list("schema_migrations")
288
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
289
-  (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" 
292
- 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
298
-  (0.0ms) begin transaction
299
- 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
302
-  (0.1ms) begin transaction
303
- 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
306
- Connecting to database specified by database.yml
307
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
308
-  (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)
311
-  (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
316
- 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
319
- Connecting to database specified by database.yml
320
- Connecting to database specified by database.yml
321
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
322
- Migrating to CreatePeople (20120606125104)
323
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
324
-  (0.1ms) select sqlite_version(*)
325
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
326
-  (0.0ms) PRAGMA index_list("people")
327
-  (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) 
331
-  (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')
335
- Connecting to database specified by database.yml
336
-  (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)
340
-  (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')
344
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
345
- Migrating to CreateCities (20120606125058)
346
-  (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
349
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
350
-  (7.4ms) commit transaction
351
-  (0.1ms) begin transaction
352
- 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
355
-  (0.1ms) begin transaction
356
- 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
359
- Connecting to database specified by database.yml
360
-  (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)
364
-  (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')
368
-  (0.0ms) begin transaction
369
- 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
372
- Connecting to database specified by database.yml
373
- Connecting to database specified by database.yml
374
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
375
- Migrating to CreatePeople (20120606125104)
376
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
377
-  (0.1ms) select sqlite_version(*)
378
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
379
-  (0.0ms) PRAGMA index_list("people")
380
-  (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) 
384
-  (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')
388
- Connecting to database specified by database.yml
389
-  (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")
395
-  (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" 
398
- Migrating to CreateCities (20120606125058)
399
-  (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
402
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
403
-  (7.3ms) commit transaction
404
-  (0.1ms) begin transaction
405
- 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
408
-  (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
412
- Connecting to database specified by database.yml
413
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
414
-  (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)
417
-  (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')
421
-  (0.1ms) begin transaction
422
- 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
425
- Connecting to database specified by database.yml
426
- Connecting to database specified by database.yml
427
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
428
- Migrating to CreatePeople (20120606125104)
429
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
430
-  (0.2ms) select sqlite_version(*)
431
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
432
-  (0.0ms) PRAGMA index_list("people")
433
-  (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) 
437
-  (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')
441
- Connecting to database specified by database.yml
442
-  (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)
446
-  (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" 
451
- 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
457
-  (0.1ms) begin transaction
458
- 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')
474
-  (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
478
- Connecting to database specified by database.yml
479
- Connecting to database specified by database.yml
480
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
481
- Migrating to CreatePeople (20120606125104)
482
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
483
-  (0.2ms) select sqlite_version(*)
484
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
485
-  (0.0ms) PRAGMA index_list("people")
486
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
487
-  (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) 
490
-  (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')
494
- Connecting to database specified by database.yml
495
-  (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)
499
-  (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" 
504
- 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
508
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
509
-  (10.8ms) commit transaction
510
-  (0.1ms) begin transaction
511
- 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')
527
-  (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
531
- Connecting to database specified by database.yml
532
- Connecting to database specified by database.yml
533
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
534
- Migrating to CreatePeople (20120606125104)
535
-  (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"
538
-  (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) 
543
-  (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')
547
- Connecting to database specified by database.yml
548
-  (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)
552
-  (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" 
557
- 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
564
- 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
567
-  (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
571
- Connecting to database specified by database.yml
572
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
573
-  (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)
576
-  (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')
580
-  (0.1ms) begin transaction
581
- 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')
600
- Connecting to database specified by database.yml
601
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
602
-  (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)
605
-  (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')
609
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
610
- Migrating to CreateCities (20120606125058)
611
-  (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) 
613
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
614
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
615
-  (9.4ms) commit transaction
616
-  (0.2ms) begin transaction
617
- 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
620
-  (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
624
- Connecting to database specified by database.yml
625
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
626
-  (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)
629
-  (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')
633
-  (0.0ms) begin transaction
634
- 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
637
- Connecting to database specified by database.yml
638
- Connecting to database specified by database.yml
639
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
640
- Migrating to CreatePeople (20120606125104)
641
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
642
-  (0.1ms) select sqlite_version(*)
643
-  (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')
651
- Connecting to database specified by database.yml
652
-  (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"
660
- Migrating to CreateCities (20120606125058)
661
-  (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
674
- Connecting to database specified by database.yml
675
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
676
-  (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
686
- Connecting to database specified by database.yml
687
- Connecting to database specified by database.yml
688
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
689
- Migrating to CreatePeople (20120606125104)
690
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
691
-  (0.1ms) select sqlite_version(*)
692
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
693
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
694
-  (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')
700
- Connecting to database specified by database.yml
701
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
702
-  (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"
709
- Migrating to CreateCities (20120606125058)
710
-  (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
723
- Connecting to database specified by database.yml
724
-  (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")
729
-  (0.1ms) SELECT version FROM "schema_migrations"
730
-  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
731
-  (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
735
- Connecting to database specified by database.yml
736
- Connecting to database specified by database.yml
737
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
738
- Migrating to CreatePeople (20120606125104)
739
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
740
-  (0.1ms) select sqlite_version(*)
741
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
742
-  (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')
749
- Connecting to database specified by database.yml
750
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
751
-  (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"
758
- Migrating to CreateCities (20120606125058)
759
-  (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
772
- Connecting to database specified by database.yml
773
-  (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
784
- 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')
792
- Connecting to database specified by database.yml
793
- Connecting to database specified by database.yml
794
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
795
- Migrating to CreatePeople (20120606125104)
796
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
797
-  (0.0ms) select sqlite_version(*)
798
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
799
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
800
-  (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')
806
- Connecting to database specified by database.yml
807
- Connecting to database specified by database.yml
808
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
809
- Migrating to CreatePeople (20120606125104)
810
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
811
-  (0.0ms) select sqlite_version(*)
812
-  (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')
820
- 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"
829
- 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
-  (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
843
- Connecting to database specified by database.yml
844
- Connecting to database specified by database.yml
845
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
846
- Migrating to CreatePeople (20120606125104)
847
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
848
-  (0.0ms) select sqlite_version(*)
849
-  (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')
857
- 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"
866
- 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
-  (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
880
- Connecting to database specified by database.yml
881
- Connecting to database specified by database.yml
882
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
883
- Migrating to CreatePeople (20120606125104)
884
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
885
-  (0.0ms) select sqlite_version(*)
886
-  (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')
894
- 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"
903
- 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
-  (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
917
- Connecting to database specified by database.yml
918
- Connecting to database specified by database.yml
919
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
920
- 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" 
925
-  (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')
931
- Connecting to database specified by database.yml
932
- Connecting to database specified by database.yml
933
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
934
- 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"
938
-  (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')
945
- Connecting to database specified by database.yml
946
- Connecting to database specified by database.yml
947
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
948
- 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" 
953
-  (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")
957
-  (0.1ms) SELECT version FROM "schema_migrations"
958
-  (9.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
959
- Connecting to database specified by database.yml
960
- Connecting to database specified by database.yml
961
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
962
- Migrating to CreatePeople (20120606125104)
963
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
964
-  (0.0ms) select sqlite_version(*)
965
-  (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')
973
- 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"
982
- 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
-  (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
996
- Connecting to database specified by database.yml
997
- Connecting to database specified by database.yml
998
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
999
- 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')
1010
- 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"
1019
- 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
-  (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
1033
- Connecting to database specified by database.yml
1034
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1035
-  (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
1045
- Connecting to database specified by database.yml
1046
- Connecting to database specified by database.yml
1047
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1048
- Migrating to CreatePeople (20120606125104)
1049
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1050
-  (0.0ms) select sqlite_version(*)
1051
-  (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')
1059
- 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"
1068
- 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
-  (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
1082
- Connecting to database specified by database.yml
1083
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1084
-  (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
1094
- Connecting to database specified by database.yml
1095
- Connecting to database specified by database.yml
1096
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1097
- Migrating to CreatePeople (20120606125104)
1098
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1099
-  (0.0ms) select sqlite_version(*)
1100
-  (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')
1108
- 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"
1117
- 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
-  (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
1131
- Connecting to database specified by database.yml
1132
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1133
-  (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
1143
- Connecting to database specified by database.yml
1144
- Connecting to database specified by database.yml
1145
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1146
- Migrating to CreatePeople (20120606125104)
1147
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1148
-  (0.1ms) select sqlite_version(*)
1149
-  (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')
1157
- 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"
1166
- 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
-  (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
1180
- 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")
1186
-  (0.1ms) SELECT version FROM "schema_migrations"
1187
-  (12.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1188
-  (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
1192
- Connecting to database specified by database.yml
1193
- Connecting to database specified by database.yml
1194
-  (7.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1195
- Migrating to CreatePeople (20120606125104)
1196
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1197
-  (0.1ms) select sqlite_version(*)
1198
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1199
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1200
-  (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")
1204
-  (0.1ms) SELECT version FROM "schema_migrations"
1205
-  (16.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1206
- Connecting to database specified by database.yml
1207
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1208
-  (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"
1215
- 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
1221
-  (0.1ms) begin transaction
1222
- 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
1226
- 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
1229
- Connecting to database specified by database.yml
1230
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1231
-  (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
1238
- 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
1242
- Connecting to database specified by database.yml
1243
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3
+  (0.2ms) select sqlite_version(*)
4
+  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (5.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1244
7
  Migrating to CreatePeople (20120606125104)
1245
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1246
-  (0.0ms) select sqlite_version(*)
8
+  (0.1ms) begin transaction
9
+  (0.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)
10
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
11
+  (5.9ms) commit transaction
12
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1247
13
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1248
14
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1249
15
   (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")
1253
-  (0.2ms) SELECT version FROM "schema_migrations"
1254
-  (15.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1255
- Connecting to database specified by database.yml
1256
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1257
-  (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"
1264
- 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
1271
- 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
1274
-  (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
16
+  (8.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) 
17
+  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
+  (9.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.1ms) SELECT version FROM "schema_migrations"
20
+  (9.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1278
21
  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')
22
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
23
+  (0.1ms) select sqlite_version(*)
24
+  (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) 
25
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26
+  (5.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
27
+  (0.1ms) SELECT version FROM "schema_migrations"
28
+  (7.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1286
29
   (0.1ms) begin transaction
1287
- 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
30
+  (0.1ms) rollback transaction
1290
31
  Connecting to database specified by database.yml
1291
32
  Connecting to database specified by database.yml
1292
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
33
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1293
34
  Migrating to CreatePeople (20120606125104)
1294
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
35
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1295
36
   (0.1ms) select sqlite_version(*)
1296
37
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1297
38
   (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
- 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
1319
-  (0.1ms) begin transaction
1320
- 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
1323
-  (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')
1335
-  (0.1ms) begin transaction
1336
- 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
1339
- Connecting to database specified by database.yml
39
+  (0.1ms) select sqlite_version(*)
40
+  (8.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) 
41
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
42
+  (6.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
43
+  (0.1ms) SELECT version FROM "schema_migrations"
44
+  (5.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1340
45
  Connecting to database specified by database.yml
1341
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1342
- Migrating to CreatePeople (20120606125104)
1343
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1344
-  (0.0ms) select sqlite_version(*)
1345
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1346
46
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1347
47
   (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
-  (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
48
+  (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) 
49
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
50
+  (7.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
+  (0.1ms) SELECT version FROM "schema_migrations"
52
+  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1372
53
   (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
1376
- 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
54
  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
1388
- Connecting to database specified by database.yml
1389
- Connecting to database specified by database.yml
1390
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1391
- Migrating to CreatePeople (20120606125104)
1392
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1393
-  (0.1ms) select sqlite_version(*)
1394
-  (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')
55
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Dec 2014 13:34:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:34:59 UTC +00:00]]
56
+  (5.8ms) commit transaction
1402
57
  Connecting to database specified by database.yml
1403
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
58
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1404
59
   (0.1ms) select sqlite_version(*)
1405
-  (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) 
1406
-  (11.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1407
-  (9.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
60
+  (15.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) 
61
+  (7.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62
+  (8.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1408
63
   (0.1ms) SELECT version FROM "schema_migrations"
1409
-  (9.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1410
- Connecting to database specified by database.yml
1411
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1412
-  (0.2ms) select sqlite_version(*)
1413
-  (11.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) 
1414
-  (11.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1415
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1416
-  (0.2ms) SELECT version FROM "schema_migrations"
1417
-  (10.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1418
- Connecting to database specified by database.yml
1419
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1420
-  (0.2ms) select sqlite_version(*)
1421
-  (11.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) 
1422
-  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1423
-  (8.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1424
-  (0.0ms) SELECT version FROM "schema_migrations"
1425
64
   (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1426
- Connecting to database specified by database.yml
1427
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1428
-  (0.2ms) select sqlite_version(*)
1429
-  (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) 
1430
-  (8.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1431
-  (8.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1432
-  (0.0ms) SELECT version FROM "schema_migrations"
1433
-  (8.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1434
- Connecting to database specified by database.yml
1435
- Connecting to database specified by database.yml
1436
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1437
- Migrating to CreatePeople (20120606125104)
1438
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1439
-  (0.0ms) select sqlite_version(*)
1440
65
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1441
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1442
-  (0.1ms) select sqlite_version(*)
1443
-  (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) 
1444
-  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1445
-  (12.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1446
-  (0.2ms) SELECT version FROM "schema_migrations"
1447
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1448
- Connecting to database specified by database.yml
1449
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1450
-  (0.2ms) select sqlite_version(*)
1451
-  (11.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) 
1452
-  (11.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1453
-  (13.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1454
-  (0.2ms) SELECT version FROM "schema_migrations"
1455
-  (56.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1456
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1457
66
  Migrating to CreateCities (20120606125058)
1458
67
   (0.1ms) begin transaction
1459
68
   (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)
1460
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1461
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1462
-  (9.8ms) commit transaction
1463
-  (0.2ms) begin transaction
1464
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1465
- SQL (4.8ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 12:31:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:31:46 UTC +00:00]]
1466
-  (11.3ms) commit transaction
1467
-  (0.1ms) begin transaction
1468
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1469
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 12:31:46 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 12:31:46 UTC +00:00]]
1470
-  (9.8ms) commit transaction
1471
- Connecting to database specified by database.yml
1472
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1473
-  (0.1ms) select sqlite_version(*)
1474
-  (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) 
1475
-  (11.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1476
-  (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1477
-  (0.2ms) SELECT version FROM "schema_migrations"
1478
-  (10.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
69
+  (8.2ms) ALTER TABLE "people" ADD "city_id" integer
70
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
71
+  (8.8ms) commit transaction
1479
72
   (0.1ms) begin transaction
1480
73
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1481
- SQL (2.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 12:31:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:31:51 UTC +00:00]]
1482
-  (11.2ms) commit transaction
74
+ SQL (3.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Dec 2014 13:35:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:35:04 UTC +00:00]]
75
+  (8.1ms) commit transaction
76
+  (0.3ms) begin transaction
77
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
78
+ SQL (1.0ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Dec 2014 13:35:04 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Dec 2014 13:35:04 UTC +00:00]]
79
+  (5.6ms) commit transaction
1483
80
  Connecting to database specified by database.yml
1484
81
  Connecting to database specified by database.yml
1485
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
82
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1486
83
  Migrating to CreatePeople (20120606125104)
84
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
85
+  (0.4ms) select sqlite_version(*)
1487
86
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1488
-  (0.0ms) select sqlite_version(*)
1489
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1490
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1491
-  (0.1ms) select sqlite_version(*)
1492
-  (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) 
1493
-  (9.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1494
-  (9.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1495
-  (0.0ms) SELECT version FROM "schema_migrations"
1496
-  (11.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1497
- Connecting to database specified by database.yml
1498
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1499
-  (0.2ms) select sqlite_version(*)
1500
-  (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) 
1501
-  (10.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1502
-  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1503
-  (0.2ms) SELECT version FROM "schema_migrations"
1504
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1505
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1506
- Migrating to CreateCities (20120606125058)
1507
-  (0.1ms) begin transaction
1508
-  (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)
1509
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1510
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1511
-  (9.7ms) commit transaction
1512
-  (0.1ms) begin transaction
1513
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1514
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 12:33:02 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:33:02 UTC +00:00]]
1515
-  (11.2ms) commit transaction
1516
-  (0.1ms) begin transaction
1517
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1518
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 12:33:02 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 12:33:02 UTC +00:00]]
1519
-  (10.0ms) commit transaction
1520
- Connecting to database specified by database.yml
1521
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1522
-  (0.2ms) select sqlite_version(*)
1523
-  (10.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) 
1524
-  (10.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1525
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1526
-  (0.2ms) SELECT version FROM "schema_migrations"
1527
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1528
-  (0.0ms) begin transaction
1529
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1530
- SQL (2.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 12:33:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:33:06 UTC +00:00]]
1531
-  (13.0ms) commit transaction
1532
- Connecting to database specified by database.yml
1533
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1534
-  (0.1ms) select sqlite_version(*)
1535
-  (11.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) 
1536
-  (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1537
-  (11.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1538
-  (0.2ms) SELECT version FROM "schema_migrations"
1539
-  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1540
- Connecting to database specified by database.yml
1541
-  (16.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1542
88
   (0.2ms) select sqlite_version(*)
1543
-  (11.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) 
1544
-  (6.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1545
-  (8.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1546
-  (0.0ms) SELECT version FROM "schema_migrations"
1547
-  (11.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1548
- Connecting to database specified by database.yml
1549
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1550
-  (0.1ms) select sqlite_version(*)
1551
-  (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) 
1552
-  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1553
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1554
-  (0.2ms) SELECT version FROM "schema_migrations"
1555
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
89
+  (17.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) 
90
+  (7.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
91
+  (8.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
+  (0.1ms) SELECT version FROM "schema_migrations"
93
+  (7.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1556
94
  Connecting to database specified by database.yml
1557
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
95
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1558
96
   (0.1ms) select sqlite_version(*)
1559
-  (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) 
1560
-  (12.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1561
-  (11.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1562
-  (0.2ms) SELECT version FROM "schema_migrations"
1563
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
97
+  (18.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) 
98
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
99
+  (11.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
100
+  (0.1ms) SELECT version FROM "schema_migrations"
101
+  (6.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
102
+  (0.4ms) begin transaction
103
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
104
+ SQL (5.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Dec 2014 13:36:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:36:19 UTC +00:00]]
105
+  (17.9ms) commit transaction
1564
106
  Connecting to database specified by database.yml
1565
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
107
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1566
108
   (0.1ms) select sqlite_version(*)
1567
-  (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) 
1568
-  (9.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1569
-  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1570
-  (0.2ms) SELECT version FROM "schema_migrations"
1571
-  (9.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1572
- Connecting to database specified by database.yml
1573
- Connecting to database specified by database.yml
1574
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1575
- Migrating to CreatePeople (20120606125104)
1576
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1577
-  (0.0ms) select sqlite_version(*)
109
+  (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) 
110
+  (6.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
111
+  (5.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
112
+  (0.1ms) SELECT version FROM "schema_migrations"
113
+  (7.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1578
114
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1579
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1580
-  (0.2ms) select sqlite_version(*)
1581
-  (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) 
1582
-  (9.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1583
-  (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1584
-  (0.2ms) SELECT version FROM "schema_migrations"
1585
-  (12.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1586
- Connecting to database specified by database.yml
1587
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1588
-  (0.2ms) select sqlite_version(*)
1589
-  (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) 
1590
-  (12.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1591
-  (11.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1592
-  (0.2ms) SELECT version FROM "schema_migrations"
1593
-  (10.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1594
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1595
115
  Migrating to CreateCities (20120606125058)
1596
-  (0.1ms) begin transaction
1597
-  (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)
1598
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
116
+  (0.3ms) begin transaction
117
+  (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)
118
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1599
119
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1600
-  (9.6ms) commit transaction
120
+  (7.0ms) commit transaction
1601
121
   (0.1ms) begin transaction
1602
122
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1603
- SQL (3.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 12:39:41 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:39:41 UTC +00:00]]
1604
-  (9.6ms) commit transaction
123
+ SQL (6.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Dec 2014 13:36:24 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:36:24 UTC +00:00]]
124
+  (6.2ms) commit transaction
1605
125
   (0.1ms) begin transaction
1606
126
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1607
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 12:39:41 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 12:39:41 UTC +00:00]]
1608
-  (9.1ms) commit transaction
1609
- Connecting to database specified by database.yml
1610
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1611
-  (0.2ms) select sqlite_version(*)
1612
-  (11.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) 
1613
-  (8.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1614
-  (10.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1615
-  (0.2ms) SELECT version FROM "schema_migrations"
1616
-  (11.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1617
-  (0.0ms) begin transaction
1618
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1619
- SQL (2.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 12:39:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:39:46 UTC +00:00]]
1620
-  (11.9ms) commit transaction
127
+ SQL (3.9ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Dec 2014 13:36:24 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Dec 2014 13:36:24 UTC +00:00]]
128
+  (7.1ms) commit transaction
1621
129
  Connecting to database specified by database.yml
1622
130
  Connecting to database specified by database.yml
1623
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
131
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1624
132
  Migrating to CreatePeople (20120606125104)
1625
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1626
-  (0.0ms) select sqlite_version(*)
1627
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1628
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1629
-  (0.1ms) select sqlite_version(*)
1630
-  (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) 
1631
-  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1632
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1633
-  (0.2ms) SELECT version FROM "schema_migrations"
1634
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1635
- Connecting to database specified by database.yml
1636
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1637
-  (0.2ms) select sqlite_version(*)
1638
-  (11.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) 
1639
-  (7.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1640
-  (13.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1641
-  (0.2ms) SELECT version FROM "schema_migrations"
1642
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
133
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
134
+  (0.2ms) select sqlite_version(*)
1643
135
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1644
- Migrating to CreateCities (20120606125058)
1645
-  (0.1ms) begin transaction
1646
-  (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)
1647
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1648
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1649
-  (16.5ms) commit transaction
1650
-  (0.1ms) begin transaction
1651
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1652
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 12:49:36 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:49:36 UTC +00:00]]
1653
-  (10.2ms) commit transaction
1654
-  (0.1ms) begin transaction
1655
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1656
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 12:49:36 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 12:49:36 UTC +00:00]]
1657
-  (10.4ms) commit transaction
136
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
137
+  (0.1ms) select sqlite_version(*)
138
+  (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) 
139
+  (6.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
140
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
141
+  (0.1ms) SELECT version FROM "schema_migrations"
142
+  (6.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1658
143
  Connecting to database specified by database.yml
1659
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
144
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1660
145
   (0.1ms) select sqlite_version(*)
1661
-  (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) 
1662
-  (11.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1663
-  (12.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1664
-  (0.2ms) SELECT version FROM "schema_migrations"
1665
-  (10.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
146
+  (15.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) 
147
+  (4.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
148
+  (6.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
149
+  (0.1ms) SELECT version FROM "schema_migrations"
150
+  (5.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1666
151
   (0.1ms) begin transaction
1667
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1668
- SQL (2.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 12:49:40 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 12:49:40 UTC +00:00]]
1669
-  (9.5ms) commit transaction
1670
- Connecting to database specified by database.yml
152
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
153
+ SQL (8.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Dec 2014 13:37:21 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:37:21 UTC +00:00]]
154
+  (5.7ms) commit transaction
1671
155
  Connecting to database specified by database.yml
1672
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1673
- Migrating to CreatePeople (20120606125104)
1674
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1675
-  (0.0ms) select sqlite_version(*)
1676
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1677
156
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1678
157
   (0.1ms) select sqlite_version(*)
1679
-  (11.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) 
1680
-  (18.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1681
-  (8.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
158
+  (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) 
159
+  (6.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
160
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1682
161
   (0.1ms) SELECT version FROM "schema_migrations"
1683
-  (8.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1684
- Connecting to database specified by database.yml
1685
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1686
-  (0.2ms) select sqlite_version(*)
1687
-  (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) 
1688
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1689
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1690
-  (0.2ms) SELECT version FROM "schema_migrations"
1691
-  (10.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1692
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
162
+  (5.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
163
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1693
164
  Migrating to CreateCities (20120606125058)
1694
165
   (0.1ms) begin transaction
1695
-  (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)
1696
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
166
+  (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)
167
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1697
168
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1698
-  (9.7ms) commit transaction
1699
-  (0.2ms) begin transaction
1700
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1701
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 13:05:20 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:05:20 UTC +00:00]]
1702
-  (11.0ms) commit transaction
169
+  (6.5ms) commit transaction
1703
170
   (0.1ms) begin transaction
1704
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1705
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 13:05:20 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 13:05:20 UTC +00:00]]
1706
-  (9.8ms) commit transaction
1707
- Connecting to database specified by database.yml
1708
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1709
-  (0.1ms) select sqlite_version(*)
1710
-  (13.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) 
1711
-  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1712
-  (10.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1713
-  (0.2ms) SELECT version FROM "schema_migrations"
1714
-  (10.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
171
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
172
+ SQL (4.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Dec 2014 13:37:26 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:37:26 UTC +00:00]]
173
+  (4.6ms) commit transaction
1715
174
   (0.1ms) begin transaction
1716
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1717
- SQL (2.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 13:05:25 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:05:25 UTC +00:00]]
175
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
176
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Dec 2014 13:37:26 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Dec 2014 13:37:26 UTC +00:00]]
1718
177
   (9.8ms) commit transaction
1719
178
  Connecting to database specified by database.yml
1720
179
  Connecting to database specified by database.yml
1721
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
180
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1722
181
  Migrating to CreatePeople (20120606125104)
1723
182
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1724
-  (0.0ms) select sqlite_version(*)
183
+  (0.1ms) select sqlite_version(*)
1725
184
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1726
185
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1727
-  (0.2ms) select sqlite_version(*)
1728
-  (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) 
1729
-  (10.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1730
-  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1731
-  (0.2ms) SELECT version FROM "schema_migrations"
1732
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1733
- Connecting to database specified by database.yml
1734
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1735
-  (0.2ms) select sqlite_version(*)
1736
-  (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) 
1737
-  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1738
-  (13.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1739
-  (0.2ms) SELECT version FROM "schema_migrations"
1740
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1741
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1742
- Migrating to CreateCities (20120606125058)
1743
-  (0.1ms) begin transaction
1744
-  (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)
1745
-  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1746
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1747
-  (10.1ms) commit transaction
1748
-  (0.1ms) begin transaction
1749
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1750
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 13:07:22 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:07:22 UTC +00:00]]
1751
-  (10.0ms) commit transaction
1752
-  (0.1ms) begin transaction
1753
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1754
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 13:07:22 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 13:07:22 UTC +00:00]]
1755
-  (10.0ms) commit transaction
1756
- Connecting to database specified by database.yml
1757
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1758
186
   (0.1ms) select sqlite_version(*)
1759
-  (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) 
1760
-  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1761
-  (10.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1762
-  (0.2ms) SELECT version FROM "schema_migrations"
1763
-  (12.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1764
-  (0.2ms) begin transaction
1765
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1766
- SQL (2.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 13:07:27 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:07:27 UTC +00:00]]
1767
-  (24.7ms) commit transaction
1768
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1769
- Migrating to CreateCities (20120606125058)
1770
-  (0.1ms) begin transaction
1771
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1772
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1773
- SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20120606125058"]]
1774
-  (10.7ms) commit transaction
1775
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1776
-  (0.1ms) begin transaction
1777
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' ORDER BY "cities"."id" ASC LIMIT 1
1778
- SQL (1.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-09-10 13:39:17.174520"], ["name", "Paris"], ["updated_at", "2014-09-10 13:39:17.174520"]]
1779
-  (14.3ms) commit transaction
1780
- Connecting to database specified by database.yml
187
+  (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) 
188
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
189
+  (8.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
190
+  (0.1ms) SELECT version FROM "schema_migrations"
191
+  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1781
192
  Connecting to database specified by database.yml
1782
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1783
- Migrating to CreatePeople (20120606125104)
1784
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1785
193
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1786
194
   (0.2ms) select sqlite_version(*)
1787
-  (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) 
1788
-  (12.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1789
-  (11.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1790
-  (0.2ms) SELECT version FROM "schema_migrations"
1791
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
195
+  (6.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) 
196
+  (6.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
197
+  (5.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
198
+  (0.1ms) SELECT version FROM "schema_migrations"
199
+  (5.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
200
+  (0.1ms) begin transaction
201
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
202
+ SQL (4.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Dec 2014 13:38:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:38:00 UTC +00:00]]
203
+  (8.1ms) commit transaction
1792
204
  Connecting to database specified by database.yml
1793
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1794
-  (0.2ms) select sqlite_version(*)
1795
-  (10.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) 
1796
-  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1797
-  (13.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1798
-  (0.2ms) SELECT version FROM "schema_migrations"
1799
-  (13.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
205
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
206
+  (0.1ms) select sqlite_version(*)
207
+  (7.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) 
208
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
209
+  (5.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
210
+  (0.3ms) SELECT version FROM "schema_migrations"
211
+  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1800
212
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1801
213
  Migrating to CreateCities (20120606125058)
1802
214
   (0.1ms) begin transaction
1803
-  (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)
215
+  (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)
1804
216
   (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1805
217
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1806
-  (11.6ms) commit transaction
218
+  (10.1ms) commit transaction
1807
219
   (0.1ms) begin transaction
1808
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1809
- SQL (2.8ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Sep 2014 13:42:49 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:42:49 UTC +00:00]]
1810
-  (9.5ms) commit transaction
220
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
221
+ SQL (6.8ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 10 Dec 2014 13:38:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Dec 2014 13:38:04 UTC +00:00]]
222
+  (8.4ms) commit transaction
1811
223
   (0.1ms) begin transaction
1812
224
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1813
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Sep 2014 13:42:49 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Sep 2014 13:42:49 UTC +00:00]]
1814
-  (10.4ms) commit transaction
1815
- Connecting to database specified by database.yml
1816
-  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1817
-  (0.2ms) select sqlite_version(*)
1818
-  (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) 
1819
-  (9.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1820
-  (11.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1821
-  (0.2ms) SELECT version FROM "schema_migrations"
1822
-  (11.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1823
-  (0.1ms) begin transaction
1824
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1825
- SQL (3.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 10 Sep 2014 13:42:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 10 Sep 2014 13:42:55 UTC +00:00]]
1826
-  (16.6ms) commit transaction
1827
- Connecting to database specified by database.yml
1828
-  (0.0ms) select sqlite_version(*)
1829
-  (11.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1830
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1831
-  (2.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1832
- Connecting to database specified by database.yml
1833
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1834
- Migrating to CreatePeople (20120606125104)
1835
-  (0.0ms) select sqlite_version(*)
1836
-  (0.0ms) begin transaction
1837
-  (0.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)
1838
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
1839
-  (10.7ms) commit transaction
1840
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1841
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1842
- Connecting to database specified by database.yml
1843
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1844
-  (0.1ms) select sqlite_version(*)
1845
-  (11.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) 
1846
-  (14.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1847
-  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1848
-  (0.2ms) SELECT version FROM "schema_migrations"
1849
-  (12.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1850
- Connecting to database specified by database.yml
1851
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1852
-  (0.2ms) select sqlite_version(*)
1853
-  (11.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) 
1854
-  (7.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1855
-  (8.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1856
-  (0.0ms) SELECT version FROM "schema_migrations"
1857
-  (9.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
225
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 10 Dec 2014 13:38:05 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 10 Dec 2014 13:38:05 UTC +00:00]]
226
+  (8.2ms) commit transaction