wagons 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +8 -8
  2. data/lib/generators/wagon/templates/bin/rails.tt +2 -2
  3. data/lib/tasks/wagons.rake +23 -22
  4. data/lib/wagons/version.rb +1 -1
  5. data/test/dummy/Gemfile.lock +48 -52
  6. data/test/dummy/db/development.sqlite3 +0 -0
  7. data/test/dummy/db/test.sqlite3 +0 -0
  8. data/test/dummy/log/development.log +1015 -1528
  9. data/test/dummy/log/test.log +6518 -11795
  10. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  11. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  12. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  13. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  14. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  15. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  16. data/test/dummy/vendor/wagons/superliner/Gemfile.lock +49 -53
  17. metadata +69 -83
  18. data/test/ci/rails3.gemfile.lock +0 -108
  19. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  20. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  21. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  22. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  23. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  24. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
@@ -1,1914 +1,1401 @@
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
490
- Connecting to database specified by database.yml
491
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
492
-  (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)
495
-  (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
510
-  (0.0ms) begin transaction
511
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
512
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:13:17 UTC +00:00]]
513
-  (2.9ms) commit transaction
514
- Connecting to database specified by database.yml
515
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
516
-  (0.1ms) select sqlite_version(*)
517
-  (42.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
518
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
519
-  (0.1ms) PRAGMA index_list("schema_migrations")
520
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
521
-  (0.1ms) SELECT version FROM "schema_migrations"
522
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
523
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
524
- Migrating to CreateCities (20120606125058)
525
-  (0.0ms) begin transaction
526
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
527
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
528
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
529
-  (3.3ms) commit transaction
530
-  (0.1ms) begin transaction
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
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
538
624
  Connecting to database specified by database.yml
539
625
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
540
626
   (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)
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)
543
629
   (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
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')
650
633
   (0.0ms) begin transaction
651
634
  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
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
706
637
  Connecting to database specified by database.yml
707
638
  Connecting to database specified by database.yml
708
639
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
709
640
  Migrating to CreatePeople (20120606125104)
710
641
   (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")
642
+  (0.1ms) select sqlite_version(*)
714
643
   (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
644
   (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')
645
+  (0.2ms) select sqlite_version(*)
646
+  (14.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
647
+  (12.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
648
+  (10.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
649
+  (0.2ms) SELECT version FROM "schema_migrations"
650
+  (7.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
651
+ Connecting to database specified by database.yml
731
652
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
653
+  (0.2ms) select sqlite_version(*)
654
+  (9.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
655
+  (10.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
656
+  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
657
+  (0.2ms) SELECT version FROM "schema_migrations"
658
+  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
659
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
732
660
  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
661
   (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
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
746
674
  Connecting to database specified by database.yml
747
675
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
748
676
   (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
677
+  (13.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
678
+  (13.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
679
+  (13.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
680
+  (0.2ms) SELECT version FROM "schema_migrations"
681
+  (11.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
682
+  (0.1ms) begin transaction
683
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
684
+ SQL (3.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 29 Nov 2012 13:43:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 29 Nov 2012 13:43:34 UTC +00:00]]
685
+  (58.2ms) commit transaction
759
686
  Connecting to database specified by database.yml
760
687
  Connecting to database specified by database.yml
761
688
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
762
689
  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
690
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
768
691
   (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
692
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
813
693
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
814
694
   (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')
695
+  (13.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
696
+  (10.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
697
+  (10.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
698
+  (0.3ms) SELECT version FROM "schema_migrations"
699
+  (8.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
837
700
  Connecting to database specified by database.yml
838
701
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
839
702
   (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" 
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"
847
709
  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
710
   (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
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
862
723
  Connecting to database specified by database.yml
863
724
   (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")
725
+  (0.2ms) select sqlite_version(*)
726
+  (9.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
727
+  (7.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
728
+  (7.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
875
729
   (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)
730
+  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
888
731
   (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
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
901
735
  Connecting to database specified by database.yml
902
736
  Connecting to database specified by database.yml
903
737
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
904
738
  Migrating to CreatePeople (20120606125104)
905
739
   (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")
740
+  (0.1ms) select sqlite_version(*)
909
741
   (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
742
   (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')
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')
957
749
  Connecting to database specified by database.yml
958
750
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
959
751
   (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" 
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"
967
758
  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
759
   (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
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
982
772
  Connecting to database specified by database.yml
983
773
   (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')
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
997
784
  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
785
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
786
+  (0.1ms) select sqlite_version(*)
787
+  (37.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
788
+  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
789
+  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
790
+  (0.2ms) SELECT version FROM "schema_migrations"
791
+  (13.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1021
792
  Connecting to database specified by database.yml
1022
793
  Connecting to database specified by database.yml
1023
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
794
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1024
795
  Migrating to CreatePeople (20120606125104)
1025
796
   (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")
797
+  (0.0ms) select sqlite_version(*)
1029
798
   (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
799
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1039
800
   (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
801
+  (28.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
802
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
803
+  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
804
+  (0.0ms) SELECT version FROM "schema_migrations"
805
+  (11.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1061
806
  Connecting to database specified by database.yml
1062
807
  Connecting to database specified by database.yml
1063
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
808
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1064
809
  Migrating to CreatePeople (20120606125104)
810
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
811
+  (0.0ms) select sqlite_version(*)
1065
812
   (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')
813
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
814
+  (0.1ms) select sqlite_version(*)
815
+  (25.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
816
+  (13.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
817
+  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
818
+  (0.2ms) SELECT version FROM "schema_migrations"
819
+  (12.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1077
820
  Connecting to database specified by database.yml
1078
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1079
-  (0.2ms) select sqlite_version(*)
1080
-  (44.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1081
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1082
-  (0.1ms) PRAGMA index_list("schema_migrations")
1083
-  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
-  (0.1ms) SELECT version FROM "schema_migrations"
1085
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1086
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
821
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
822
+  (0.1ms) select sqlite_version(*)
823
+  (18.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
824
+  (16.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
825
+  (14.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
+  (0.2ms) SELECT version FROM "schema_migrations"
827
+  (15.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
828
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1087
829
  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
830
   (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')
1117
- Connecting to database specified by database.yml
1118
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1119
-  (0.2ms) select sqlite_version(*)
1120
-  (41.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1121
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1122
-  (0.1ms) PRAGMA index_list("schema_migrations")
1123
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1124
-  (0.1ms) SELECT version FROM "schema_migrations"
1125
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1126
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1127
- Migrating to CreateCities (20120606125058)
831
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
832
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
833
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
834
+  (11.3ms) commit transaction
835
+  (0.0ms) begin transaction
836
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
837
+ SQL (15.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:03:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:03:00 UTC +00:00]]
838
+  (11.0ms) commit transaction
1128
839
   (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
840
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
841
+ SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:03:00 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:03:00 UTC +00:00]]
842
+  (10.9ms) commit transaction
1141
843
  Connecting to database specified by database.yml
1142
844
  Connecting to database specified by database.yml
1143
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
845
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1144
846
  Migrating to CreatePeople (20120606125104)
1145
847
   (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")
848
+  (0.0ms) select sqlite_version(*)
1149
849
   (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')
850
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
851
+  (0.1ms) select sqlite_version(*)
852
+  (24.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
853
+  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
854
+  (13.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
855
+  (0.2ms) SELECT version FROM "schema_migrations"
856
+  (14.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1157
857
  Connecting to database specified by database.yml
1158
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1159
-  (0.2ms) select sqlite_version(*)
1160
-  (43.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1161
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
-  (0.1ms) PRAGMA index_list("schema_migrations")
1163
-  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1164
-  (0.1ms) SELECT version FROM "schema_migrations"
1165
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1166
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
858
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
859
+  (0.1ms) select sqlite_version(*)
860
+  (17.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
861
+  (13.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
862
+  (13.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
863
+  (0.2ms) SELECT version FROM "schema_migrations"
864
+  (11.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
865
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1167
866
  Migrating to CreateCities (20120606125058)
1168
-  (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
867
   (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
868
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
869
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
870
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
871
+  (10.6ms) commit transaction
872
+  (0.0ms) begin transaction
873
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
874
+ SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:03:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:03:17 UTC +00:00]]
875
+  (10.9ms) commit transaction
876
+  (0.1ms) begin transaction
877
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
878
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:03:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:03:17 UTC +00:00]]
879
+  (11.0ms) commit transaction
1181
880
  Connecting to database specified by database.yml
1182
881
  Connecting to database specified by database.yml
1183
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
882
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1184
883
  Migrating to CreatePeople (20120606125104)
884
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
885
+  (0.0ms) select sqlite_version(*)
1185
886
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1186
-  (0.2ms) select sqlite_version(*)
1187
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1188
-  (0.0ms) PRAGMA index_list("people")
1189
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1190
-  (0.2ms) select sqlite_version(*)
1191
-  (26.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1192
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1193
-  (0.1ms) PRAGMA index_list("schema_migrations")
1194
-  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1195
-  (0.1ms) SELECT version FROM "schema_migrations"
1196
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
887
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
888
+  (0.1ms) select sqlite_version(*)
889
+  (27.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
+  (18.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
891
+  (19.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
892
+  (0.2ms) SELECT version FROM "schema_migrations"
893
+  (14.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1197
894
  Connecting to database specified by database.yml
1198
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1199
-  (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" 
895
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
896
+  (0.1ms) select sqlite_version(*)
897
+  (17.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
898
+  (16.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
899
+  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
900
+  (0.2ms) SELECT version FROM "schema_migrations"
901
+  (12.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
902
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1207
903
  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
904
   (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
905
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
906
+  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
907
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
908
+  (10.7ms) commit transaction
909
+  (0.0ms) begin transaction
910
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
911
+ SQL (15.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:04:17 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:04:17 UTC +00:00]]
912
+  (12.1ms) commit transaction
913
+  (0.1ms) begin transaction
914
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
915
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:04:17 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:04:17 UTC +00:00]]
916
+  (11.9ms) commit transaction
1221
917
  Connecting to database specified by database.yml
1222
918
  Connecting to database specified by database.yml
1223
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
919
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1224
920
  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")
1235
-  (0.3ms) SELECT version FROM "schema_migrations"
1236
-  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1237
- Connecting to database specified by database.yml
1238
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
921
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
922
+  (0.0ms) select sqlite_version(*)
923
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
924
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1239
925
   (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
926
+  (28.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
927
+  (14.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
928
+  (15.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
929
+  (0.2ms) SELECT version FROM "schema_migrations"
930
+  (14.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1261
931
  Connecting to database specified by database.yml
1262
932
  Connecting to database specified by database.yml
1263
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
933
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1264
934
  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')
935
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
936
+  (0.0ms) select sqlite_version(*)
937
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1286
938
   (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
939
+  (0.1ms) select sqlite_version(*)
940
+  (24.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
941
+  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
942
+  (13.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
943
+  (0.2ms) SELECT version FROM "schema_migrations"
944
+  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1301
945
  Connecting to database specified by database.yml
1302
946
  Connecting to database specified by database.yml
1303
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
947
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1304
948
  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')
1317
- Connecting to database specified by database.yml
1318
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
949
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
950
+  (0.0ms) select sqlite_version(*)
951
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
952
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1319
953
   (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
954
+  (18.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
955
+  (12.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
956
+  (12.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
957
+  (0.1ms) SELECT version FROM "schema_migrations"
958
+  (9.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1341
959
  Connecting to database specified by database.yml
1342
960
  Connecting to database specified by database.yml
1343
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
961
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1344
962
  Migrating to CreatePeople (20120606125104)
963
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
964
+  (0.0ms) select sqlite_version(*)
1345
965
   (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')
966
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
967
+  (0.1ms) select sqlite_version(*)
968
+  (32.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
969
+  (12.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
970
+  (44.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
971
+  (0.2ms) SELECT version FROM "schema_migrations"
972
+  (13.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1357
973
  Connecting to database specified by database.yml
1358
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1359
-  (0.2ms) select sqlite_version(*)
1360
-  (40.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1361
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1362
-  (0.1ms) PRAGMA index_list("schema_migrations")
1363
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1364
-  (0.1ms) SELECT version FROM "schema_migrations"
1365
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
974
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
975
+  (0.1ms) select sqlite_version(*)
976
+  (18.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
977
+  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
978
+  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
979
+  (0.2ms) SELECT version FROM "schema_migrations"
980
+  (12.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
981
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1367
982
  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
983
   (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
984
+  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
985
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
986
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
987
+  (10.8ms) commit transaction
988
+  (0.0ms) begin transaction
989
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
990
+ SQL (14.6ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:13:09 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:09 UTC +00:00]]
991
+  (12.0ms) commit transaction
992
+  (0.1ms) begin transaction
993
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
994
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:13:09 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:13:09 UTC +00:00]]
995
+  (11.3ms) commit transaction
1381
996
  Connecting to database specified by database.yml
1382
997
  Connecting to database specified by database.yml
1383
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
998
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1384
999
  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")
1395
-  (0.1ms) SELECT version FROM "schema_migrations"
1396
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1000
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
+  (0.0ms) select sqlite_version(*)
1002
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1003
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1004
+  (0.1ms) select sqlite_version(*)
1005
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1006
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1007
+  (13.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1008
+  (0.2ms) SELECT version FROM "schema_migrations"
1009
+  (12.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1397
1010
  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" 
1011
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1012
+  (0.1ms) select sqlite_version(*)
1013
+  (18.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1014
+  (15.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1015
+  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1016
+  (0.2ms) SELECT version FROM "schema_migrations"
1017
+  (13.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1018
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1407
1019
  Migrating to CreateCities (20120606125058)
1408
-  (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
1020
   (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
1021
+  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1022
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1023
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1024
+  (11.1ms) commit transaction
1025
+  (0.0ms) begin transaction
1026
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1027
+ SQL (15.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:13:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:51 UTC +00:00]]
1028
+  (17.0ms) commit transaction
1029
+  (0.1ms) begin transaction
1030
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1031
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:13:51 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:13:51 UTC +00:00]]
1032
+  (64.8ms) commit transaction
1421
1033
  Connecting to database specified by database.yml
1422
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1034
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1423
1035
   (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)
1036
+  (20.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1037
+  (12.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1038
+  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1039
+  (0.2ms) SELECT version FROM "schema_migrations"
1040
+  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1041
+  (0.0ms) begin transaction
1042
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1043
+ SQL (14.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:13:54 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:13:54 UTC +00:00]]
1044
+  (16.4ms) commit transaction
1556
1045
  Connecting to database specified by database.yml
1557
1046
  Connecting to database specified by database.yml
1558
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1047
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1559
1048
  Migrating to CreatePeople (20120606125104)
1560
1049
   (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")
1050
+  (0.0ms) select sqlite_version(*)
1564
1051
   (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" 
1052
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1574
1053
   (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" 
1054
+  (110.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1055
+  (12.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1056
+  (13.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1057
+  (0.2ms) SELECT version FROM "schema_migrations"
1058
+  (12.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1059
+ Connecting to database specified by database.yml
1060
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1061
+  (0.1ms) select sqlite_version(*)
1062
+  (16.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1063
+  (12.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1064
+  (13.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1065
+  (0.2ms) SELECT version FROM "schema_migrations"
1066
+  (12.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1067
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1582
1068
  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
1069
   (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
1070
+  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1071
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1072
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1073
+  (11.2ms) commit transaction
1074
+  (0.1ms) begin transaction
1075
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1076
+ SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:14:14 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:14 UTC +00:00]]
1077
+  (13.8ms) commit transaction
1078
+  (0.1ms) begin transaction
1079
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1080
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:14:14 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:14:14 UTC +00:00]]
1081
+  (11.6ms) commit transaction
1596
1082
  Connecting to database specified by database.yml
1597
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1083
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1598
1084
   (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
1085
+  (22.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1086
+  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1087
+  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1088
+  (0.2ms) SELECT version FROM "schema_migrations"
1089
+  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1090
+  (0.1ms) begin transaction
1091
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1092
+ SQL (14.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:14:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:18 UTC +00:00]]
1093
+  (11.6ms) commit transaction
1609
1094
  Connecting to database specified by database.yml
1610
1095
  Connecting to database specified by database.yml
1611
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1096
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1612
1097
  Migrating to CreatePeople (20120606125104)
1098
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1099
+  (0.0ms) select sqlite_version(*)
1613
1100
   (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')
1101
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1102
+  (0.1ms) select sqlite_version(*)
1103
+  (27.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1104
+  (12.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1105
+  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1106
+  (0.2ms) SELECT version FROM "schema_migrations"
1107
+  (12.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1625
1108
  Connecting to database specified by database.yml
1626
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1627
-  (0.2ms) select sqlite_version(*)
1628
-  (43.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1629
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1630
-  (0.1ms) PRAGMA index_list("schema_migrations")
1631
-  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1632
-  (0.1ms) SELECT version FROM "schema_migrations"
1633
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1634
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1109
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1110
+  (0.1ms) select sqlite_version(*)
1111
+  (19.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1112
+  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1113
+  (15.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1114
+  (0.2ms) SELECT version FROM "schema_migrations"
1115
+  (13.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1116
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1635
1117
  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
1118
   (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
1119
+  (0.2ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1120
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1121
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1122
+  (12.5ms) commit transaction
1123
+  (0.1ms) begin transaction
1124
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1125
+ SQL (14.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 12:14:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:38 UTC +00:00]]
1126
+  (12.4ms) commit transaction
1127
+  (0.1ms) begin transaction
1128
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1129
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 12:14:38 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 12:14:38 UTC +00:00]]
1130
+  (11.3ms) commit transaction
1649
1131
  Connecting to database specified by database.yml
1650
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1132
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1651
1133
   (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
1134
+  (17.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1135
+  (13.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1136
+  (14.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1137
+  (0.2ms) SELECT version FROM "schema_migrations"
1138
+  (14.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1139
+  (0.2ms) begin transaction
1140
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1141
+ SQL (15.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 12:14:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 12:14:42 UTC +00:00]]
1142
+  (13.6ms) commit transaction
1662
1143
  Connecting to database specified by database.yml
1663
1144
  Connecting to database specified by database.yml
1664
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1145
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1665
1146
  Migrating to CreatePeople (20120606125104)
1666
1147
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1667
-  (0.3ms) select sqlite_version(*)
1668
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1669
-  (0.0ms) PRAGMA index_list("people")
1148
+  (0.1ms) select sqlite_version(*)
1670
1149
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1671
-  (0.2ms) select sqlite_version(*)
1672
-  (22.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1673
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1674
-  (0.1ms) PRAGMA index_list("schema_migrations")
1675
-  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1676
-  (0.1ms) SELECT version FROM "schema_migrations"
1677
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1678
- Connecting to database specified by database.yml
1679
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1150
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1680
1151
   (0.2ms) select sqlite_version(*)
1681
-  (44.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1682
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1683
-  (0.1ms) PRAGMA index_list("schema_migrations")
1684
-  (10.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1685
-  (0.1ms) SELECT version FROM "schema_migrations"
1686
-  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1687
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1152
+  (21.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1153
+  (23.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1154
+  (18.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
+  (0.2ms) SELECT version FROM "schema_migrations"
1156
+  (17.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1157
+ Connecting to database specified by database.yml
1158
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1159
+  (0.1ms) select sqlite_version(*)
1160
+  (20.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1161
+  (13.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1162
+  (14.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1163
+  (0.2ms) SELECT version FROM "schema_migrations"
1164
+  (13.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1165
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1688
1166
  Migrating to CreateCities (20120606125058)
1689
-  (0.1ms) begin transaction
1690
-  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1691
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1692
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1693
-  (2.7ms) commit transaction
1694
1167
   (0.1ms) begin transaction
1695
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1696
- SQL (7.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00]]
1697
-  (3.5ms) commit transaction
1698
-  (0.1ms) begin transaction
1699
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1700
- SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 15:22:53 UTC +00:00]]
1701
-  (2.6ms) commit transaction
1168
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1169
+  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1170
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1171
+  (13.1ms) commit transaction
1172
+  (0.2ms) begin transaction
1173
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1174
+ SQL (14.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 28 May 2013 15:15:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 15:15:38 UTC +00:00]]
1175
+  (12.6ms) commit transaction
1176
+  (0.1ms) begin transaction
1177
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1178
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 28 May 2013 15:15:38 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 28 May 2013 15:15:38 UTC +00:00]]
1179
+  (11.1ms) commit transaction
1702
1180
  Connecting to database specified by database.yml
1703
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1704
-  (0.7ms) select sqlite_version(*)
1705
-  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1706
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1707
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1181
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1182
+  (0.2ms) select sqlite_version(*)
1183
+  (21.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1184
+  (14.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1185
+  (13.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1708
1186
   (0.1ms) SELECT version FROM "schema_migrations"
1709
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1187
+  (12.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1710
1188
   (0.1ms) begin transaction
1711
- Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1712
- SQL (6.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 15:23:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 15:23:03 UTC +00:00]]
1713
-  (2.7ms) commit transaction
1189
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1190
+ SQL (14.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 28 May 2013 15:15:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 28 May 2013 15:15:42 UTC +00:00]]
1191
+  (13.6ms) commit transaction
1714
1192
  Connecting to database specified by database.yml
1715
1193
  Connecting to database specified by database.yml
1716
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1194
+  (7.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1717
1195
  Migrating to CreatePeople (20120606125104)
1718
1196
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1719
1197
   (0.1ms) select sqlite_version(*)
1720
1198
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1721
1199
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1722
1200
   (0.2ms) select sqlite_version(*)
1723
-  (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1724
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1725
-  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1201
+  (24.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1202
+  (13.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1203
+  (14.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1726
1204
   (0.1ms) SELECT version FROM "schema_migrations"
1727
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1205
+  (16.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1728
1206
  Connecting to database specified by database.yml
1729
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1207
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1730
1208
   (0.2ms) select sqlite_version(*)
1731
-  (39.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1732
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1733
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1734
-  (0.1ms) SELECT version FROM "schema_migrations"
1735
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1736
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1209
+  (18.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1210
+  (14.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1211
+  (16.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1212
+  (0.2ms) SELECT version FROM "schema_migrations"
1213
+  (15.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1214
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1737
1215
  Migrating to CreateCities (20120606125058)
1738
-  (0.0ms) begin transaction
1739
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1740
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1741
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1742
-  (4.7ms) commit transaction
1216
+  (0.1ms) begin transaction
1217
+  (0.7ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1218
+  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1219
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1220
+  (15.1ms) commit transaction
1743
1221
   (0.1ms) begin transaction
1744
1222
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1745
- SQL (4.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00]]
1746
-  (2.6ms) commit transaction
1747
-  (0.1ms) begin transaction
1748
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1749
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 19 Apr 2013 15:31:53 UTC +00:00]]
1750
-  (3.5ms) commit transaction
1751
- Connecting to database specified by database.yml
1752
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1753
-  (0.2ms) select sqlite_version(*)
1754
-  (97.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1755
-  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1756
-  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1757
-  (0.1ms) SELECT version FROM "schema_migrations"
1758
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1223
+ SQL (16.4ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00]]
1224
+  (13.0ms) commit transaction
1759
1225
   (0.0ms) begin transaction
1760
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1761
- SQL (4.5ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 19 Apr 2013 15:31:58 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 19 Apr 2013 15:31:58 UTC +00:00]]
1762
-  (2.7ms) commit transaction
1226
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1227
+ SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00], ["name", "Paris"], ["updated_at", Mon, 03 Jun 2013 08:28:53 UTC +00:00]]
1228
+  (12.7ms) commit transaction
1763
1229
  Connecting to database specified by database.yml
1764
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1230
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1765
1231
   (0.2ms) select sqlite_version(*)
1766
-  (2.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1767
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1768
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1232
+  (14.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1233
+  (15.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1234
+  (16.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1769
1235
   (0.2ms) SELECT version FROM "schema_migrations"
1770
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1771
- Connecting to database specified by database.yml
1772
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1773
-  (0.2ms) select sqlite_version(*)
1774
-  (42.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1775
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1776
-  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1777
-  (0.1ms) SELECT version FROM "schema_migrations"
1778
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1779
- Connecting to database specified by database.yml
1780
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1781
-  (0.1ms) select sqlite_version(*)
1782
-  (42.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1783
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1784
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1785
-  (0.1ms) SELECT version FROM "schema_migrations"
1786
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1787
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1788
- Migrating to CreateCities (20120606125058)
1789
-  (0.0ms) begin transaction
1790
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1791
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1792
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1793
-  (3.4ms) commit transaction
1236
+  (16.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1794
1237
   (0.1ms) begin transaction
1795
1238
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1796
- SQL (4.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00]]
1797
-  (2.9ms) commit transaction
1798
-  (0.1ms) begin transaction
1799
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1800
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:49:59 UTC +00:00]]
1801
-  (3.5ms) commit transaction
1239
+ SQL (15.6ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Mon, 03 Jun 2013 08:28:57 UTC +00:00], ["name", "Pascal"], ["updated_at", Mon, 03 Jun 2013 08:28:57 UTC +00:00]]
1240
+  (12.9ms) commit transaction
1802
1241
  Connecting to database specified by database.yml
1803
1242
  Connecting to database specified by database.yml
1804
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1805
-  (0.3ms) select sqlite_version(*)
1806
-  (105.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1807
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1808
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1809
-  (0.1ms) SELECT version FROM "schema_migrations"
1810
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1243
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1244
+ Migrating to CreatePeople (20120606125104)
1245
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1246
+  (0.0ms) select sqlite_version(*)
1811
1247
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1248
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1249
+  (0.1ms) select sqlite_version(*)
1250
+  (37.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1251
+  (14.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1252
+  (14.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1253
+  (0.2ms) SELECT version FROM "schema_migrations"
1254
+  (15.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1255
+ Connecting to database specified by database.yml
1256
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1257
+  (0.2ms) select sqlite_version(*)
1258
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1259
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1260
+  (14.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1261
+  (0.2ms) SELECT version FROM "schema_migrations"
1262
+  (15.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1263
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1812
1264
  Migrating to CreateCities (20120606125058)
1813
-  (0.0ms) begin transaction
1814
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1815
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1816
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1817
-  (3.7ms) commit transaction
1818
-  (0.1ms) begin transaction
1265
+  (0.1ms) begin transaction
1266
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1267
+  (0.5ms) ALTER TABLE "people" ADD "city_id" integer
1268
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1269
+  (15.1ms) commit transaction
1270
+  (0.2ms) begin transaction
1819
1271
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1820
- SQL (4.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00]]
1821
-  (40.4ms) commit transaction
1272
+ SQL (4.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00]]
1273
+  (13.4ms) commit transaction
1822
1274
   (0.1ms) begin transaction
1823
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1824
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:50:30 UTC +00:00]]
1825
-  (3.1ms) commit transaction
1275
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1276
+ SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 12:53:46 UTC +00:00]]
1277
+  (12.2ms) commit transaction
1826
1278
  Connecting to database specified by database.yml
1827
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1828
-  (0.1ms) select sqlite_version(*)
1829
-  (41.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1830
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1831
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1832
-  (0.1ms) SELECT version FROM "schema_migrations"
1833
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1279
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1280
+  (0.2ms) select sqlite_version(*)
1281
+  (15.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1282
+  (15.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1283
+  (14.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1284
+  (0.2ms) SELECT version FROM "schema_migrations"
1285
+  (14.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1834
1286
   (0.1ms) begin transaction
1835
1287
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1836
- SQL (4.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 13 Dec 2013 12:50:35 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:50:35 UTC +00:00]]
1837
-  (2.9ms) commit transaction
1288
+ SQL (3.8ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 12:53:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 12:53:51 UTC +00:00]]
1289
+  (13.5ms) commit transaction
1838
1290
  Connecting to database specified by database.yml
1839
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1840
-  (0.1ms) select sqlite_version(*)
1841
-  (39.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1842
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1843
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1844
-  (0.1ms) SELECT version FROM "schema_migrations"
1845
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1291
+ Connecting to database specified by database.yml
1292
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1293
+ Migrating to CreatePeople (20120606125104)
1294
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1295
+  (0.1ms) select sqlite_version(*)
1846
1296
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1297
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1298
+  (0.2ms) select sqlite_version(*)
1299
+  (23.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1300
+  (12.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1301
+  (12.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1302
+  (0.0ms) SELECT version FROM "schema_migrations"
1303
+  (12.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1304
+ Connecting to database specified by database.yml
1305
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1306
+  (0.2ms) select sqlite_version(*)
1307
+  (23.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1308
+  (38.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1309
+  (30.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1310
+  (0.2ms) SELECT version FROM "schema_migrations"
1311
+  (31.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1312
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1847
1313
  Migrating to CreateCities (20120606125058)
1848
-  (0.0ms) begin transaction
1849
-  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1850
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1851
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1852
-  (3.2ms) commit transaction
1314
+  (0.1ms) begin transaction
1315
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1316
+  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1317
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1318
+  (46.6ms) commit transaction
1853
1319
   (0.1ms) begin transaction
1854
1320
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1855
- SQL (4.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00]]
1856
-  (2.8ms) commit transaction
1321
+ SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 14:28:48 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:28:48 UTC +00:00]]
1322
+  (92.7ms) commit transaction
1857
1323
   (0.1ms) begin transaction
1858
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1859
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00], ["name", "Paris"], ["updated_at", Fri, 13 Dec 2013 12:51:06 UTC +00:00]]
1860
-  (3.2ms) commit transaction
1861
- Connecting to database specified by database.yml
1862
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1863
-  (0.3ms) select sqlite_version(*)
1864
-  (44.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1865
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1866
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1867
-  (0.1ms) SELECT version FROM "schema_migrations"
1868
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1324
+ City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1325
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 14:28:49 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 14:28:49 UTC +00:00]]
1326
+  (26.0ms) commit transaction
1327
+ Connecting to database specified by database.yml
1328
+  (16.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
+  (0.2ms) select sqlite_version(*)
1330
+  (32.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1331
+  (27.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1332
+  (22.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1333
+  (0.0ms) SELECT version FROM "schema_migrations"
1334
+  (14.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1869
1335
   (0.1ms) begin transaction
1870
1336
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1871
- SQL (4.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Fri, 13 Dec 2013 12:51:11 UTC +00:00], ["name", "Pascal"], ["updated_at", Fri, 13 Dec 2013 12:51:11 UTC +00:00]]
1872
-  (2.8ms) commit transaction
1337
+ SQL (3.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 14:28:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:28:53 UTC +00:00]]
1338
+  (19.1ms) commit transaction
1873
1339
  Connecting to database specified by database.yml
1874
1340
  Connecting to database specified by database.yml
1875
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1341
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1876
1342
  Migrating to CreatePeople (20120606125104)
1877
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1343
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1878
1344
   (0.0ms) select sqlite_version(*)
1879
1345
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1880
1346
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1881
-  (0.2ms) select sqlite_version(*)
1882
-  (33.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1883
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1884
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1885
-  (0.1ms) SELECT version FROM "schema_migrations"
1886
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1887
- Connecting to database specified by database.yml
1347
+  (0.1ms) select sqlite_version(*)
1348
+  (22.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1349
+  (15.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1350
+  (14.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1351
+  (0.2ms) SELECT version FROM "schema_migrations"
1352
+  (17.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1888
1353
  Connecting to database specified by database.yml
1889
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1890
- Migrating to CreatePeople (20120606125104)
1891
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1892
-  (0.1ms) select sqlite_version(*)
1893
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1894
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1354
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1895
1355
   (0.2ms) select sqlite_version(*)
1896
-  (34.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1897
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1898
-  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1899
-  (0.1ms) SELECT version FROM "schema_migrations"
1900
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1356
+  (21.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1357
+  (13.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1358
+  (15.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1359
+  (0.2ms) SELECT version FROM "schema_migrations"
1360
+  (14.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1361
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1362
+ Migrating to CreateCities (20120606125058)
1363
+  (0.1ms) begin transaction
1364
+  (0.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1365
+  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
1366
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1367
+  (14.5ms) commit transaction
1368
+  (0.1ms) begin transaction
1369
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1370
+ SQL (2.8ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00]]
1371
+  (13.8ms) commit transaction
1372
+  (0.1ms) begin transaction
1373
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1374
+ SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 12 Dec 2013 14:31:18 UTC +00:00]]
1375
+  (13.0ms) commit transaction
1376
+ Connecting to database specified by database.yml
1377
+  (14.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1378
+  (0.1ms) select sqlite_version(*)
1379
+  (20.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1380
+  (15.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1381
+  (14.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1382
+  (0.2ms) SELECT version FROM "schema_migrations"
1383
+  (13.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1384
+  (0.2ms) begin transaction
1385
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1386
+ SQL (2.7ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 12 Dec 2013 14:31:22 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 12 Dec 2013 14:31:22 UTC +00:00]]
1387
+  (13.5ms) commit transaction
1901
1388
  Connecting to database specified by database.yml
1902
1389
  Connecting to database specified by database.yml
1903
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1390
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1904
1391
  Migrating to CreatePeople (20120606125104)
1905
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1392
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1906
1393
   (0.1ms) select sqlite_version(*)
1907
1394
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1908
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1909
-  (0.2ms) select sqlite_version(*)
1910
-  (4.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1911
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1912
-  (5.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1913
-  (0.1ms) SELECT version FROM "schema_migrations"
1914
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1395
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1396
+  (0.1ms) select sqlite_version(*)
1397
+  (21.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1398
+  (10.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1399
+  (13.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1400
+  (0.2ms) SELECT version FROM "schema_migrations"
1401
+  (15.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')