wagons 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,1661 +1,783 @@
1
1
  Connecting to database specified by database.yml
2
2
  Connecting to database specified by database.yml
3
3
   (0.1ms) select sqlite_version(*)
4
-  (42.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (15.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
5
   (0.1ms) PRAGMA index_list("schema_migrations")
6
-  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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
7
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
8
60
  Connecting to database specified by database.yml
9
61
  Connecting to database specified by database.yml
10
62
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
63
  Migrating to CreatePeople (20120606125104)
12
-  (0.0ms) select sqlite_version(*)
13
-  (0.0ms) begin transaction
14
-  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
15
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
16
-  (41.8ms) commit transaction
17
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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
19
75
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
20
-  (0.1ms) select sqlite_version(*)
21
-  (3.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
22
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
23
79
   (0.1ms) PRAGMA index_list("schema_migrations")
24
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
-  (0.1ms) SELECT version FROM "schema_migrations"
26
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
27
98
  Connecting to database specified by database.yml
28
99
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
29
100
   (0.1ms) select sqlite_version(*)
30
-  (42.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
31
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
32
103
   (0.1ms) PRAGMA index_list("schema_migrations")
33
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
-  (0.1ms) SELECT version FROM "schema_migrations"
35
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
36
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" 
37
135
  Migrating to CreateCities (20120606125058)
38
-  (0.0ms) begin transaction
39
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
40
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
41
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
42
-  (3.5ms) commit transaction
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
43
141
   (0.1ms) begin transaction
44
142
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
45
- SQL (36.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00]]
46
-  (4.3ms) commit transaction
47
-  (0.1ms) begin transaction
48
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
49
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 16 Aug 2012 16:04:52 UTC +00:00]]
50
-  (3.0ms) commit transaction
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
51
149
  Connecting to database specified by database.yml
52
150
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
53
151
   (0.1ms) select sqlite_version(*)
54
-  (42.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
55
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
56
154
   (0.1ms) PRAGMA index_list("schema_migrations")
57
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
58
-  (0.1ms) SELECT version FROM "schema_migrations"
59
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
60
158
   (0.1ms) begin transaction
61
159
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
62
- SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 16 Aug 2012 16:04:56 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 16 Aug 2012 16:04:56 UTC +00:00]]
63
-  (2.8ms) commit transaction
64
- Connecting to database specified by database.yml
65
- Connecting to database specified by database.yml
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
66
162
  Connecting to database specified by database.yml
67
163
  Connecting to database specified by database.yml
68
164
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
69
165
  Migrating to CreatePeople (20120606125104)
70
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
71
-  (0.1ms) select sqlite_version(*)
72
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
73
-  (0.0ms) PRAGMA index_list("people")
74
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
75
-  (0.1ms) select sqlite_version(*)
76
-  (70.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
77
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
78
172
   (0.1ms) PRAGMA index_list("schema_migrations")
79
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
80
-  (0.1ms) SELECT version FROM "schema_migrations"
81
-  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
82
176
  Connecting to database specified by database.yml
83
177
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
84
-  (0.0ms) select sqlite_version(*)
85
-  (41.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
87
181
   (0.1ms) PRAGMA index_list("schema_migrations")
88
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
89
-  (0.1ms) SELECT version FROM "schema_migrations"
90
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
91
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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" 
92
186
  Migrating to CreateCities (20120606125058)
93
-  (0.0ms) begin transaction
94
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
95
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
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
96
190
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
97
-  (3.2ms) commit transaction
191
+  (7.5ms) commit transaction
98
192
   (0.1ms) begin transaction
99
193
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
100
- SQL (42.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00]]
101
-  (3.3ms) commit transaction
102
-  (0.1ms) begin transaction
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
103
197
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
104
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00]]
105
-  (2.9ms) commit transaction
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
106
200
  Connecting to database specified by database.yml
107
201
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
108
202
   (0.1ms) select sqlite_version(*)
109
-  (44.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
110
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
111
205
   (0.1ms) PRAGMA index_list("schema_migrations")
112
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
113
-  (0.1ms) SELECT version FROM "schema_migrations"
114
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
115
-  (0.1ms) begin transaction
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
116
210
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
117
- SQL (3.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:56:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:06 UTC +00:00]]
118
-  (2.8ms) commit transaction
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
119
213
  Connecting to database specified by database.yml
120
214
  Connecting to database specified by database.yml
121
215
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
122
216
  Migrating to CreatePeople (20120606125104)
123
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
124
-  (0.0ms) select sqlite_version(*)
217
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
218
+  (0.1ms) select sqlite_version(*)
125
219
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
126
220
   (0.0ms) PRAGMA index_list("people")
127
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
128
-  (0.1ms) select sqlite_version(*)
129
-  (34.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
131
225
   (0.1ms) PRAGMA index_list("schema_migrations")
132
-  (3.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
133
-  (0.1ms) SELECT version FROM "schema_migrations"
134
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
135
229
  Connecting to database specified by database.yml
136
230
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
137
-  (0.1ms) select sqlite_version(*)
138
-  (45.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
140
-  (0.1ms) PRAGMA index_list("schema_migrations")
141
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
142
-  (0.1ms) SELECT version FROM "schema_migrations"
143
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
144
238
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
145
239
  Migrating to CreateCities (20120606125058)
146
240
   (0.0ms) begin transaction
147
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) 
148
242
   (0.1ms) ALTER TABLE "people" ADD "city_id" integer
149
243
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
150
-  (3.2ms) commit transaction
244
+  (5.9ms) commit transaction
151
245
   (0.1ms) begin transaction
152
246
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
153
- SQL (3.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00]]
154
-  (2.8ms) commit transaction
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
155
249
   (0.1ms) begin transaction
156
250
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
157
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00]]
158
-  (2.9ms) commit transaction
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
159
253
  Connecting to database specified by database.yml
160
254
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
161
-  (0.1ms) select sqlite_version(*)
162
-  (67.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
163
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
164
258
   (0.1ms) PRAGMA index_list("schema_migrations")
165
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
166
-  (0.1ms) SELECT version FROM "schema_migrations"
167
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
168
262
   (0.1ms) begin transaction
169
263
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
170
- SQL (2.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:56:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:56:42 UTC +00:00]]
171
-  (38.7ms) commit transaction
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
172
266
  Connecting to database specified by database.yml
173
267
  Connecting to database specified by database.yml
174
268
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
175
269
  Migrating to CreatePeople (20120606125104)
176
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
177
-  (0.0ms) select sqlite_version(*)
270
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
271
+  (0.1ms) select sqlite_version(*)
178
272
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
179
273
   (0.0ms) PRAGMA index_list("people")
180
274
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
181
-  (0.0ms) select sqlite_version(*)
182
-  (35.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
183
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
184
278
   (0.1ms) PRAGMA index_list("schema_migrations")
185
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
186
-  (0.1ms) SELECT version FROM "schema_migrations"
187
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
188
282
  Connecting to database specified by database.yml
189
283
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
190
-  (0.1ms) select sqlite_version(*)
191
-  (39.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
192
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
193
287
   (0.1ms) PRAGMA index_list("schema_migrations")
194
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
288
+  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
195
289
   (0.2ms) SELECT version FROM "schema_migrations"
196
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
197
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
290
+  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
291
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
198
292
  Migrating to CreateCities (20120606125058)
199
-  (0.0ms) begin transaction
200
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
201
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
202
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
203
-  (3.0ms) commit transaction
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
204
298
   (0.0ms) begin transaction
205
299
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
206
- SQL (3.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00]]
207
-  (2.8ms) commit transaction
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
208
302
   (0.1ms) begin transaction
209
303
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
210
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00]]
211
-  (2.8ms) commit transaction
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
212
306
  Connecting to database specified by database.yml
213
307
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
214
308
   (0.1ms) select sqlite_version(*)
215
-  (39.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
216
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
217
311
   (0.1ms) PRAGMA index_list("schema_migrations")
218
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
219
-  (0.1ms) SELECT version FROM "schema_migrations"
220
-  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
221
-  (0.0ms) begin transaction
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
222
316
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
223
- SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:58:07 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:07 UTC +00:00]]
224
-  (2.8ms) commit transaction
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
225
319
  Connecting to database specified by database.yml
226
320
  Connecting to database specified by database.yml
227
321
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
228
322
  Migrating to CreatePeople (20120606125104)
229
323
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
230
-  (0.0ms) select sqlite_version(*)
324
+  (0.1ms) select sqlite_version(*)
231
325
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
232
326
   (0.0ms) PRAGMA index_list("people")
233
327
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
234
-  (0.1ms) select sqlite_version(*)
235
-  (31.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
236
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
237
331
   (0.1ms) PRAGMA index_list("schema_migrations")
238
-  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
-  (0.1ms) SELECT version FROM "schema_migrations"
240
-  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
241
335
  Connecting to database specified by database.yml
242
336
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
243
-  (0.0ms) select sqlite_version(*)
244
-  (45.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
245
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
246
340
   (0.1ms) PRAGMA index_list("schema_migrations")
247
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
248
-  (0.1ms) SELECT version FROM "schema_migrations"
249
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
250
344
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
251
345
  Migrating to CreateCities (20120606125058)
252
346
   (0.0ms) begin transaction
253
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
254
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
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
255
349
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
256
-  (3.5ms) commit transaction
350
+  (7.4ms) commit transaction
257
351
   (0.1ms) begin transaction
258
352
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
259
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
260
-  (2.9ms) commit transaction
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
261
355
   (0.1ms) begin transaction
262
356
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
263
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
264
-  (3.0ms) commit transaction
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
265
359
  Connecting to database specified by database.yml
266
360
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
267
-  (0.1ms) select sqlite_version(*)
268
-  (40.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
269
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
270
364
   (0.1ms) PRAGMA index_list("schema_migrations")
271
-  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
272
-  (0.1ms) SELECT version FROM "schema_migrations"
273
-  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
274
368
   (0.0ms) begin transaction
275
369
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
276
- SQL (3.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00]]
277
-  (2.9ms) commit transaction
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
278
372
  Connecting to database specified by database.yml
279
373
  Connecting to database specified by database.yml
280
374
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
281
375
  Migrating to CreatePeople (20120606125104)
282
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
283
-  (0.0ms) select sqlite_version(*)
376
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
377
+  (0.1ms) select sqlite_version(*)
284
378
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
285
379
   (0.0ms) PRAGMA index_list("people")
286
380
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
287
-  (0.0ms) select sqlite_version(*)
288
-  (33.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
289
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
290
384
   (0.1ms) PRAGMA index_list("schema_migrations")
291
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
292
-  (0.1ms) SELECT version FROM "schema_migrations"
293
-  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
294
388
  Connecting to database specified by database.yml
295
389
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
296
-  (0.0ms) select sqlite_version(*)
297
-  (45.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
298
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
299
-  (0.1ms) PRAGMA index_list("schema_migrations")
300
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
301
395
   (0.1ms) SELECT version FROM "schema_migrations"
302
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
303
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
396
+  (5.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
397
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
304
398
  Migrating to CreateCities (20120606125058)
305
399
   (0.0ms) begin transaction
306
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
307
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
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
308
402
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
309
-  (4.2ms) commit transaction
310
-  (0.0ms) begin transaction
403
+  (7.3ms) commit transaction
404
+  (0.1ms) begin transaction
311
405
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
312
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00]]
313
-  (4.5ms) commit transaction
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
314
408
   (0.1ms) begin transaction
315
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
316
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00]]
317
-  (2.9ms) commit transaction
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
318
412
  Connecting to database specified by database.yml
319
413
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
320
414
   (0.1ms) select sqlite_version(*)
321
-  (44.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
322
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
323
417
   (0.1ms) PRAGMA index_list("schema_migrations")
324
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
325
-  (0.1ms) SELECT version FROM "schema_migrations"
326
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
327
421
   (0.1ms) begin transaction
328
422
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
329
- SQL (2.9ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:01:15 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:01:15 UTC +00:00]]
330
-  (2.8ms) commit transaction
331
- Connecting to database specified by database.yml
332
- Connecting to database specified by database.yml
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
333
425
  Connecting to database specified by database.yml
334
426
  Connecting to database specified by database.yml
335
427
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
336
428
  Migrating to CreatePeople (20120606125104)
337
429
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
338
-  (0.0ms) select sqlite_version(*)
430
+  (0.2ms) select sqlite_version(*)
339
431
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
340
432
   (0.0ms) PRAGMA index_list("people")
341
433
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
342
-  (0.0ms) select sqlite_version(*)
343
-  (32.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
344
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
345
437
   (0.1ms) PRAGMA index_list("schema_migrations")
346
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
347
-  (0.1ms) SELECT version FROM "schema_migrations"
348
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
349
441
  Connecting to database specified by database.yml
350
442
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
351
-  (0.1ms) select sqlite_version(*)
352
-  (40.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
353
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
354
446
   (0.1ms) PRAGMA index_list("schema_migrations")
355
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
-  (0.1ms) SELECT version FROM "schema_migrations"
357
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
358
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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" 
359
451
  Migrating to CreateCities (20120606125058)
360
-  (0.0ms) begin transaction
361
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
362
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
363
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
364
-  (2.8ms) commit transaction
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
365
457
   (0.1ms) begin transaction
366
458
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
367
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00]]
368
-  (2.8ms) commit transaction
369
-  (0.1ms) begin transaction
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
370
462
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
371
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00]]
372
-  (2.9ms) commit transaction
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
373
478
  Connecting to database specified by database.yml
374
479
  Connecting to database specified by database.yml
375
480
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
376
481
  Migrating to CreatePeople (20120606125104)
377
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
378
-  (0.0ms) select sqlite_version(*)
482
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
483
+  (0.2ms) select sqlite_version(*)
379
484
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
380
485
   (0.0ms) PRAGMA index_list("people")
381
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
486
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
382
487
   (0.1ms) select sqlite_version(*)
383
-  (36.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
384
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
385
490
   (0.1ms) PRAGMA index_list("schema_migrations")
386
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
387
-  (0.1ms) SELECT version FROM "schema_migrations"
388
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
389
494
  Connecting to database specified by database.yml
390
495
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
391
-  (0.1ms) select sqlite_version(*)
392
-  (42.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
393
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
394
499
   (0.1ms) PRAGMA index_list("schema_migrations")
395
-  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
-  (0.1ms) SELECT version FROM "schema_migrations"
397
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
398
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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" 
399
504
  Migrating to CreateCities (20120606125058)
400
-  (0.0ms) begin transaction
401
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
402
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
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
403
508
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
404
-  (3.0ms) commit transaction
509
+  (10.8ms) commit transaction
405
510
   (0.1ms) begin transaction
406
511
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
407
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00]]
408
-  (3.0ms) commit transaction
409
-  (0.1ms) begin transaction
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
410
515
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
411
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00]]
412
-  (2.8ms) commit transaction
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
413
531
  Connecting to database specified by database.yml
414
532
  Connecting to database specified by database.yml
415
533
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
416
534
  Migrating to CreatePeople (20120606125104)
417
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
418
-  (0.0ms) select sqlite_version(*)
419
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
420
-  (0.0ms) PRAGMA index_list("people")
421
535
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
422
536
   (0.1ms) select sqlite_version(*)
423
-  (32.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
424
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
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) 
425
543
   (0.1ms) PRAGMA index_list("schema_migrations")
426
-  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
-  (0.1ms) SELECT version FROM "schema_migrations"
428
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
429
547
  Connecting to database specified by database.yml
430
548
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
431
-  (0.1ms) select sqlite_version(*)
432
-  (39.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
433
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
434
552
   (0.1ms) PRAGMA index_list("schema_migrations")
435
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
-  (0.1ms) SELECT version FROM "schema_migrations"
437
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
438
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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" 
439
557
  Migrating to CreateCities (20120606125058)
440
-  (0.0ms) begin transaction
441
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
442
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
443
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
444
-  (4.3ms) commit transaction
445
-  (0.1ms) begin transaction
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
446
564
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
447
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00]]
448
-  (2.8ms) commit transaction
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
449
567
   (0.1ms) begin transaction
450
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
451
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:11:59 UTC +00:00]]
452
-  (2.9ms) commit transaction
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
453
571
  Connecting to database specified by database.yml
454
572
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
455
573
   (0.1ms) select sqlite_version(*)
456
-  (38.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
457
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
458
576
   (0.1ms) PRAGMA index_list("schema_migrations")
459
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
460
-  (0.1ms) SELECT version FROM "schema_migrations"
461
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
462
580
   (0.1ms) begin transaction
463
581
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
464
- SQL (3.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:12:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:12:04 UTC +00:00]]
465
-  (2.8ms) commit transaction
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')
466
600
  Connecting to database specified by database.yml
467
601
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
468
602
   (0.1ms) select sqlite_version(*)
469
-  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
470
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
471
605
   (0.1ms) PRAGMA index_list("schema_migrations")
472
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
473
-  (0.1ms) SELECT version FROM "schema_migrations"
474
-  (5.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
475
609
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
476
610
  Migrating to CreateCities (20120606125058)
477
611
   (0.0ms) begin transaction
478
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
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) 
479
613
   (0.1ms) ALTER TABLE "people" ADD "city_id" integer
480
614
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
481
-  (3.7ms) commit transaction
482
-  (0.1ms) begin transaction
615
+  (9.4ms) commit transaction
616
+  (0.2ms) begin transaction
483
617
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
484
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00]]
485
-  (2.9ms) commit transaction
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
486
620
   (0.1ms) begin transaction
487
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
488
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00]]
489
-  (3.6ms) commit transaction
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
490
624
  Connecting to database specified by database.yml
491
625
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
492
626
   (0.1ms) select sqlite_version(*)
493
-  (43.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
494
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
495
629
   (0.1ms) PRAGMA index_list("schema_migrations")
496
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
497
-  (0.1ms) SELECT version FROM "schema_migrations"
498
-  (29.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
499
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
500
- Migrating to CreateCities (20120606125058)
501
-  (0.0ms) begin transaction
502
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
503
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
504
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
505
-  (3.0ms) commit transaction
506
-  (0.1ms) begin transaction
507
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
508
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00]]
509
-  (2.9ms) commit transaction
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')
510
633
   (0.0ms) begin transaction
511
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
512
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00]]
513
-  (2.9ms) commit transaction
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
514
638
  Connecting to database specified by database.yml
515
639
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
516
-  (0.1ms) select sqlite_version(*)
517
-  (42.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
518
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
519
-  (0.1ms) PRAGMA index_list("schema_migrations")
520
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
521
-  (0.1ms) SELECT version FROM "schema_migrations"
522
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
523
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
524
- Migrating to CreateCities (20120606125058)
525
-  (0.0ms) begin transaction
526
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
527
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
528
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
529
-  (3.3ms) commit transaction
530
-  (0.1ms) begin transaction
531
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
532
- SQL (3.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00]]
533
-  (2.9ms) commit transaction
534
-  (0.1ms) begin transaction
535
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
536
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00]]
537
-  (2.9ms) commit transaction
538
- Connecting to database specified by database.yml
539
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
540
-  (0.1ms) select sqlite_version(*)
541
-  (38.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
542
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
543
-  (0.1ms) PRAGMA index_list("schema_migrations")
544
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
545
-  (0.1ms) SELECT version FROM "schema_migrations"
546
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
547
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
548
- Migrating to CreateCities (20120606125058)
549
-  (0.0ms) begin transaction
550
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
551
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
552
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
553
-  (3.2ms) commit transaction
554
-  (0.1ms) begin transaction
555
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
556
- SQL (3.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00]]
557
-  (2.8ms) commit transaction
558
-  (0.1ms) begin transaction
559
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
560
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:16:55 UTC +00:00]]
561
-  (2.9ms) commit transaction
562
- Connecting to database specified by database.yml
563
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
564
-  (0.1ms) select sqlite_version(*)
565
-  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
566
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
567
-  (0.1ms) PRAGMA index_list("schema_migrations")
568
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
569
-  (0.1ms) SELECT version FROM "schema_migrations"
570
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
571
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
572
- Migrating to CreateCities (20120606125058)
573
-  (0.0ms) begin transaction
574
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
575
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
576
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
577
-  (5.0ms) commit transaction
578
-  (0.1ms) begin transaction
579
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
580
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00]]
581
-  (2.9ms) commit transaction
582
-  (0.1ms) begin transaction
583
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
584
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:17:24 UTC +00:00]]
585
-  (3.6ms) commit transaction
586
- Connecting to database specified by database.yml
587
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
588
-  (0.1ms) select sqlite_version(*)
589
-  (38.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
590
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
591
-  (0.1ms) PRAGMA index_list("schema_migrations")
592
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
593
-  (0.1ms) SELECT version FROM "schema_migrations"
594
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
595
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
596
- Migrating to CreateCities (20120606125058)
597
-  (0.0ms) begin transaction
598
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
599
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
600
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
601
-  (3.0ms) commit transaction
602
-  (0.1ms) begin transaction
603
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
604
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00]]
605
-  (2.9ms) commit transaction
606
-  (0.1ms) begin transaction
607
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
608
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:17:48 UTC +00:00]]
609
-  (2.9ms) commit transaction
610
- Connecting to database specified by database.yml
611
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
612
-  (0.1ms) select sqlite_version(*)
613
-  (45.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
614
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
615
-  (0.1ms) PRAGMA index_list("schema_migrations")
616
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
617
-  (0.1ms) SELECT version FROM "schema_migrations"
618
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
619
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
620
- Migrating to CreateCities (20120606125058)
621
-  (0.0ms) begin transaction
622
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
623
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
624
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
625
-  (3.0ms) commit transaction
626
-  (0.1ms) begin transaction
627
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
628
- SQL (3.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00]]
629
-  (2.9ms) commit transaction
630
-  (0.1ms) begin transaction
631
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
632
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:18:20 UTC +00:00]]
633
-  (2.8ms) commit transaction
634
- Connecting to database specified by database.yml
635
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
636
-  (0.1ms) select sqlite_version(*)
637
-  (44.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
638
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
639
-  (0.1ms) PRAGMA index_list("schema_migrations")
640
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
641
-  (0.1ms) SELECT version FROM "schema_migrations"
642
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
643
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
644
- Migrating to CreateCities (20120606125058)
645
-  (0.0ms) begin transaction
646
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
647
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
648
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
649
-  (3.0ms) commit transaction
650
-  (0.0ms) begin transaction
651
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
652
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00]]
653
-  (2.9ms) commit transaction
654
-  (0.1ms) begin transaction
655
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
656
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:03 UTC +00:00]]
657
-  (2.9ms) commit transaction
658
- Connecting to database specified by database.yml
659
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
660
-  (0.1ms) select sqlite_version(*)
661
-  (41.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
662
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
663
-  (0.1ms) PRAGMA index_list("schema_migrations")
664
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
665
-  (0.1ms) SELECT version FROM "schema_migrations"
666
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
667
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
668
- Migrating to CreateCities (20120606125058)
669
-  (0.0ms) begin transaction
670
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
671
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
672
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
673
-  (3.4ms) commit transaction
674
-  (0.1ms) begin transaction
675
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
676
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00]]
677
-  (2.8ms) commit transaction
678
-  (0.1ms) begin transaction
679
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
680
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:18 UTC +00:00]]
681
-  (2.9ms) commit transaction
682
- Connecting to database specified by database.yml
683
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
684
-  (0.1ms) select sqlite_version(*)
685
-  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
686
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
687
-  (0.1ms) PRAGMA index_list("schema_migrations")
688
-  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
689
-  (0.1ms) SELECT version FROM "schema_migrations"
690
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
691
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
692
- Migrating to CreateCities (20120606125058)
693
-  (0.1ms) begin transaction
694
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
695
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
696
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
697
-  (3.0ms) commit transaction
698
-  (0.1ms) begin transaction
699
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
700
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00]]
701
-  (4.4ms) commit transaction
702
-  (0.1ms) begin transaction
703
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
704
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00]]
705
-  (2.9ms) commit transaction
706
- Connecting to database specified by database.yml
707
- Connecting to database specified by database.yml
708
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
709
- Migrating to CreatePeople (20120606125104)
710
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
711
-  (0.0ms) select sqlite_version(*)
712
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
713
-  (0.0ms) PRAGMA index_list("people")
714
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
715
-  (0.0ms) select sqlite_version(*)
716
-  (31.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
717
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
718
-  (0.1ms) PRAGMA index_list("schema_migrations")
719
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
720
-  (0.1ms) SELECT version FROM "schema_migrations"
721
-  (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
722
- Connecting to database specified by database.yml
723
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
724
-  (0.1ms) select sqlite_version(*)
725
-  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
726
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
727
-  (0.1ms) PRAGMA index_list("schema_migrations")
728
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
-  (0.1ms) SELECT version FROM "schema_migrations"
730
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
731
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
732
- Migrating to CreateCities (20120606125058)
733
-  (0.0ms) begin transaction
734
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
735
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
736
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
737
-  (2.8ms) commit transaction
738
-  (0.1ms) begin transaction
739
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
740
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00]]
741
-  (2.9ms) commit transaction
742
-  (0.1ms) begin transaction
743
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
744
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:22:31 UTC +00:00]]
745
-  (2.9ms) commit transaction
746
- Connecting to database specified by database.yml
747
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
748
-  (0.1ms) select sqlite_version(*)
749
-  (41.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
750
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
751
-  (0.1ms) PRAGMA index_list("schema_migrations")
752
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
753
-  (0.1ms) SELECT version FROM "schema_migrations"
754
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
755
-  (0.0ms) begin transaction
756
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
757
- SQL (3.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00]]
758
-  (2.5ms) commit transaction
759
- Connecting to database specified by database.yml
760
- Connecting to database specified by database.yml
761
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
762
- Migrating to CreatePeople (20120606125104)
763
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
764
-  (0.0ms) select sqlite_version(*)
765
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
766
-  (0.0ms) PRAGMA index_list("people")
767
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
768
-  (0.1ms) select sqlite_version(*)
769
-  (36.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
770
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
771
-  (0.1ms) PRAGMA index_list("schema_migrations")
772
-  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
773
-  (0.1ms) SELECT version FROM "schema_migrations"
774
-  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
775
- Connecting to database specified by database.yml
776
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
777
-  (0.1ms) select sqlite_version(*)
778
-  (37.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
779
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
780
-  (0.1ms) PRAGMA index_list("schema_migrations")
781
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
782
-  (0.1ms) SELECT version FROM "schema_migrations"
783
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
784
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
785
- Migrating to CreateCities (20120606125058)
786
-  (0.0ms) begin transaction
787
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
788
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
789
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
790
-  (3.2ms) commit transaction
791
-  (0.1ms) begin transaction
792
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
793
- SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00]]
794
-  (2.9ms) commit transaction
795
-  (0.1ms) begin transaction
796
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
797
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:38:12 UTC +00:00]]
798
-  (2.9ms) commit transaction
799
- Connecting to database specified by database.yml
800
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
801
-  (0.1ms) select sqlite_version(*)
802
-  (42.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
803
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
804
-  (0.1ms) PRAGMA index_list("schema_migrations")
805
-  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
806
-  (0.1ms) SELECT version FROM "schema_migrations"
807
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
808
-  (0.1ms) begin transaction
809
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
810
- SQL (3.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:38:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:38:17 UTC +00:00]]
811
-  (6.6ms) commit transaction
812
- Connecting to database specified by database.yml
813
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
814
-  (0.2ms) select sqlite_version(*)
815
-  (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
816
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
817
-  (0.1ms) PRAGMA index_list("schema_migrations")
818
-  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
819
-  (0.2ms) SELECT version FROM "schema_migrations"
820
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
821
- Connecting to database specified by database.yml
822
- Connecting to database specified by database.yml
823
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
824
- Migrating to CreatePeople (20120606125104)
825
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
826
-  (0.3ms) select sqlite_version(*)
827
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
828
-  (0.0ms) PRAGMA index_list("people")
829
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
-  (0.2ms) select sqlite_version(*)
831
-  (3.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
832
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
833
-  (0.1ms) PRAGMA index_list("schema_migrations")
834
-  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
-  (0.1ms) SELECT version FROM "schema_migrations"
836
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
837
- Connecting to database specified by database.yml
838
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
839
-  (0.2ms) select sqlite_version(*)
840
-  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
841
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
842
-  (0.1ms) PRAGMA index_list("schema_migrations")
843
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
844
-  (0.2ms) SELECT version FROM "schema_migrations"
845
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
846
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
847
- Migrating to CreateCities (20120606125058)
848
-  (0.0ms) begin transaction
849
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
850
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
851
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
852
-  (4.5ms) commit transaction
853
-  (0.1ms) begin transaction
854
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
855
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00]]
856
-  (2.9ms) commit transaction
857
-  (0.1ms) begin transaction
858
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
859
- SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00]]
860
-  (2.9ms) commit transaction
861
- Connecting to database specified by database.yml
862
- Connecting to database specified by database.yml
863
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
864
- Migrating to CreatePeople (20120606125104)
865
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
866
-  (0.2ms) select sqlite_version(*)
867
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
868
-  (0.0ms) PRAGMA index_list("people")
869
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
870
-  (0.2ms) select sqlite_version(*)
871
-  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
872
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
873
-  (0.1ms) PRAGMA index_list("schema_migrations")
874
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
875
-  (0.1ms) SELECT version FROM "schema_migrations"
876
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
877
- Connecting to database specified by database.yml
878
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
879
-  (0.3ms) select sqlite_version(*)
880
-  (37.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
881
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
882
-  (0.1ms) PRAGMA index_list("schema_migrations")
883
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
884
-  (0.2ms) SELECT version FROM "schema_migrations"
885
-  (9.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
886
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
887
- Migrating to CreateCities (20120606125058)
888
-  (0.1ms) begin transaction
889
-  (0.5ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
891
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
892
-  (3.7ms) commit transaction
893
-  (0.3ms) begin transaction
894
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
895
- SQL (6.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00]]
896
-  (3.8ms) commit transaction
897
-  (0.1ms) begin transaction
898
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
899
- SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00]]
900
-  (2.8ms) commit transaction
901
- Connecting to database specified by database.yml
902
- Connecting to database specified by database.yml
903
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
904
- Migrating to CreatePeople (20120606125104)
905
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
906
-  (0.2ms) select sqlite_version(*)
907
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
908
-  (0.0ms) PRAGMA index_list("people")
909
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
910
-  (0.2ms) select sqlite_version(*)
911
-  (29.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
912
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
913
-  (0.1ms) PRAGMA index_list("schema_migrations")
914
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
915
-  (0.1ms) SELECT version FROM "schema_migrations"
916
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
917
- Connecting to database specified by database.yml
918
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
919
-  (0.3ms) select sqlite_version(*)
920
-  (38.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
921
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
922
-  (0.1ms) PRAGMA index_list("schema_migrations")
923
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
924
-  (0.1ms) SELECT version FROM "schema_migrations"
925
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
926
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
927
- Migrating to CreateCities (20120606125058)
928
-  (0.1ms) begin transaction
929
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
930
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
931
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
932
-  (3.0ms) commit transaction
933
-  (0.1ms) begin transaction
934
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
935
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00]]
936
-  (2.8ms) commit transaction
937
-  (0.1ms) begin transaction
938
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
939
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:22:41 UTC +00:00]]
940
-  (2.7ms) commit transaction
941
- Connecting to database specified by database.yml
942
- Connecting to database specified by database.yml
943
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
944
- Migrating to CreatePeople (20120606125104)
945
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
946
-  (0.2ms) select sqlite_version(*)
947
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
948
-  (0.0ms) PRAGMA index_list("people")
949
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
950
-  (0.2ms) select sqlite_version(*)
951
-  (29.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
952
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
953
-  (0.1ms) PRAGMA index_list("schema_migrations")
954
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
955
-  (0.1ms) SELECT version FROM "schema_migrations"
956
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
957
- Connecting to database specified by database.yml
958
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
959
-  (0.2ms) select sqlite_version(*)
960
-  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
961
-  (35.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
962
-  (0.1ms) PRAGMA index_list("schema_migrations")
963
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
-  (0.1ms) SELECT version FROM "schema_migrations"
965
-  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
966
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
967
- Migrating to CreateCities (20120606125058)
968
-  (0.0ms) begin transaction
969
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
970
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
971
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
972
-  (2.5ms) commit transaction
973
-  (0.1ms) begin transaction
974
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
975
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00]]
976
-  (2.8ms) commit transaction
977
-  (0.1ms) begin transaction
978
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
979
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00]]
980
-  (2.8ms) commit transaction
981
- Connecting to database specified by database.yml
982
- Connecting to database specified by database.yml
983
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
984
- Migrating to CreatePeople (20120606125104)
985
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
986
-  (0.2ms) select sqlite_version(*)
987
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
988
-  (0.0ms) PRAGMA index_list("people")
989
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
990
-  (0.2ms) select sqlite_version(*)
991
-  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
993
-  (0.1ms) PRAGMA index_list("schema_migrations")
994
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
995
-  (0.1ms) SELECT version FROM "schema_migrations"
996
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
997
- Connecting to database specified by database.yml
998
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
999
-  (0.2ms) select sqlite_version(*)
1000
-  (40.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1001
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1002
-  (0.1ms) PRAGMA index_list("schema_migrations")
1003
-  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1004
-  (0.1ms) SELECT version FROM "schema_migrations"
1005
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1006
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1007
- Migrating to CreateCities (20120606125058)
1008
-  (0.1ms) begin transaction
1009
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1010
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1011
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1012
-  (3.3ms) commit transaction
1013
-  (0.1ms) begin transaction
1014
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1015
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00]]
1016
-  (2.8ms) commit transaction
1017
-  (0.1ms) begin transaction
1018
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1019
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00]]
1020
-  (2.7ms) commit transaction
1021
- Connecting to database specified by database.yml
1022
- Connecting to database specified by database.yml
1023
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1024
- Migrating to CreatePeople (20120606125104)
1025
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1026
-  (0.2ms) select sqlite_version(*)
1027
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1028
-  (0.0ms) PRAGMA index_list("people")
1029
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1030
-  (0.2ms) select sqlite_version(*)
1031
-  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1032
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1033
-  (0.1ms) PRAGMA index_list("schema_migrations")
1034
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1035
-  (0.1ms) SELECT version FROM "schema_migrations"
1036
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1037
- Connecting to database specified by database.yml
1038
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1039
-  (0.2ms) select sqlite_version(*)
1040
-  (7.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1041
-  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1042
-  (0.1ms) PRAGMA index_list("schema_migrations")
1043
-  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1044
-  (0.1ms) SELECT version FROM "schema_migrations"
1045
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1046
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1047
- Migrating to CreateCities (20120606125058)
1048
-  (0.0ms) begin transaction
1049
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1050
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1051
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1052
-  (3.0ms) commit transaction
1053
-  (0.1ms) begin transaction
1054
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1055
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1056
-  (2.9ms) commit transaction
1057
-  (0.2ms) begin transaction
1058
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1059
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1060
-  (2.9ms) commit transaction
1061
- Connecting to database specified by database.yml
1062
- Connecting to database specified by database.yml
1063
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1064
- Migrating to CreatePeople (20120606125104)
1065
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1066
-  (0.2ms) select sqlite_version(*)
1067
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1068
-  (0.0ms) PRAGMA index_list("people")
1069
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1070
-  (0.2ms) select sqlite_version(*)
1071
-  (26.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1072
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1073
-  (0.1ms) PRAGMA index_list("schema_migrations")
1074
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1075
-  (0.1ms) SELECT version FROM "schema_migrations"
1076
-  (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1077
- Connecting to database specified by database.yml
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"
1078
644
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1079
645
   (0.2ms) select sqlite_version(*)
1080
-  (44.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1081
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1082
-  (0.1ms) PRAGMA index_list("schema_migrations")
1083
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
-  (0.1ms) SELECT version FROM "schema_migrations"
1085
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1086
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1087
- Migrating to CreateCities (20120606125058)
1088
-  (0.1ms) begin transaction
1089
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1090
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1091
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1092
-  (3.0ms) commit transaction
1093
-  (0.1ms) begin transaction
1094
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1095
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00]]
1096
-  (2.9ms) commit transaction
1097
-  (0.2ms) begin transaction
1098
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1099
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:29:29 UTC +00:00]]
1100
-  (3.0ms) commit transaction
1101
- Connecting to database specified by database.yml
1102
- Connecting to database specified by database.yml
1103
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1104
- Migrating to CreatePeople (20120606125104)
1105
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1106
-  (0.2ms) select sqlite_version(*)
1107
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1108
-  (0.0ms) PRAGMA index_list("people")
1109
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1110
-  (0.2ms) select sqlite_version(*)
1111
-  (26.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1112
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1113
-  (0.1ms) PRAGMA index_list("schema_migrations")
1114
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1115
-  (0.1ms) SELECT version FROM "schema_migrations"
1116
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
1117
651
  Connecting to database specified by database.yml
1118
652
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1119
653
   (0.2ms) select sqlite_version(*)
1120
-  (41.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1121
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1122
-  (0.1ms) PRAGMA index_list("schema_migrations")
1123
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1124
-  (0.1ms) SELECT version FROM "schema_migrations"
1125
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1126
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1127
- Migrating to CreateCities (20120606125058)
1128
-  (0.1ms) begin transaction
1129
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1130
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1131
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1132
-  (2.9ms) commit transaction
1133
-  (0.1ms) begin transaction
1134
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1135
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00]]
1136
-  (2.9ms) commit transaction
1137
-  (0.1ms) begin transaction
1138
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1139
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:30:51 UTC +00:00]]
1140
-  (2.9ms) commit transaction
1141
- Connecting to database specified by database.yml
1142
- Connecting to database specified by database.yml
1143
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1144
- Migrating to CreatePeople (20120606125104)
1145
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1146
-  (0.2ms) select sqlite_version(*)
1147
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1148
-  (0.0ms) PRAGMA index_list("people")
1149
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1150
-  (0.2ms) select sqlite_version(*)
1151
-  (25.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1152
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1153
-  (0.0ms) PRAGMA index_list("schema_migrations")
1154
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
-  (0.1ms) SELECT version FROM "schema_migrations"
1156
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
1157
674
  Connecting to database specified by database.yml
1158
675
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1159
-  (0.2ms) select sqlite_version(*)
1160
-  (43.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1161
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
-  (0.1ms) PRAGMA index_list("schema_migrations")
1163
-  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1164
-  (0.1ms) SELECT version FROM "schema_migrations"
1165
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1166
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1167
- Migrating to CreateCities (20120606125058)
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')
1168
682
   (0.1ms) begin transaction
1169
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1170
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1171
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1172
-  (3.3ms) commit transaction
1173
-  (0.1ms) begin transaction
1174
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1175
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00]]
1176
-  (2.8ms) commit transaction
1177
-  (0.1ms) begin transaction
1178
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1179
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:32:12 UTC +00:00]]
1180
-  (2.8ms) commit transaction
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
1181
686
  Connecting to database specified by database.yml
1182
687
  Connecting to database specified by database.yml
1183
688
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1184
689
  Migrating to CreatePeople (20120606125104)
1185
690
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1186
-  (0.2ms) select sqlite_version(*)
1187
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1188
-  (0.0ms) PRAGMA index_list("people")
691
+  (0.1ms) select sqlite_version(*)
1189
692
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1190
-  (0.2ms) select sqlite_version(*)
1191
-  (26.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1192
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1193
-  (0.1ms) PRAGMA index_list("schema_migrations")
1194
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1195
-  (0.1ms) SELECT version FROM "schema_migrations"
1196
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1197
- Connecting to database specified by database.yml
1198
693
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1199
694
   (0.2ms) select sqlite_version(*)
1200
-  (44.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1201
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1202
-  (0.1ms) PRAGMA index_list("schema_migrations")
1203
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1204
-  (0.1ms) SELECT version FROM "schema_migrations"
1205
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1206
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1207
- Migrating to CreateCities (20120606125058)
1208
-  (0.1ms) begin transaction
1209
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1210
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1211
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1212
-  (3.3ms) commit transaction
1213
-  (0.1ms) begin transaction
1214
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1215
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00]]
1216
-  (2.9ms) commit transaction
1217
-  (0.1ms) begin transaction
1218
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1219
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00]]
1220
-  (2.9ms) commit transaction
1221
- Connecting to database specified by database.yml
1222
- Connecting to database specified by database.yml
1223
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1224
- Migrating to CreatePeople (20120606125104)
1225
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1226
-  (0.2ms) select sqlite_version(*)
1227
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1228
-  (0.0ms) PRAGMA index_list("people")
1229
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1230
-  (0.2ms) select sqlite_version(*)
1231
-  (23.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1232
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1233
-  (0.1ms) PRAGMA index_list("schema_migrations")
1234
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
1235
698
   (0.3ms) SELECT version FROM "schema_migrations"
1236
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1237
- Connecting to database specified by database.yml
1238
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1239
-  (0.2ms) select sqlite_version(*)
1240
-  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1241
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1242
-  (0.1ms) PRAGMA index_list("schema_migrations")
1243
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1244
-  (0.1ms) SELECT version FROM "schema_migrations"
1245
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1246
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1247
- Migrating to CreateCities (20120606125058)
1248
-  (0.1ms) begin transaction
1249
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1250
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1251
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1252
-  (3.2ms) commit transaction
1253
-  (0.1ms) begin transaction
1254
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1255
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00]]
1256
-  (2.9ms) commit transaction
1257
-  (0.2ms) begin transaction
1258
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1259
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:37:34 UTC +00:00]]
1260
-  (2.8ms) commit transaction
1261
- Connecting to database specified by database.yml
1262
- Connecting to database specified by database.yml
1263
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1264
- Migrating to CreatePeople (20120606125104)
1265
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1266
-  (0.2ms) select sqlite_version(*)
1267
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1268
-  (0.0ms) PRAGMA index_list("people")
1269
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1270
-  (0.2ms) select sqlite_version(*)
1271
-  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1272
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1273
-  (0.1ms) PRAGMA index_list("schema_migrations")
1274
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
-  (0.1ms) SELECT version FROM "schema_migrations"
1276
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1277
- Connecting to database specified by database.yml
1278
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1279
-  (0.2ms) select sqlite_version(*)
1280
-  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1281
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1282
-  (0.1ms) PRAGMA index_list("schema_migrations")
1283
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1284
-  (0.1ms) SELECT version FROM "schema_migrations"
1285
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1286
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1287
- Migrating to CreateCities (20120606125058)
1288
-  (0.0ms) begin transaction
1289
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1290
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1291
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1292
-  (3.2ms) commit transaction
1293
-  (0.1ms) begin transaction
1294
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1295
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00]]
1296
-  (2.7ms) commit transaction
1297
-  (0.1ms) begin transaction
1298
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1299
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:45:30 UTC +00:00]]
1300
-  (2.7ms) commit transaction
1301
- Connecting to database specified by database.yml
1302
- Connecting to database specified by database.yml
1303
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1304
- Migrating to CreatePeople (20120606125104)
1305
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1306
-  (0.2ms) select sqlite_version(*)
1307
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1308
-  (0.0ms) PRAGMA index_list("people")
1309
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1310
-  (0.2ms) select sqlite_version(*)
1311
-  (27.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1312
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1313
-  (0.1ms) PRAGMA index_list("schema_migrations")
1314
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1315
-  (0.1ms) SELECT version FROM "schema_migrations"
1316
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
699
+  (8.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1317
700
  Connecting to database specified by database.yml
1318
701
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1319
702
   (0.2ms) select sqlite_version(*)
1320
-  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1321
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1322
-  (0.1ms) PRAGMA index_list("schema_migrations")
1323
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1324
-  (0.1ms) SELECT version FROM "schema_migrations"
1325
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1326
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1327
- Migrating to CreateCities (20120606125058)
1328
-  (0.1ms) begin transaction
1329
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1330
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1331
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1332
-  (3.1ms) commit transaction
1333
-  (0.1ms) begin transaction
1334
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1335
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1336
-  (2.8ms) commit transaction
1337
-  (0.1ms) begin transaction
1338
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1339
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1340
-  (2.8ms) commit transaction
1341
- Connecting to database specified by database.yml
1342
- Connecting to database specified by database.yml
1343
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1344
- Migrating to CreatePeople (20120606125104)
1345
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1346
-  (0.2ms) select sqlite_version(*)
1347
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1348
-  (0.0ms) PRAGMA index_list("people")
1349
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1350
-  (0.2ms) select sqlite_version(*)
1351
-  (29.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1352
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1353
-  (0.1ms) PRAGMA index_list("schema_migrations")
1354
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1355
-  (0.1ms) SELECT version FROM "schema_migrations"
1356
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
1357
723
  Connecting to database specified by database.yml
1358
724
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1359
725
   (0.2ms) select sqlite_version(*)
1360
-  (40.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1361
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1362
-  (0.1ms) PRAGMA index_list("schema_migrations")
1363
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1364
-  (0.1ms) SELECT version FROM "schema_migrations"
1365
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1367
- Migrating to CreateCities (20120606125058)
1368
-  (0.1ms) begin transaction
1369
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1370
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1371
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1372
-  (3.2ms) commit transaction
1373
-  (0.1ms) begin transaction
1374
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1375
- SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00]]
1376
-  (2.8ms) commit transaction
1377
-  (0.1ms) begin transaction
1378
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1379
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00]]
1380
-  (2.8ms) commit transaction
1381
- Connecting to database specified by database.yml
1382
- Connecting to database specified by database.yml
1383
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1384
- Migrating to CreatePeople (20120606125104)
1385
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1386
-  (0.2ms) select sqlite_version(*)
1387
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1388
-  (0.0ms) PRAGMA index_list("people")
1389
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1390
-  (0.2ms) select sqlite_version(*)
1391
-  (31.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1392
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1393
-  (0.1ms) PRAGMA index_list("schema_migrations")
1394
-  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
1395
729
   (0.1ms) SELECT version FROM "schema_migrations"
1396
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1397
- Connecting to database specified by database.yml
1398
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1399
-  (0.2ms) select sqlite_version(*)
1400
-  (41.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1401
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1402
-  (0.1ms) PRAGMA index_list("schema_migrations")
1403
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1404
-  (0.1ms) SELECT version FROM "schema_migrations"
1405
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1406
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1407
- Migrating to CreateCities (20120606125058)
730
+  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1408
731
   (0.1ms) begin transaction
1409
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1410
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1411
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1412
-  (3.4ms) commit transaction
1413
-  (0.1ms) begin transaction
1414
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1415
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00]]
1416
-  (2.7ms) commit transaction
1417
-  (0.1ms) begin transaction
1418
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1419
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:51:08 UTC +00:00]]
1420
-  (2.8ms) commit transaction
1421
- Connecting to database specified by database.yml
1422
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1423
-  (0.2ms) select sqlite_version(*)
1424
-  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1425
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1426
-  (0.1ms) PRAGMA index_list("schema_migrations")
1427
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1428
-  (0.1ms) SELECT version FROM "schema_migrations"
1429
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1430
-  (0.1ms) begin transaction
1431
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1432
- SQL (7.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 13:51:16 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:51:16 UTC +00:00]]
1433
-  (2.7ms) commit transaction
1434
- Connecting to database specified by database.yml
1435
-
1436
-
1437
- Started GET "/" for 127.0.0.1 at 2012-11-25 14:53:17 +0100
1438
-
1439
- ActionController::RoutingError (No route matches [GET] "/"):
1440
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1441
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1442
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1443
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1444
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1445
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1446
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1447
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1448
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1449
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1450
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
1451
- railties (3.2.8) lib/rails/application.rb:223:in `call'
1452
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1453
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1454
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1455
- /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1456
- /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1457
- /Users/pascal/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1458
-
1459
-
1460
- Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
1461
-
1462
-
1463
- Started GET "/people" for 127.0.0.1 at 2012-11-25 14:53:20 +0100
1464
- Processing by PeopleController#index as HTML
1465
- Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.5ms)
1466
- Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.5ms)
1467
- Rendered shared/_sidebar.html.erb (2.3ms)
1468
- Rendered people/index.html.erb within layouts/application (8.8ms)
1469
- Compiled application.css (1ms) (pid 1948)
1470
- Completed 500 Internal Server Error in 73ms
1471
-
1472
- ActionView::Template::Error (couldn't find file 'jquery'
1473
- (in /Users/pascal/Code/ruby/wagons/test/dummy/app/assets/javascripts/application.js:13)):
1474
- 3: <head>
1475
- 4: <title>Dummy</title>
1476
- 5: <%= stylesheet_link_tag "application", :media => "all" %>
1477
- 6: <%= javascript_include_tag "application" %>
1478
- 7: <%= csrf_meta_tags %>
1479
- 8: </head>
1480
- 9: <body>
1481
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1537380431507552604_2176532200'
1482
-
1483
-
1484
- Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1485
- Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1486
- Rendered /Users/pascal/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
1487
-
1488
-
1489
- Started GET "/people" for 127.0.0.1 at 2012-11-25 14:53:48 +0100
1490
- Processing by PeopleController#index as HTML
1491
- Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.1ms)
1492
- Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.0ms)
1493
- Rendered shared/_sidebar.html.erb (1.0ms)
1494
- Rendered people/index.html.erb within layouts/application (3.3ms)
1495
- Compiled application.js (1ms) (pid 1948)
1496
- Completed 200 OK in 55ms (Views: 55.0ms | ActiveRecord: 0.0ms)
1497
-
1498
-
1499
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:53:49 +0100
1500
- Served asset /application.js - 200 OK (3ms)
1501
-
1502
-
1503
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:53:49 +0100
1504
- Served asset /application.css - 200 OK (2ms)
1505
-
1506
-
1507
- Started GET "/people" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1508
- Processing by PeopleController#index as HTML
1509
- Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.0ms)
1510
- Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.0ms)
1511
- Rendered shared/_sidebar.html.erb (1.1ms)
1512
- Rendered people/index.html.erb within layouts/application (3.2ms)
1513
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1514
-
1515
-
1516
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1517
- Served asset /application.js - 304 Not Modified (0ms)
1518
-
1519
-
1520
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:54:20 +0100
1521
- Served asset /application.css - 304 Not Modified (0ms)
1522
- Connecting to database specified by database.yml
1523
-
1524
-
1525
- Started GET "/people" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1526
- Processing by PeopleController#index as HTML
1527
- Rendered shared/_sidebar.html.erb (0.8ms)
1528
- Rendered people/index.html.erb within layouts/application (8.0ms)
1529
- Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms)
1530
-
1531
-
1532
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1533
- Served asset /application.css - 304 Not Modified (2ms)
1534
-
1535
-
1536
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:54:30 +0100
1537
- Served asset /application.js - 304 Not Modified (2ms)
1538
- Connecting to database specified by database.yml
1539
-
1540
-
1541
- Started GET "/people" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1542
- Processing by PeopleController#index as HTML
1543
- Rendered vendor/wagons/superliner/app/views/people/_list_superliner.html.erb (0.5ms)
1544
- Rendered vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb (0.4ms)
1545
- Rendered shared/_sidebar.html.erb (1.9ms)
1546
- Rendered people/index.html.erb within layouts/application (10.2ms)
1547
- Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
1548
-
1549
-
1550
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1551
- Served asset /application.js - 304 Not Modified (2ms)
1552
-
1553
-
1554
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-25 14:55:11 +0100
1555
- Served asset /application.css - 304 Not Modified (2ms)
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
1556
735
  Connecting to database specified by database.yml
1557
736
  Connecting to database specified by database.yml
1558
737
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1559
738
  Migrating to CreatePeople (20120606125104)
1560
739
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1561
-  (0.2ms) select sqlite_version(*)
1562
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1563
-  (0.0ms) PRAGMA index_list("people")
740
+  (0.1ms) select sqlite_version(*)
1564
741
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1565
-  (0.2ms) select sqlite_version(*)
1566
-  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1567
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1568
-  (0.1ms) PRAGMA index_list("schema_migrations")
1569
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1570
-  (0.1ms) SELECT version FROM "schema_migrations"
1571
-  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1572
- Connecting to database specified by database.yml
1573
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1574
-  (0.2ms) select sqlite_version(*)
1575
-  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1576
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1577
-  (0.1ms) PRAGMA index_list("schema_migrations")
1578
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1579
-  (0.1ms) SELECT version FROM "schema_migrations"
1580
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1581
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1582
- Migrating to CreateCities (20120606125058)
1583
-  (0.1ms) begin transaction
1584
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1585
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1586
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1587
-  (3.0ms) commit transaction
1588
-  (0.1ms) begin transaction
1589
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1590
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00]]
1591
-  (2.8ms) commit transaction
1592
-  (0.1ms) begin transaction
1593
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1594
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00]]
1595
-  (2.9ms) commit transaction
1596
- Connecting to database specified by database.yml
1597
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1598
-  (0.2ms) select sqlite_version(*)
1599
-  (41.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1600
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1601
-  (0.1ms) PRAGMA index_list("schema_migrations")
1602
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1603
-  (0.1ms) SELECT version FROM "schema_migrations"
1604
-  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1605
-  (0.1ms) begin transaction
1606
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1607
- SQL (16.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00]]
1608
-  (2.9ms) commit transaction
1609
- Connecting to database specified by database.yml
1610
- Connecting to database specified by database.yml
1611
742
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1612
- Migrating to CreatePeople (20120606125104)
1613
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1614
-  (0.2ms) select sqlite_version(*)
1615
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1616
-  (0.0ms) PRAGMA index_list("people")
1617
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1618
-  (0.2ms) select sqlite_version(*)
1619
-  (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1620
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1621
-  (0.1ms) PRAGMA index_list("schema_migrations")
1622
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1623
-  (0.1ms) SELECT version FROM "schema_migrations"
1624
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
1625
749
  Connecting to database specified by database.yml
1626
750
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1627
751
   (0.2ms) select sqlite_version(*)
1628
-  (43.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1629
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1630
-  (0.1ms) PRAGMA index_list("schema_migrations")
1631
-  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1632
-  (0.1ms) SELECT version FROM "schema_migrations"
1633
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1634
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1635
- Migrating to CreateCities (20120606125058)
1636
-  (0.1ms) begin transaction
1637
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1638
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1639
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1640
-  (3.4ms) commit transaction
1641
-  (0.1ms) begin transaction
1642
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1643
- SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00]]
1644
-  (2.9ms) commit transaction
1645
-  (0.1ms) begin transaction
1646
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1647
- SQL (0.7ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 14:40:01 UTC +00:00]]
1648
-  (2.6ms) commit transaction
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
1649
772
  Connecting to database specified by database.yml
1650
773
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1651
-  (0.2ms) select sqlite_version(*)
1652
-  (44.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1653
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1654
-  (0.1ms) PRAGMA index_list("schema_migrations")
1655
-  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1656
-  (0.1ms) SELECT version FROM "schema_migrations"
1657
-  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1658
-  (0.1ms) begin transaction
1659
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1660
- SQL (18.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 14:40:09 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:40:09 UTC +00:00]]
1661
-  (3.3ms) commit transaction
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