wagons 0.0.1 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/MIT-LICENSE +1 -1
  2. data/README.rdoc +135 -9
  3. data/Rakefile +13 -5
  4. data/lib/generators/wagon/templates/%singular_name%.gemspec.tt +0 -2
  5. data/lib/generators/wagon/templates/.gitignore +5 -0
  6. data/lib/generators/wagon/templates/Gemfile.tt +5 -9
  7. data/lib/generators/wagon/templates/app/assets/images/.empty_directory +0 -0
  8. data/lib/generators/wagon/templates/app/controllers/.empty_directory +0 -0
  9. data/lib/generators/wagon/templates/app/models/.empty_directory +0 -0
  10. data/lib/generators/wagon/templates/app/views/.empty_directory +0 -0
  11. data/lib/generators/wagon/templates/db/fixtures/development/.empty_directory +0 -0
  12. data/lib/generators/wagon/templates/db/migrate/.empty_directory +0 -0
  13. data/lib/generators/wagon/templates/lib/%singular_name%/wagon.rb.tt +7 -4
  14. data/lib/generators/wagon/templates/test/fixtures/.empty_directory +0 -0
  15. data/lib/generators/wagon/wagon_generator.rb +23 -4
  16. data/lib/tasks/wagons.rake +119 -20
  17. data/lib/wagons/extensions/application.rb +14 -0
  18. data/lib/wagons/extensions/require_optional.rb +9 -0
  19. data/lib/wagons/{test_case.rb → extensions/test_case.rb} +4 -1
  20. data/lib/wagons/installer.rb +313 -0
  21. data/lib/wagons/railtie.rb +1 -1
  22. data/lib/wagons/version.rb +1 -1
  23. data/lib/wagons/view_helper.rb +58 -0
  24. data/lib/wagons/wagon.rb +125 -109
  25. data/lib/wagons/wagon_tasks.rake +9 -7
  26. data/lib/wagons.rb +44 -7
  27. data/test/dummy/Gemfile +8 -2
  28. data/test/dummy/Gemfile.lock +51 -48
  29. data/test/dummy/app/assets/javascripts/application.js +0 -2
  30. data/test/dummy/app/controllers/people_controller.rb +6 -0
  31. data/test/dummy/app/views/people/index.html.erb +6 -0
  32. data/test/dummy/app/views/shared/_sidebar.html.erb +3 -0
  33. data/test/dummy/config/initializers/wagon_app_version.rb +7 -0
  34. data/test/dummy/config/routes.rb +3 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/db/schema.rb +1 -1
  37. data/test/dummy/db/test.sqlite3 +0 -0
  38. data/test/dummy/log/development.log +1230 -1586
  39. data/test/dummy/log/test.log +6458 -1772
  40. data/test/dummy/test/unit/person_test.rb +6 -0
  41. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  42. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  43. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  44. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  45. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  46. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  47. data/test/dummy/tmp/pids/server.pid +1 -0
  48. data/test/dummy/vendor/wagons/superliner/Gemfile +1 -5
  49. data/test/dummy/vendor/wagons/superliner/Gemfile.lock +46 -48
  50. data/test/dummy/vendor/wagons/superliner/app/controllers/cities_controller.rb +6 -0
  51. data/test/dummy/vendor/wagons/superliner/app/views/cities/index.html.erb +7 -0
  52. data/test/dummy/vendor/wagons/superliner/app/views/people/_list_superliner.html.erb +3 -0
  53. data/test/dummy/vendor/wagons/superliner/app/views/shared/_sidebar_superliner.html.erb +1 -0
  54. data/test/dummy/vendor/wagons/superliner/config/routes.rb +1 -1
  55. data/test/dummy/vendor/wagons/superliner/db/migrate/{20120606125258_create_cities.rb → 20120606125058_create_cities.rb} +0 -0
  56. data/test/dummy/vendor/wagons/superliner/dummy_superliner.gemspec +0 -2
  57. data/test/dummy/vendor/wagons/superliner/lib/dummy_superliner/wagon.rb +3 -1
  58. data/test/dummy/vendor/wagons/superliner/test/functionals/cities_controller_test.rb +12 -0
  59. data/test/dummy/vendor/wagons/superliner/test/functionals/people_controller_test.rb +14 -0
  60. data/test/dummy/vendor/wagons/superliner/test/unit/city_test.rb +4 -1
  61. data/test/dummy/vendor/wagons/superliner/test/wagon_test.rb +7 -5
  62. data/test/wagons_installer_test.rb +225 -0
  63. metadata +241 -169
  64. data/test/dummy/dummy.gemspec +0 -17
@@ -1,44 +1,10 @@
1
1
  Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
2
  Connecting to database specified by database.yml
5
3
   (0.1ms) select sqlite_version(*)
6
-  (122.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (42.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
7
5
   (0.1ms) PRAGMA index_list("schema_migrations")
8
-  (66.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
10
- Connecting to database specified by database.yml
11
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
12
- Connecting to database specified by database.yml
13
-  (0.1ms) select sqlite_version(*)
14
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
15
- Connecting to database specified by database.yml
16
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17
-  (0.0ms) select sqlite_version(*)
18
-  (132.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
19
-  (0.1ms) PRAGMA index_list("schema_migrations")
20
-  (55.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21
-  (0.1ms) SELECT version FROM "schema_migrations"
22
-  (56.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
23
- Connecting to database specified by database.yml
24
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
25
-  (0.1ms) SELECT version FROM "schema_migrations"
26
- Connecting to database specified by database.yml
27
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
28
-  (0.1ms) SELECT version FROM "schema_migrations"
29
- Connecting to database specified by database.yml
6
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
30
7
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
31
-  (0.1ms) SELECT version FROM "schema_migrations"
32
- Connecting to database specified by database.yml
33
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
34
-  (0.1ms) SELECT version FROM "schema_migrations"
35
- Connecting to database specified by database.yml
36
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
37
-  (0.1ms) SELECT version FROM "schema_migrations"
38
- Connecting to database specified by database.yml
39
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
40
-  (0.1ms) SELECT version FROM "schema_migrations"
41
- Connecting to database specified by database.yml
42
8
  Connecting to database specified by database.yml
43
9
  Connecting to database specified by database.yml
44
10
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
@@ -47,1971 +13,1649 @@ Migrating to CreatePeople (20120606125104)
47
13
   (0.0ms) begin transaction
48
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)
49
15
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125104')
50
-  (137.9ms) commit transaction
51
-  (0.1ms) select sqlite_version(*)
52
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
53
-  (0.0ms) PRAGMA index_list("people")
54
- Connecting to database specified by database.yml
55
- Connecting to database specified by database.yml
56
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
57
- Migrating to CreateCities (20120606125258)
58
-  (0.0ms) select sqlite_version(*)
59
-  (0.0ms) begin transaction
60
-  (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)
61
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
62
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
63
-  (126.1ms) commit transaction
64
- Connecting to database specified by database.yml
65
- Connecting to database specified by database.yml
66
- Connecting to database specified by database.yml
16
+  (41.8ms) commit transaction
67
17
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
68
-  (0.0ms) select sqlite_version(*)
69
-  (132.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) 
70
-  (0.1ms) SELECT version FROM "schema_migrations"
71
-  (62.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
72
18
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
73
- Migrating to CreateCities (20120606125258)
74
-  (0.1ms) begin transaction
75
-  (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)
76
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
77
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
78
-  (69.1ms) commit transaction
79
- Connecting to database specified by database.yml
80
19
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
81
-  (0.0ms) select sqlite_version(*)
82
-  (112.4ms) DROP TABLE "people"
83
-  (57.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)
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)
23
+  (0.1ms) PRAGMA index_list("schema_migrations")
24
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
25
   (0.1ms) SELECT version FROM "schema_migrations"
85
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
- Migrating to CreateCities (20120606125258)
26
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
87
27
  Connecting to database specified by database.yml
88
28
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
89
-  (0.0ms) select sqlite_version(*)
90
-  (106.9ms) DROP TABLE "people"
91
-  (57.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)
29
+  (0.1ms) select sqlite_version(*)
30
+  (42.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
31
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
32
+  (0.1ms) PRAGMA index_list("schema_migrations")
33
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
34
   (0.1ms) SELECT version FROM "schema_migrations"
93
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
94
- Migrating to CreateCities (20120606125258)
95
-  (0.1ms) begin transaction
96
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
97
- SQL (7.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:12:41 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:12:41 UTC +00:00]]
98
-  (58.8ms) commit transaction
99
- Connecting to database specified by database.yml
35
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
100
36
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
101
-  (0.0ms) select sqlite_version(*)
102
-  (94.3ms) DROP TABLE "people"
103
-  (65.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)
104
-  (0.1ms) SELECT version FROM "schema_migrations"
105
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
106
- Migrating to CreateCities (20120606125258)
37
+ 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
43
+  (0.1ms) begin transaction
44
+ 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
107
47
   (0.1ms) begin transaction
108
48
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
109
-  (0.0ms) commit transaction
110
- Connecting to database specified by database.yml
111
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
112
-  (0.0ms) select sqlite_version(*)
113
-  (99.0ms) DROP TABLE "people"
114
-  (57.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)
115
-  (0.1ms) SELECT version FROM "schema_migrations"
116
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
117
- Migrating to CreateCities (20120606125258)
118
-  (0.0ms) begin transaction
119
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
120
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:16:29 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:16:29 UTC +00:00]]
121
-  (58.8ms) commit transaction
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
122
51
  Connecting to database specified by database.yml
123
52
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
124
53
   (0.1ms) select sqlite_version(*)
125
-  (126.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) 
126
-  (65.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
127
-  (0.1ms) PRAGMA index_list("schema_migrations")
128
-  (75.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
129
-  (0.1ms) SELECT version FROM "schema_migrations"
130
-  (54.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
131
- Connecting to database specified by database.yml
132
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
133
-  (0.0ms) select sqlite_version(*)
134
-  (87.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) 
135
-  (58.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
+  (42.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
55
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
136
56
   (0.1ms) PRAGMA index_list("schema_migrations")
137
-  (65.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
138
-  (0.1ms) SELECT version FROM "schema_migrations"
139
-  (57.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
140
- Connecting to database specified by database.yml
141
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
142
-  (0.0ms) select sqlite_version(*)
143
-  (138.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) 
144
-  (53.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
145
-  (0.1ms) PRAGMA index_list("schema_migrations")
146
-  (77.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
147
-  (0.1ms) SELECT version FROM "schema_migrations"
148
-  (68.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
149
- Connecting to database specified by database.yml
150
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
-  (0.0ms) select sqlite_version(*)
152
-  (94.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) 
153
-  (58.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
-  (0.0ms) PRAGMA index_list("schema_migrations")
155
-  (56.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
57
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
156
58
   (0.1ms) SELECT version FROM "schema_migrations"
157
-  (48.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
59
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
60
+  (0.1ms) begin transaction
61
+ 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
158
64
  Connecting to database specified by database.yml
159
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
160
-  (0.0ms) select sqlite_version(*)
161
-  (135.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) 
162
-  (53.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
163
-  (0.0ms) PRAGMA index_list("schema_migrations")
164
-  (78.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
-  (0.1ms) SELECT version FROM "schema_migrations"
166
-  (52.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
167
65
  Connecting to database specified by database.yml
168
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
169
-  (0.0ms) select sqlite_version(*)
170
-  (109.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
-  (58.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
172
-  (0.1ms) PRAGMA index_list("schema_migrations")
173
-  (65.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
-  (0.1ms) SELECT version FROM "schema_migrations"
175
-  (56.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
176
66
  Connecting to database specified by database.yml
177
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
178
-  (0.0ms) select sqlite_version(*)
179
-  (77.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) 
180
-  (62.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
181
-  (0.1ms) PRAGMA index_list("schema_migrations")
182
-  (78.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
-  (0.1ms) SELECT version FROM "schema_migrations"
184
-  (101.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
185
67
  Connecting to database specified by database.yml
186
68
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
187
-  (0.0ms) select sqlite_version(*)
188
-  (126.5ms) DROP TABLE "people"
189
-  (49.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)
190
-  (0.1ms) SELECT version FROM "schema_migrations"
69
+ Migrating to CreatePeople (20120606125104)
191
70
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
192
- Migrating to CreateCities (20120606125258)
193
-  (0.1ms) begin transaction
194
-  (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)
195
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
196
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
197
-  (52.2ms) commit transaction
198
-  (0.0ms) begin transaction
199
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
200
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:19:04 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:19:04 UTC +00:00]]
201
-  (42.4ms) commit transaction
202
- Connecting to database specified by database.yml
203
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
204
-  (0.0ms) select sqlite_version(*)
205
-  (97.3ms) DROP TABLE "people"
206
-  (40.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)
207
-  (0.1ms) SELECT version FROM "schema_migrations"
71
+  (0.1ms) select sqlite_version(*)
208
72
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
209
- Migrating to CreateCities (20120606125258)
210
-  (0.0ms) begin transaction
211
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
212
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:19:07 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:19:07 UTC +00:00]]
213
-  (39.4ms) commit transaction
214
- Connecting to database specified by database.yml
215
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
216
-  (0.0ms) select sqlite_version(*)
217
-  (81.4ms) DROP TABLE "people"
218
-  (57.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)
219
-  (0.1ms) SELECT version FROM "schema_migrations"
73
+  (0.0ms) PRAGMA index_list("people")
220
74
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
221
- Migrating to CreateCities (20120606125258)
222
-  (0.0ms) begin transaction
223
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
224
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:23:44 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:23:44 UTC +00:00]]
225
-  (58.4ms) commit transaction
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) 
78
+  (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')
226
82
  Connecting to database specified by database.yml
227
83
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
228
84
   (0.0ms) select sqlite_version(*)
229
-  (104.1ms) DROP TABLE "people"
230
-  (57.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)
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)
87
+  (0.1ms) PRAGMA index_list("schema_migrations")
88
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
231
89
   (0.1ms) SELECT version FROM "schema_migrations"
232
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
233
- Migrating to CreateCities (20120606125258)
234
-  (0.1ms) begin transaction
235
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
236
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:25:17 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:25:17 UTC +00:00]]
237
-  (56.1ms) commit transaction
238
- Connecting to database specified by database.yml
90
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
239
91
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
240
-  (0.0ms) select sqlite_version(*)
241
-  (104.3ms) DROP TABLE "people"
242
-  (57.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)
243
-  (0.1ms) SELECT version FROM "schema_migrations"
244
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
245
- Migrating to CreateCities (20120606125258)
92
+ 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
96
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
97
+  (3.2ms) commit transaction
246
98
   (0.1ms) begin transaction
247
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
248
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:25:52 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:25:52 UTC +00:00]]
249
-  (38.9ms) commit transaction
250
- Connecting to database specified by database.yml
251
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
252
-  (0.0ms) select sqlite_version(*)
253
-  (98.8ms) DROP TABLE "people"
254
-  (73.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)
255
-  (0.1ms) SELECT version FROM "schema_migrations"
256
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
257
- Migrating to CreateCities (20120606125258)
258
-  (0.0ms) begin transaction
259
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
260
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:26:40 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:26:40 UTC +00:00]]
261
-  (58.3ms) commit transaction
262
- Connecting to database specified by database.yml
263
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
264
-  (0.0ms) select sqlite_version(*)
265
-  (57.9ms) DROP TABLE "people"
266
-  (57.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)
267
-  (0.1ms) SELECT version FROM "schema_migrations"
268
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
269
- Migrating to CreateCities (20120606125258)
99
+ 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
270
102
   (0.1ms) begin transaction
271
103
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
272
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:26:50 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:26:50 UTC +00:00]]
273
-  (55.8ms) commit transaction
104
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:01 UTC +00:00]]
105
+  (2.9ms) commit transaction
274
106
  Connecting to database specified by database.yml
275
107
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
276
-  (0.0ms) select sqlite_version(*)
277
-  (86.4ms) DROP TABLE "people"
278
-  (65.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)
108
+  (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)
111
+  (0.1ms) PRAGMA index_list("schema_migrations")
112
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
279
113
   (0.1ms) SELECT version FROM "schema_migrations"
280
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
281
- Migrating to CreateCities (20120606125258)
114
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
282
115
   (0.1ms) begin transaction
283
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
284
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:27:21 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:27:21 UTC +00:00]]
285
-  (54.4ms) commit transaction
286
- Connecting to database specified by database.yml
287
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
288
-  (0.0ms) select sqlite_version(*)
289
-  (81.8ms) DROP TABLE "people"
290
-  (49.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)
291
-  (0.1ms) SELECT version FROM "schema_migrations"
292
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
293
- Migrating to CreateCities (20120606125258)
294
-  (0.0ms) begin transaction
295
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
296
- SQL (2.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:28:53 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:28:53 UTC +00:00]]
297
-  (48.1ms) commit transaction
298
- Connecting to database specified by database.yml
299
- Connecting to database specified by database.yml
116
+ 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
300
119
  Connecting to database specified by database.yml
301
120
  Connecting to database specified by database.yml
302
121
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
303
-  (0.0ms) select sqlite_version(*)
304
-  (79.5ms) DROP TABLE "people"
305
-  (57.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)
306
-  (0.1ms) SELECT version FROM "schema_migrations"
122
+ Migrating to CreatePeople (20120606125104)
307
123
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
308
- Migrating to CreateCities (20120606125258)
309
-  (0.0ms) begin transaction
310
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
311
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:36:50 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:36:50 UTC +00:00]]
312
-  (49.2ms) commit transaction
313
- Connecting to database specified by database.yml
314
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
315
-  (0.0ms) select sqlite_version(*)
316
-  (132.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) 
317
-  (59.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
318
-  (0.0ms) PRAGMA index_list("schema_migrations")
319
-  (72.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
320
-  (0.1ms) SELECT version FROM "schema_migrations"
321
-  (58.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
322
- Connecting to database specified by database.yml
323
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
324
-  (0.0ms) select sqlite_version(*)
325
-  (79.3ms) DROP TABLE "people"
326
-  (48.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)
327
-  (0.1ms) SELECT version FROM "schema_migrations"
124
+  (0.0ms) select sqlite_version(*)
328
125
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
329
- Migrating to CreateCities (20120606125258)
330
-  (0.1ms) begin transaction
331
-  (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)
332
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
333
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
334
-  (51.3ms) commit transaction
335
-  (0.1ms) begin transaction
336
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
337
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:41:00 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:41:00 UTC +00:00]]
338
-  (40.6ms) commit transaction
126
+  (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) 
131
+  (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')
339
135
  Connecting to database specified by database.yml
340
136
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
341
137
   (0.1ms) select sqlite_version(*)
342
-  (99.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) 
343
-  (55.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
344
140
   (0.1ms) PRAGMA index_list("schema_migrations")
345
-  (75.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
141
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
142
   (0.1ms) SELECT version FROM "schema_migrations"
347
-  (62.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
348
- Connecting to database specified by database.yml
143
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
349
144
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
350
-  (0.0ms) select sqlite_version(*)
351
-  (111.8ms) DROP TABLE "people"
352
-  (57.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)
353
-  (0.1ms) SELECT version FROM "schema_migrations"
354
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
355
- Migrating to CreateCities (20120606125258)
356
-  (0.1ms) begin transaction
357
-  (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)
358
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
359
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
360
-  (59.1ms) commit transaction
145
+ Migrating to CreateCities (20120606125058)
361
146
   (0.0ms) begin transaction
362
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
363
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:45:03 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:45:03 UTC +00:00]]
364
-  (70.5ms) commit transaction
365
- Connecting to database specified by database.yml
366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
367
-  (0.0ms) select sqlite_version(*)
368
-  (93.4ms) DROP TABLE "people"
369
-  (57.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)
370
-  (0.1ms) SELECT version FROM "schema_migrations"
371
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
372
- Migrating to CreateCities (20120606125258)
373
-  (0.0ms) begin transaction
374
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
375
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:47:01 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:47:01 UTC +00:00]]
376
-  (58.6ms) commit transaction
377
- Connecting to database specified by database.yml
378
- Connecting to database specified by database.yml
379
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
380
-  (0.0ms) select sqlite_version(*)
381
-  (70.7ms) DROP TABLE "people"
382
-  (65.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)
383
-  (0.1ms) SELECT version FROM "schema_migrations"
384
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
385
- Migrating to CreateCities (20120606125258)
386
-  (0.0ms) begin transaction
387
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
388
- SQL (2.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:49:30 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:49:30 UTC +00:00]]
389
-  (66.3ms) commit transaction
390
- Connecting to database specified by database.yml
391
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
392
-  (0.0ms) select sqlite_version(*)
393
-  (72.1ms) DROP TABLE "people"
394
-  (57.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)
395
-  (0.1ms) SELECT version FROM "schema_migrations"
396
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
397
- Migrating to CreateCities (20120606125258)
147
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
148
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
149
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
150
+  (3.2ms) commit transaction
151
+  (0.1ms) begin transaction
152
+ 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
398
155
   (0.1ms) begin transaction
399
156
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
400
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:52:19 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:52:19 UTC +00:00]]
401
-  (63.5ms) commit transaction
402
- Connecting to database specified by database.yml
403
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
-  (0.0ms) select sqlite_version(*)
405
-  (114.4ms) DROP TABLE "people"
406
-  (57.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)
407
-  (0.1ms) SELECT version FROM "schema_migrations"
408
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
409
- Migrating to CreateCities (20120606125258)
410
-  (0.0ms) begin transaction
411
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
412
-  (0.0ms) commit transaction
157
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:56:37 UTC +00:00]]
158
+  (2.9ms) commit transaction
413
159
  Connecting to database specified by database.yml
414
160
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
415
-  (0.0ms) select sqlite_version(*)
416
-  (210.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) 
417
-  (139.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
161
+  (0.1ms) select sqlite_version(*)
162
+  (67.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
163
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
418
164
   (0.1ms) PRAGMA index_list("schema_migrations")
419
-  (163.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
420
-  (0.1ms) SELECT version FROM "schema_migrations"
421
-  (140.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
422
- Connecting to database specified by database.yml
423
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
424
-  (0.0ms) select sqlite_version(*)
425
-  (116.6ms) DROP TABLE "people"
426
-  (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)
165
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
166
   (0.1ms) SELECT version FROM "schema_migrations"
428
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
429
- Migrating to CreateCities (20120606125258)
167
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
430
168
   (0.1ms) begin transaction
431
-  (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)
432
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
433
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
434
-  (43.0ms) commit transaction
435
-  (0.1ms) begin transaction
436
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
437
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:55:55 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:55:55 UTC +00:00]]
438
-  (49.1ms) commit transaction
169
+ 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
439
172
  Connecting to database specified by database.yml
440
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
441
-  (0.0ms) select sqlite_version(*)
442
-  (87.7ms) DROP TABLE "people"
443
-  (65.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)
444
-  (0.1ms) SELECT version FROM "schema_migrations"
445
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
446
- Migrating to CreateCities (20120606125258)
447
-  (0.1ms) begin transaction
448
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
449
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:56:58 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:56:58 UTC +00:00]]
450
-  (56.1ms) commit transaction
451
173
  Connecting to database specified by database.yml
452
174
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
453
-  (0.0ms) select sqlite_version(*)
454
-  (90.6ms) DROP TABLE "people"
455
-  (49.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)
456
-  (0.1ms) SELECT version FROM "schema_migrations"
175
+ Migrating to CreatePeople (20120606125104)
457
176
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
458
- Migrating to CreateCities (20120606125258)
459
-  (0.0ms) begin transaction
460
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
461
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:58:03 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:58:03 UTC +00:00]]
462
-  (57.6ms) commit transaction
177
+  (0.0ms) select sqlite_version(*)
178
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
179
+  (0.0ms) PRAGMA index_list("people")
180
+  (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) 
184
+  (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')
463
188
  Connecting to database specified by database.yml
464
189
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
465
-  (0.0ms) select sqlite_version(*)
466
-  (122.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) 
467
-  (53.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
190
+  (0.1ms) select sqlite_version(*)
191
+  (39.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
192
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
468
193
   (0.1ms) PRAGMA index_list("schema_migrations")
469
-  (79.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
470
-  (0.1ms) SELECT version FROM "schema_migrations"
471
-  (51.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
472
- Connecting to database specified by database.yml
473
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
474
-  (0.0ms) select sqlite_version(*)
475
-  (99.9ms) DROP TABLE "people"
476
-  (57.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)
194
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
477
195
   (0.2ms) SELECT version FROM "schema_migrations"
478
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
479
- Migrating to CreateCities (20120606125258)
480
-  (0.1ms) begin transaction
481
-  (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)
482
-  (0.4ms) ALTER TABLE "people" ADD "city_id" integer
483
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
484
-  (66.0ms) commit transaction
485
-  (0.1ms) begin transaction
486
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
487
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:58:38 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 13:58:38 UTC +00:00]]
488
-  (67.4ms) commit transaction
489
- Connecting to database specified by database.yml
196
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
490
197
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
491
-  (0.0ms) select sqlite_version(*)
492
-  (98.1ms) DROP TABLE "people"
493
-  (57.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)
494
-  (0.1ms) SELECT version FROM "schema_migrations"
495
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
496
- Migrating to CreateCities (20120606125258)
198
+ 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
204
+  (0.0ms) begin transaction
205
+ 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
497
208
   (0.1ms) begin transaction
498
209
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
499
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:00:52 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:00:52 UTC +00:00]]
500
-  (62.0ms) commit transaction
210
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:03 UTC +00:00]]
211
+  (2.8ms) commit transaction
501
212
  Connecting to database specified by database.yml
502
213
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
503
214
   (0.1ms) select sqlite_version(*)
504
-  (111.5ms) DROP TABLE "people"
505
-  (57.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)
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)
217
+  (0.1ms) PRAGMA index_list("schema_migrations")
218
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
219
   (0.1ms) SELECT version FROM "schema_migrations"
507
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
508
- Migrating to CreateCities (20120606125258)
220
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
509
221
   (0.0ms) begin transaction
510
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
511
- SQL (2.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:02:01 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:02:01 UTC +00:00]]
512
-  (65.9ms) commit transaction
513
- Connecting to database specified by database.yml
514
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
515
-  (0.0ms) select sqlite_version(*)
516
-  (87.3ms) DROP TABLE "people"
517
-  (48.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)
518
-  (0.1ms) SELECT version FROM "schema_migrations"
519
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
520
- Migrating to CreateCities (20120606125258)
521
-  (0.1ms) begin transaction
522
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
523
- SQL (2.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:02:32 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:02:32 UTC +00:00]]
524
-  (45.6ms) commit transaction
222
+ 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
525
225
  Connecting to database specified by database.yml
526
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
527
-  (0.0ms) select sqlite_version(*)
528
-  (95.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) 
529
-  (56.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
530
-  (0.1ms) PRAGMA index_list("schema_migrations")
531
-  (67.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
532
-  (0.1ms) SELECT version FROM "schema_migrations"
533
-  (63.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
534
226
  Connecting to database specified by database.yml
535
227
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
536
-  (0.0ms) select sqlite_version(*)
537
-  (72.1ms) DROP TABLE "people"
538
-  (57.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)
539
-  (0.1ms) SELECT version FROM "schema_migrations"
228
+ Migrating to CreatePeople (20120606125104)
540
229
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
541
- Migrating to CreateCities (20120606125258)
542
-  (0.1ms) begin transaction
543
-  (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)
544
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
545
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
546
-  (59.1ms) commit transaction
547
-  (0.0ms) begin transaction
548
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
549
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:05:56 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:05:56 UTC +00:00]]
550
-  (59.5ms) commit transaction
551
- Connecting to database specified by database.yml
552
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
553
-  (0.1ms) select sqlite_version(*)
554
-  (81.7ms) DROP TABLE "people"
555
-  (49.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)
556
-  (0.1ms) SELECT version FROM "schema_migrations"
230
+  (0.0ms) select sqlite_version(*)
557
231
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
558
- Migrating to CreateCities (20120606125258)
559
-  (0.1ms) begin transaction
560
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
561
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:06:41 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:06:41 UTC +00:00]]
562
-  (55.1ms) commit transaction
563
- Connecting to database specified by database.yml
564
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
565
-  (0.0ms) select sqlite_version(*)
566
-  (99.0ms) DROP TABLE "people"
567
-  (57.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)
568
-  (0.1ms) SELECT version FROM "schema_migrations"
232
+  (0.0ms) PRAGMA index_list("people")
569
233
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
570
- Migrating to CreateCities (20120606125258)
571
-  (0.0ms) begin transaction
572
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
573
- SQL (2.1ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:08:16 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:08:16 UTC +00:00]]
574
-  (59.2ms) commit transaction
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) 
237
+  (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')
575
241
  Connecting to database specified by database.yml
576
242
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
577
243
   (0.0ms) select sqlite_version(*)
578
-  (153.2ms) DROP TABLE "people"
579
-  (57.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)
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)
246
+  (0.1ms) PRAGMA index_list("schema_migrations")
247
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
580
248
   (0.1ms) SELECT version FROM "schema_migrations"
581
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
582
- Migrating to CreateCities (20120606125258)
583
-  (0.0ms) begin transaction
584
-  (0.0ms) rollback transaction
585
- Connecting to database specified by database.yml
249
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
586
250
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
587
-  (0.0ms) select sqlite_version(*)
588
-  (106.1ms) DROP TABLE "people"
589
-  (57.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)
590
-  (0.1ms) SELECT version FROM "schema_migrations"
591
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
592
- Migrating to CreateCities (20120606125258)
251
+ Migrating to CreateCities (20120606125058)
252
+  (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
255
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
256
+  (3.5ms) commit transaction
593
257
   (0.1ms) begin transaction
594
258
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
595
-  (0.0ms) rollback transaction
596
- Connecting to database specified by database.yml
597
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
598
-  (0.0ms) select sqlite_version(*)
599
-  (73.3ms) DROP TABLE "people"
600
-  (57.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)
601
-  (0.1ms) SELECT version FROM "schema_migrations"
602
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
603
- Migrating to CreateCities (20120606125258)
604
-  (0.0ms) begin transaction
605
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
606
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:09:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:09:51 UTC +00:00]]
607
-  (58.6ms) commit transaction
259
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
260
+  (2.9ms) commit transaction
608
261
   (0.1ms) begin transaction
609
262
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
610
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:09:51 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:09:51 UTC +00:00]]
611
-  (38.6ms) commit transaction
263
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 20:58:55 UTC +00:00]]
264
+  (3.0ms) commit transaction
612
265
  Connecting to database specified by database.yml
613
266
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
614
267
   (0.1ms) select sqlite_version(*)
615
-  (102.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) 
616
-  (39.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
617
270
   (0.1ms) PRAGMA index_list("schema_migrations")
618
-  (68.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
619
-  (0.1ms) SELECT version FROM "schema_migrations"
620
-  (45.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
621
- Connecting to database specified by database.yml
622
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
623
-  (0.0ms) select sqlite_version(*)
624
-  (90.7ms) DROP TABLE "people"
625
-  (49.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)
271
+  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
626
272
   (0.1ms) SELECT version FROM "schema_migrations"
627
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
628
- Migrating to CreateCities (20120606125258)
629
-  (0.1ms) begin transaction
630
-  (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)
631
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
632
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
633
-  (50.7ms) commit transaction
634
-  (0.1ms) begin transaction
635
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
636
- SQL (2.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 06 Jun 2012 14:10:04 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:10:04 UTC +00:00]]
637
-  (47.3ms) commit transaction
638
-  (0.1ms) begin transaction
639
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
640
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:10:05 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:10:05 UTC +00:00]]
641
-  (61.3ms) commit transaction
642
- Connecting to database specified by database.yml
643
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
644
-  (0.0ms) select sqlite_version(*)
645
-  (72.4ms) DROP TABLE "people"
646
-  (40.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)
647
-  (0.1ms) SELECT version FROM "schema_migrations"
648
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
649
- Migrating to CreateCities (20120606125258)
273
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
650
274
   (0.0ms) begin transaction
651
275
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
652
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:10:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:10:08 UTC +00:00]]
653
-  (43.3ms) 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.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:10:08 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:10:08 UTC +00:00]]
657
-  (45.1ms) commit transaction
276
+ SQL (3.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 20:59:00 UTC +00:00]]
277
+  (2.9ms) commit transaction
658
278
  Connecting to database specified by database.yml
659
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
660
-  (0.0ms) select sqlite_version(*)
661
-  (70.3ms) DROP TABLE "people"
662
-  (65.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)
663
-  (0.1ms) SELECT version FROM "schema_migrations"
664
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
665
- Migrating to CreateCities (20120606125258)
666
-  (0.1ms) begin transaction
667
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
668
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:11:21 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:11:21 UTC +00:00]]
669
-  (74.4ms) commit transaction
670
-  (0.1ms) begin transaction
671
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
672
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:11:21 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:11:21 UTC +00:00]]
673
-  (61.4ms) commit transaction
674
279
  Connecting to database specified by database.yml
675
280
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
676
-  (0.0ms) select sqlite_version(*)
677
-  (71.5ms) DROP TABLE "people"
678
-  (49.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)
679
-  (0.1ms) SELECT version FROM "schema_migrations"
281
+ Migrating to CreatePeople (20120606125104)
680
282
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
681
- Migrating to CreateCities (20120606125258)
682
-  (0.1ms) begin transaction
683
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
684
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:11:41 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:11:41 UTC +00:00]]
685
-  (47.7ms) commit transaction
686
-  (0.0ms) begin transaction
687
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
688
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:11:41 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:11:41 UTC +00:00]]
689
-  (46.6ms) commit transaction
690
- Connecting to database specified by database.yml
691
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
692
-  (0.1ms) select sqlite_version(*)
693
-  (83.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) 
694
-  (53.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
695
-  (0.1ms) PRAGMA index_list("schema_migrations")
696
-  (78.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
697
-  (0.1ms) SELECT version FROM "schema_migrations"
698
-  (59.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
699
- Connecting to database specified by database.yml
700
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
701
-  (0.1ms) select sqlite_version(*)
702
-  (111.3ms) DROP TABLE "people"
703
-  (57.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)
704
-  (0.1ms) SELECT version FROM "schema_migrations"
283
+  (0.0ms) select sqlite_version(*)
705
284
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
706
- Migrating to CreateCities (20120606125258)
707
-  (0.0ms) begin transaction
708
-  (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)
709
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
710
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
711
-  (61.3ms) commit transaction
712
-  (0.0ms) begin transaction
713
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
714
- SQL (2.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 06 Jun 2012 14:12:21 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:12:21 UTC +00:00]]
715
-  (103.6ms) commit transaction
716
-  (0.1ms) begin transaction
717
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
718
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:12:21 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:12:21 UTC +00:00]]
719
-  (58.9ms) commit transaction
720
- Connecting to database specified by database.yml
721
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
722
-  (0.0ms) select sqlite_version(*)
723
-  (101.4ms) DROP TABLE "people"
724
-  (65.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)
725
-  (0.1ms) SELECT version FROM "schema_migrations"
285
+  (0.0ms) PRAGMA index_list("people")
726
286
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
727
- Migrating to CreateCities (20120606125258)
728
-  (0.0ms) begin transaction
729
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
730
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:12:39 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:12:39 UTC +00:00]]
731
-  (58.9ms) commit transaction
732
-  (0.1ms) begin transaction
733
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
734
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:12:39 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:12:39 UTC +00:00]]
735
-  (48.2ms) commit transaction
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) 
290
+  (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')
736
294
  Connecting to database specified by database.yml
737
295
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
738
296
   (0.0ms) select sqlite_version(*)
739
-  (101.9ms) DROP TABLE "people"
740
-  (57.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)
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")
741
301
   (0.1ms) SELECT version FROM "schema_migrations"
742
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
743
- Migrating to CreateCities (20120606125258)
302
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
303
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
304
+ Migrating to CreateCities (20120606125058)
305
+  (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
308
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
309
+  (4.2ms) commit transaction
744
310
   (0.0ms) begin transaction
745
311
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
746
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:13:33 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:13:33 UTC +00:00]]
747
-  (58.6ms) commit transaction
312
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:01:10 UTC +00:00]]
313
+  (4.5ms) commit transaction
748
314
   (0.1ms) begin transaction
749
315
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
750
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:13:33 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:13:33 UTC +00:00]]
751
-  (55.8ms) commit transaction
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
752
318
  Connecting to database specified by database.yml
753
319
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
754
-  (0.0ms) select sqlite_version(*)
755
-  (85.2ms) DROP TABLE "people"
756
-  (57.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)
320
+  (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)
323
+  (0.1ms) PRAGMA index_list("schema_migrations")
324
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
757
325
   (0.1ms) SELECT version FROM "schema_migrations"
758
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
759
- Migrating to CreateCities (20120606125258)
760
-  (0.0ms) begin transaction
761
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
762
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:15:58 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:15:58 UTC +00:00]]
763
-  (58.7ms) commit transaction
326
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
764
327
   (0.1ms) begin transaction
765
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
766
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:15:58 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:15:58 UTC +00:00]]
767
-  (56.4ms) commit transaction
328
+ 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
768
331
  Connecting to database specified by database.yml
769
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
770
-  (0.0ms) select sqlite_version(*)
771
-  (69.1ms) DROP TABLE "people"
772
-  (57.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)
773
-  (0.1ms) SELECT version FROM "schema_migrations"
774
332
  Connecting to database specified by database.yml
775
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
776
-  (0.0ms) select sqlite_version(*)
777
-  (94.0ms) DROP TABLE "people"
778
-  (48.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)
779
-  (0.1ms) SELECT version FROM "schema_migrations"
780
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
781
- Migrating to CreateCities (20120606125258)
782
-  (0.0ms) begin transaction
783
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
784
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:17:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:17:08 UTC +00:00]]
785
-  (51.0ms) commit transaction
786
-  (0.1ms) begin transaction
787
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
788
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:17:08 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:17:08 UTC +00:00]]
789
-  (51.9ms) commit transaction
790
333
  Connecting to database specified by database.yml
791
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
792
-  (0.0ms) select sqlite_version(*)
793
-  (61.8ms) DROP TABLE "people"
794
-  (57.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)
795
-  (0.1ms) SELECT version FROM "schema_migrations"
796
-  (0.2ms) select * from schema_migrations
797
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
798
- Migrating to CreateCities (20120606125258)
799
-  (0.0ms) begin transaction
800
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
801
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:19:45 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:19:45 UTC +00:00]]
802
-  (60.2ms) commit transaction
803
-  (0.1ms) begin transaction
804
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
805
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:19:45 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:19:45 UTC +00:00]]
806
-  (60.7ms) commit transaction
807
334
  Connecting to database specified by database.yml
808
335
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
809
-  (0.0ms) select sqlite_version(*)
810
-  (78.1ms) DROP TABLE "people"
811
-  (57.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)
812
-  (0.1ms) SELECT version FROM "schema_migrations"
813
-  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;
814
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
815
- Migrating to CreateCities (20120606125258)
816
-  (0.0ms) begin transaction
817
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
818
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:21:35 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:21:35 UTC +00:00]]
819
-  (57.5ms) commit transaction
820
-  (0.0ms) begin transaction
821
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
822
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:21:35 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:21:35 UTC +00:00]]
823
-  (48.2ms) commit transaction
824
- Connecting to database specified by database.yml
825
-  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;
336
+ Migrating to CreatePeople (20120606125104)
826
337
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
827
- Migrating to CreateCities (20120606125258)
828
- Connecting to database specified by database.yml
829
-  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;
338
+  (0.0ms) select sqlite_version(*)
830
339
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
831
- Migrating to CreateCities (20120606125258)
832
- Connecting to database specified by database.yml
833
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
834
-  (0.0ms) select sqlite_version(*)
835
-  (101.9ms) DROP TABLE "people"
836
-  (57.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)
837
-  (0.1ms) SELECT version FROM "schema_migrations"
838
-  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' ORDER BY name;
839
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
840
- Migrating to CreateCities (20120606125258)
841
-  (0.0ms) begin transaction
842
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
843
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:22:57 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:22:57 UTC +00:00]]
844
-  (59.9ms) commit transaction
845
-  (0.1ms) begin transaction
846
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
847
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:22:57 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:22:57 UTC +00:00]]
848
-  (60.4ms) commit transaction
849
- Connecting to database specified by database.yml
850
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
851
-  (0.0ms) select sqlite_version(*)
852
-  (67.1ms) DROP TABLE "people"
853
-  (65.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)
854
-  (0.1ms) SELECT version FROM "schema_migrations"
855
-  (0.2ms) SELECT name FROM sqlite_master WHERE type='column' ORDER BY name;
856
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
857
- Migrating to CreateCities (20120606125258)
858
-  (0.0ms) begin transaction
859
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
860
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:23:49 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:23:49 UTC +00:00]]
861
-  (59.5ms) commit transaction
862
-  (0.0ms) begin transaction
863
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
864
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:23:49 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:23:49 UTC +00:00]]
865
-  (52.4ms) commit transaction
866
- Connecting to database specified by database.yml
867
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
868
-  (0.0ms) select sqlite_version(*)
869
-  (99.0ms) DROP TABLE "people"
870
-  (49.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)
871
-  (0.1ms) SELECT version FROM "schema_migrations"
872
-  (0.2ms) SELECT sql FROM sqlite_master WHERE name='people'
873
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
874
- Migrating to CreateCities (20120606125258)
875
-  (0.1ms) begin transaction
876
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
877
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:27:22 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:27:22 UTC +00:00]]
878
-  (47.4ms) commit transaction
879
-  (0.1ms) begin transaction
880
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
881
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:27:22 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:27:22 UTC +00:00]]
882
-  (45.7ms) commit transaction
340
+  (0.0ms) PRAGMA index_list("people")
341
+  (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) 
345
+  (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')
883
349
  Connecting to database specified by database.yml
884
350
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
885
351
   (0.1ms) select sqlite_version(*)
886
-  (121.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) 
887
-  (49.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
888
354
   (0.1ms) PRAGMA index_list("schema_migrations")
889
-  (65.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
890
-  (0.1ms) SELECT version FROM "schema_migrations"
891
-  (56.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
892
- Connecting to database specified by database.yml
893
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
894
-  (0.0ms) select sqlite_version(*)
895
-  (79.9ms) DROP TABLE "people"
896
-  (65.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)
355
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
897
356
   (0.1ms) SELECT version FROM "schema_migrations"
898
-  (0.2ms) SELECT sql FROM sqlite_master WHERE name='people'
357
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
899
358
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
900
- Migrating to CreateCities (20120606125258)
359
+ Migrating to CreateCities (20120606125058)
901
360
   (0.0ms) begin transaction
902
-  (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) 
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) 
903
362
   (0.1ms) ALTER TABLE "people" ADD "city_id" integer
904
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
905
-  (61.0ms) commit transaction
363
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
364
+  (2.8ms) commit transaction
906
365
   (0.1ms) begin transaction
907
366
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
908
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 06 Jun 2012 14:28:21 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:28:21 UTC +00:00]]
909
-  (50.9ms) commit transaction
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
910
369
   (0.1ms) begin transaction
911
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
912
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:28:21 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:28:21 UTC +00:00]]
913
-  (48.4ms) commit transaction
914
- Connecting to database specified by database.yml
915
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
916
-  (0.1ms) select sqlite_version(*)
917
-  (180.8ms) DROP TABLE "people"
918
-  (65.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)
919
-  (0.1ms) SELECT version FROM "schema_migrations"
920
-  (0.3ms) SELECT sql FROM sqlite_master
921
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
922
- Migrating to CreateCities (20120606125258)
923
-  (0.1ms) begin transaction
924
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
925
- SQL (3.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:31:16 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:31:16 UTC +00:00]]
926
-  (61.2ms) commit transaction
927
-  (0.0ms) begin transaction
928
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
929
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:31:16 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:31:16 UTC +00:00]]
930
-  (64.2ms) commit transaction
931
- Connecting to database specified by database.yml
932
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
933
-  (0.0ms) select sqlite_version(*)
934
-  (107.8ms) DROP TABLE "people"
935
-  (57.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)
936
-  (0.1ms) SELECT version FROM "schema_migrations"
937
-  (0.2ms) SELECT sql FROM sqlite_master
938
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
939
- Migrating to CreateCities (20120606125258)
940
-  (0.1ms) begin transaction
941
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
942
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:38:37 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:38:37 UTC +00:00]]
943
-  (55.8ms) commit transaction
944
-  (0.1ms) begin transaction
945
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
946
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:38:37 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:38:37 UTC +00:00]]
947
-  (44.9ms) commit transaction
948
- Connecting to database specified by database.yml
949
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
950
-  (0.0ms) select sqlite_version(*)
951
-  (99.8ms) DROP TABLE "people"
952
-  (49.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)
953
-  (0.1ms) SELECT version FROM "schema_migrations"
954
-  (0.2ms) SELECT sql FROM sqlite_master
955
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
956
- Migrating to CreateCities (20120606125258)
957
-  (0.1ms) begin transaction
958
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
959
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:40:23 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:40:23 UTC +00:00]]
960
-  (47.5ms) commit transaction
961
-  (0.1ms) begin transaction
962
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
963
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:40:23 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:40:23 UTC +00:00]]
964
-  (54.1ms) commit transaction
370
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
371
+ SQL (0.4ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:09:46 UTC +00:00]]
372
+  (2.9ms) commit transaction
965
373
  Connecting to database specified by database.yml
966
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
967
-  (0.0ms) select sqlite_version(*)
968
-  (99.2ms) DROP TABLE "people"
969
-  (57.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)
970
-  (0.1ms) SELECT version FROM "schema_migrations"
971
-  (0.2ms) SELECT sql FROM sqlite_master
972
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
973
- Migrating to CreateCities (20120606125258)
974
-  (0.0ms) begin transaction
975
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
976
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:42:00 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:42:00 UTC +00:00]]
977
-  (59.0ms) commit transaction
978
-  (0.1ms) begin transaction
979
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
980
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:42:00 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:42:00 UTC +00:00]]
981
-  (56.7ms) commit transaction
982
374
  Connecting to database specified by database.yml
983
375
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
984
-  (0.0ms) select sqlite_version(*)
985
-  (68.1ms) DROP TABLE "people"
986
-  (57.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)
987
-  (0.1ms) SELECT version FROM "schema_migrations"
988
-  (0.3ms) SELECT sql FROM sqlite_master
989
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
990
- Migrating to CreateCities (20120606125258)
991
-  (0.1ms) begin transaction
992
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
993
- SQL (2.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:42:23 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:42:23 UTC +00:00]]
994
-  (46.5ms) commit transaction
995
-  (0.1ms) begin transaction
996
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
997
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:42:23 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:42:23 UTC +00:00]]
998
-  (45.9ms) commit transaction
376
+ Migrating to CreatePeople (20120606125104)
377
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
378
+  (0.0ms) select sqlite_version(*)
379
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
380
+  (0.0ms) PRAGMA index_list("people")
381
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
382
+  (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) 
385
+  (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')
999
389
  Connecting to database specified by database.yml
1000
390
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1001
-  (0.0ms) select sqlite_version(*)
1002
-  (166.2ms) DROP TABLE "people"
1003
-  (57.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)
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)
394
+  (0.1ms) PRAGMA index_list("schema_migrations")
395
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1004
396
   (0.1ms) SELECT version FROM "schema_migrations"
1005
-  (0.2ms) SELECT sql FROM sqlite_master
1006
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1007
- Migrating to CreateCities (20120606125258)
397
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
398
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
399
+ Migrating to CreateCities (20120606125058)
1008
400
   (0.0ms) begin transaction
1009
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1010
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 14:44:13 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 14:44:13 UTC +00:00]]
1011
-  (58.8ms) commit transaction
1012
-  (0.1ms) begin transaction
1013
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1014
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 14:44:13 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 14:44:13 UTC +00:00]]
1015
-  (58.9ms) commit transaction
1016
- Connecting to database specified by database.yml
1017
- Connecting to database specified by database.yml
1018
- Connecting to database specified by database.yml
1019
- Connecting to database specified by database.yml
1020
- Connecting to database specified by database.yml
1021
- SQLite3::SQLException: no such table: city: select * from city
1022
- Connecting to database specified by database.yml
1023
- Connecting to database specified by database.yml
1024
- Connecting to database specified by database.yml
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
403
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
404
+  (3.0ms) commit transaction
405
+  (0.1ms) begin transaction
406
+ 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
410
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
411
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:10:32 UTC +00:00]]
412
+  (2.8ms) commit transaction
1025
413
  Connecting to database specified by database.yml
1026
414
  Connecting to database specified by database.yml
1027
415
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1028
-  (0.1ms) select sqlite_version(*)
1029
-  (0.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) 
1030
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1031
-  (0.0ms) PRAGMA index_list("schema_migrations")
1032
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1033
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
+ 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
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
422
+  (0.1ms) select sqlite_version(*)
423
+  (32.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
424
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
425
+  (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')
1034
429
  Connecting to database specified by database.yml
1035
430
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1036
431
   (0.1ms) select sqlite_version(*)
1037
-  (0.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) 
1038
-  (0.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1039
-  (0.0ms) PRAGMA index_list("schema_migrations")
1040
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1041
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1042
- Connecting to database specified by database.yml
1043
- Connecting to database specified by database.yml
1044
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1045
-  (0.0ms) select sqlite_version(*)
1046
-  (131.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) 
1047
-  (60.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1048
434
   (0.1ms) PRAGMA index_list("schema_migrations")
1049
-  (80.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
435
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1050
436
   (0.1ms) SELECT version FROM "schema_migrations"
1051
-  (66.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1052
- Connecting to database specified by database.yml
1053
- Connecting to database specified by database.yml
1054
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1055
-  (0.1ms) select sqlite_version(*)
1056
-  (0.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) 
1057
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1058
-  (0.0ms) PRAGMA index_list("schema_migrations")
1059
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1060
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1061
- Connecting to database specified by database.yml
437
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1062
438
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1063
-  (0.1ms) select sqlite_version(*)
1064
-  (0.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) 
1065
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1066
-  (0.0ms) PRAGMA index_list("schema_migrations")
1067
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1068
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
439
+ 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
446
+ 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
449
+  (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
1069
453
  Connecting to database specified by database.yml
1070
454
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1071
455
   (0.1ms) select sqlite_version(*)
1072
-  (0.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) 
1073
-  (0.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1074
-  (0.0ms) PRAGMA index_list("schema_migrations")
1075
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1076
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1077
- Connecting to database specified by database.yml
1078
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1079
-  (0.0ms) select sqlite_version(*)
1080
-  (0.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) 
1081
-  (0.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1082
-  (0.0ms) PRAGMA index_list("schema_migrations")
1083
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1085
- Connecting to database specified by database.yml
1086
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1087
-  (0.0ms) select sqlite_version(*)
1088
-  (0.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) 
1089
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1090
-  (0.0ms) PRAGMA index_list("schema_migrations")
1091
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1092
- SQLite3::SQLException: no such table: main.schema_migrations: CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1093
- Connecting to database specified by database.yml
1094
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1095
-  (0.0ms) select sqlite_version(*)
1096
-  (95.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) 
1097
-  (64.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
456
+  (38.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
457
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1098
458
   (0.1ms) PRAGMA index_list("schema_migrations")
1099
-  (75.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
459
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1100
460
   (0.1ms) SELECT version FROM "schema_migrations"
1101
-  (62.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
461
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
462
+  (0.1ms) begin transaction
463
+ 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
1102
466
  Connecting to database specified by database.yml
1103
467
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1104
-  (0.0ms) select sqlite_version(*)
1105
-  (89.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) 
1106
-  (61.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
468
+  (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)
1107
471
   (0.1ms) PRAGMA index_list("schema_migrations")
1108
-  (78.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1109
-  (0.1ms) SELECT version FROM "schema_migrations"
1110
-  (59.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1111
- Connecting to database specified by database.yml
1112
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1113
-  (0.0ms) select sqlite_version(*)
1114
-  (59.3ms) DROP TABLE "people"
1115
-  (57.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)
472
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1116
473
   (0.1ms) SELECT version FROM "schema_migrations"
1117
-  (0.2ms) SELECT sql FROM sqlite_master
474
+  (5.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1118
475
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1119
- Migrating to CreateCities (20120606125258)
476
+ Migrating to CreateCities (20120606125058)
1120
477
   (0.0ms) begin transaction
1121
-  (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) 
1122
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1123
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1124
-  (60.3ms) commit 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) 
479
+  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
480
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
481
+  (3.7ms) commit transaction
1125
482
   (0.1ms) begin transaction
1126
483
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1127
- SQL (2.3ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Wed, 06 Jun 2012 15:03:57 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 15:03:57 UTC +00:00]]
1128
-  (41.9ms) commit transaction
484
+ SQL (2.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:12:53 UTC +00:00]]
485
+  (2.9ms) commit transaction
1129
486
   (0.1ms) begin transaction
1130
487
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1131
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 15:03:57 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 15:03:57 UTC +00:00]]
1132
-  (48.5ms) commit transaction
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
1133
490
  Connecting to database specified by database.yml
1134
491
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1135
-  (0.0ms) select sqlite_version(*)
1136
-  (103.5ms) DROP TABLE "people"
1137
-  (57.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)
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")
1138
497
   (0.1ms) SELECT version FROM "schema_migrations"
1139
-  (0.2ms) SELECT sql FROM sqlite_master
498
+  (29.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1140
499
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1141
- Migrating to CreateCities (20120606125258)
500
+ Migrating to CreateCities (20120606125058)
1142
501
   (0.0ms) begin transaction
1143
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1144
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Wed, 06 Jun 2012 15:05:41 UTC +00:00], ["name", "Pascal"], ["updated_at", Wed, 06 Jun 2012 15:05:41 UTC +00:00]]
1145
-  (58.9ms) commit transaction
1146
-  (0.1ms) begin transaction
1147
- City Load (0.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1148
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 15:05:41 UTC +00:00], ["name", "Paris"], ["updated_at", Wed, 06 Jun 2012 15:05:41 UTC +00:00]]
1149
-  (51.0ms) commit 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
1150
514
  Connecting to database specified by database.yml
1151
515
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1152
516
   (0.1ms) select sqlite_version(*)
1153
-  (1721.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) 
1154
-  (1304.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1155
519
   (0.1ms) PRAGMA index_list("schema_migrations")
1156
-  (1962.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1157
-  (0.0ms) SELECT version FROM "schema_migrations"
1158
-  (725.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1159
- Connecting to database specified by database.yml
1160
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1161
-  (0.1ms) select sqlite_version(*)
1162
-  (53.1ms) DROP TABLE "people"
1163
-  (74.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)
520
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1164
521
   (0.1ms) SELECT version FROM "schema_migrations"
1165
-  (0.1ms) SELECT sql FROM sqlite_master
522
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1166
523
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1167
- Migrating to CreateCities (20120606125258)
524
+ Migrating to CreateCities (20120606125058)
1168
525
   (0.0ms) begin transaction
1169
-  (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) 
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) 
1170
527
   (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1171
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1172
-  (51.9ms) commit transaction
528
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
529
+  (3.3ms) commit transaction
1173
530
   (0.1ms) begin transaction
1174
531
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1175
- SQL (9.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 06:54:02 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 06:54:02 UTC +00:00]]
1176
-  (42.8ms) commit transaction
532
+ SQL (3.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:13:46 UTC +00:00]]
533
+  (2.9ms) commit transaction
1177
534
   (0.1ms) begin transaction
1178
535
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1179
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 06:54:03 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 06:54:03 UTC +00:00]]
1180
-  (47.0ms) commit transaction
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
1181
538
  Connecting to database specified by database.yml
1182
539
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1183
-  (0.0ms) select sqlite_version(*)
1184
-  (65.5ms) DROP TABLE "people"
1185
-  (65.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)
540
+  (0.1ms) select sqlite_version(*)
541
+  (38.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
542
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
543
+  (0.1ms) PRAGMA index_list("schema_migrations")
544
+  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1186
545
   (0.1ms) SELECT version FROM "schema_migrations"
1187
-  (0.2ms) SELECT sql FROM sqlite_master
546
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1188
547
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1189
- Migrating to CreateCities (20120606125258)
548
+ Migrating to CreateCities (20120606125058)
1190
549
   (0.0ms) begin transaction
1191
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1192
- SQL (2.1ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 06:54:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 06:54:18 UTC +00:00]]
1193
-  (58.0ms) commit transaction
1194
-  (0.1ms) begin transaction
1195
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1196
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 06:54:18 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 06:54:18 UTC +00:00]]
1197
-  (55.8ms) commit 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
1198
562
  Connecting to database specified by database.yml
1199
563
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1200
-  (0.0ms) select sqlite_version(*)
1201
-  (79.8ms) DROP TABLE "people"
1202
-  (49.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)
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")
1203
569
   (0.1ms) SELECT version FROM "schema_migrations"
1204
-  (0.2ms) SELECT sql FROM sqlite_master
1205
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1206
- Migrating to CreateCities (20120606125258)
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)
1207
573
   (0.0ms) begin transaction
1208
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1209
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 06:56:49 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 06:56:49 UTC +00:00]]
1210
-  (49.4ms) commit transaction
1211
-  (0.1ms) begin transaction
1212
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1213
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 06:56:49 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 06:56:49 UTC +00:00]]
1214
-  (43.7ms) commit 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
1215
586
  Connecting to database specified by database.yml
1216
587
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1217
588
   (0.1ms) select sqlite_version(*)
1218
-  (125.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) 
1219
-  (41.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1220
591
   (0.1ms) PRAGMA index_list("schema_migrations")
1221
-  (56.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
592
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1222
593
   (0.1ms) SELECT version FROM "schema_migrations"
1223
-  (40.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1224
- Connecting to database specified by database.yml
1225
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1226
-  (0.0ms) select sqlite_version(*)
1227
-  (85.6ms) DROP TABLE "people"
1228
-  (48.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)
1229
-  (0.1ms) SELECT version FROM "schema_migrations"
1230
-  (0.2ms) SELECT sql FROM sqlite_master
594
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1231
595
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1232
- Migrating to CreateCities (20120606125258)
1233
-  (0.1ms) begin transaction
1234
-  (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) 
1235
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1236
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1237
-  (50.8ms) commit transaction
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
1238
602
   (0.1ms) begin transaction
1239
603
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1240
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 06:57:03 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 06:57:03 UTC +00:00]]
1241
-  (50.0ms) commit transaction
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
1242
606
   (0.1ms) begin transaction
1243
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1244
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 06:57:03 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 06:57:03 UTC +00:00]]
1245
-  (47.5ms) commit 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
1246
610
  Connecting to database specified by database.yml
1247
611
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1248
-  (0.0ms) select sqlite_version(*)
1249
-  (81.7ms) DROP TABLE "people"
1250
-  (48.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)
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")
1251
617
   (0.1ms) SELECT version FROM "schema_migrations"
1252
-  (0.2ms) SELECT sql FROM sqlite_master
618
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1253
619
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1254
- Migrating to CreateCities (20120606125258)
1255
-  (0.1ms) begin transaction
1256
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1257
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 06:57:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 06:57:06 UTC +00:00]]
1258
-  (46.7ms) commit transaction
1259
-  (0.1ms) begin transaction
1260
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1261
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 06:57:07 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 06:57:07 UTC +00:00]]
1262
-  (45.4ms) commit transaction
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
1263
634
  Connecting to database specified by database.yml
1264
635
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1265
636
   (0.1ms) select sqlite_version(*)
1266
-  (68.7ms) DROP TABLE "people"
1267
-  (48.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)
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")
1268
641
   (0.1ms) SELECT version FROM "schema_migrations"
1269
-  (0.1ms) select * from schema_migrations
1270
-  (0.2ms) SELECT sql FROM sqlite_master
1271
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1272
- Migrating to CreateCities (20120606125258)
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
1273
650
   (0.0ms) begin transaction
1274
651
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1275
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:02:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:02:38 UTC +00:00]]
1276
-  (55.8ms) commit transaction
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
1277
654
   (0.1ms) begin transaction
1278
655
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1279
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:02:38 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:02:38 UTC +00:00]]
1280
-  (62.6ms) commit transaction
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
1281
658
  Connecting to database specified by database.yml
1282
659
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1283
-  (0.0ms) select sqlite_version(*)
1284
-  (77.2ms) DROP TABLE "people"
1285
-  (48.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)
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")
1286
665
   (0.1ms) SELECT version FROM "schema_migrations"
1287
-  (0.2ms) select * from schema_migrations
1288
-  (0.2ms) SELECT sql FROM sqlite_master
1289
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1290
- Migrating to CreateCities (20120606125258)
1291
-  (0.0ms) begin transaction
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
1292
675
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1293
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:04:14 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:04:14 UTC +00:00]]
1294
-  (49.3ms) commit transaction
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
1295
678
   (0.1ms) begin transaction
1296
679
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1297
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:04:14 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:04:14 UTC +00:00]]
1298
-  (52.1ms) commit transaction
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
1299
682
  Connecting to database specified by database.yml
1300
683
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1301
-  (0.0ms) select sqlite_version(*)
1302
-  (81.8ms) DROP TABLE "people"
1303
-  (57.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)
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")
1304
689
   (0.1ms) SELECT version FROM "schema_migrations"
1305
-  (0.2ms) select * from schema_migrations
1306
-  (0.2ms) SELECT sql FROM sqlite_master
1307
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1308
- Migrating to CreateCities (20120606125258)
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
1309
698
   (0.1ms) begin transaction
1310
699
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1311
- SQL (3.0ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:05:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:05:55 UTC +00:00]]
1312
-  (54.1ms) commit transaction
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
1313
702
   (0.1ms) begin transaction
1314
703
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1315
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:05:55 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:05:55 UTC +00:00]]
1316
-  (53.2ms) commit transaction
704
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00], ["name", "Paris"], ["updated_at", Tue, 13 Nov 2012 21:21:42 UTC +00:00]]
705
+  (2.9ms) commit transaction
706
+ Connecting to database specified by database.yml
1317
707
  Connecting to database specified by database.yml
1318
708
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1319
-  (0.0ms) select sqlite_version(*)
1320
-  (72.3ms) DROP TABLE "people"
1321
-  (57.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)
1322
-  (0.1ms) SELECT version FROM "schema_migrations"
1323
-  (0.2ms) select * from schema_migrations
1324
-  (0.2ms) SELECT sql FROM sqlite_master
709
+ Migrating to CreatePeople (20120606125104)
710
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
711
+  (0.0ms) select sqlite_version(*)
1325
712
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1326
- Migrating to CreateCities (20120606125258)
713
+  (0.0ms) PRAGMA index_list("people")
714
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
715
+  (0.0ms) select sqlite_version(*)
716
+  (31.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
717
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
718
+  (0.1ms) PRAGMA index_list("schema_migrations")
719
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
720
+  (0.1ms) SELECT version FROM "schema_migrations"
721
+  (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
722
+ Connecting to database specified by database.yml
723
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
724
+  (0.1ms) select sqlite_version(*)
725
+  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
726
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
727
+  (0.1ms) PRAGMA index_list("schema_migrations")
728
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
+  (0.1ms) SELECT version FROM "schema_migrations"
730
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
731
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
732
+ Migrating to CreateCities (20120606125058)
733
+  (0.0ms) begin transaction
734
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
735
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
736
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
737
+  (2.8ms) commit transaction
1327
738
   (0.1ms) begin transaction
1328
739
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1329
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:06:43 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:06:43 UTC +00:00]]
1330
-  (46.8ms) commit transaction
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
1331
742
   (0.1ms) begin transaction
1332
743
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1333
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:06:43 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:06:43 UTC +00:00]]
1334
-  (37.9ms) commit transaction
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
1335
746
  Connecting to database specified by database.yml
1336
747
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1337
-  (0.0ms) select sqlite_version(*)
1338
-  (107.7ms) DROP TABLE "people"
1339
-  (57.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)
748
+  (0.1ms) select sqlite_version(*)
749
+  (41.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
750
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
751
+  (0.1ms) PRAGMA index_list("schema_migrations")
752
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1340
753
   (0.1ms) SELECT version FROM "schema_migrations"
1341
-  (0.2ms) select * from schema_migrations
1342
-  (0.2ms) SELECT sql FROM sqlite_master
1343
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1344
- Migrating to CreateCities (20120606125258)
754
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1345
755
   (0.0ms) begin transaction
1346
756
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1347
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:08:06 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:08:06 UTC +00:00]]
1348
-  (58.8ms) commit transaction
1349
-  (0.0ms) begin transaction
1350
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1351
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:08:06 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:08:06 UTC +00:00]]
1352
-  (53.3ms) commit transaction
757
+ SQL (3.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00], ["name", "Pascal"], ["updated_at", Tue, 13 Nov 2012 21:22:36 UTC +00:00]]
758
+  (2.5ms) commit transaction
759
+ Connecting to database specified by database.yml
760
+ Connecting to database specified by database.yml
761
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
762
+ Migrating to CreatePeople (20120606125104)
763
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
764
+  (0.0ms) select sqlite_version(*)
765
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
766
+  (0.0ms) PRAGMA index_list("people")
767
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
768
+  (0.1ms) select sqlite_version(*)
769
+  (36.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
770
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
771
+  (0.1ms) PRAGMA index_list("schema_migrations")
772
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
773
+  (0.1ms) SELECT version FROM "schema_migrations"
774
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1353
775
  Connecting to database specified by database.yml
1354
776
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1355
777
   (0.1ms) select sqlite_version(*)
1356
-  (175.6ms) DROP TABLE "people"
1357
-  (57.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)
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")
1358
782
   (0.1ms) SELECT version FROM "schema_migrations"
1359
-  (0.2ms) select * from schema_migrations
783
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1360
784
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1361
- Migrating to CreateCities (20120606125258)
1362
-  (0.0ms) begin transaction
1363
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1364
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:11:07 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:11:07 UTC +00:00]]
1365
-  (58.6ms) commit transaction
785
+ Migrating to CreateCities (20120606125058)
1366
786
   (0.0ms) begin transaction
1367
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1368
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:11:08 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:11:08 UTC +00:00]]
1369
-  (57.2ms) commit 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
1370
799
  Connecting to database specified by database.yml
1371
800
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1372
-  (0.0ms) select sqlite_version(*)
1373
-  (106.7ms) DROP TABLE "people"
1374
-  (57.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)
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")
1375
806
   (0.1ms) SELECT version FROM "schema_migrations"
1376
-  (0.2ms) select * 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
1377
813
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1378
- Migrating to CreateCities (20120606125258)
1379
-  (0.0ms) begin transaction
1380
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1381
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:16:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:16:12 UTC +00:00]]
1382
-  (49.1ms) commit transaction
1383
-  (0.1ms) begin transaction
1384
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1385
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:16:12 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:16:12 UTC +00:00]]
1386
-  (48.1ms) commit transaction
814
+  (0.2ms) select sqlite_version(*)
815
+  (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
816
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
817
+  (0.1ms) PRAGMA index_list("schema_migrations")
818
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
819
+  (0.2ms) SELECT version FROM "schema_migrations"
820
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
821
+ Connecting to database specified by database.yml
1387
822
  Connecting to database specified by database.yml
1388
823
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1389
-  (0.2ms) select * from schema_migrations
1390
-  (0.0ms) select sqlite_version(*)
1391
-  (70.9ms) DROP TABLE "people"
1392
-  (57.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) 
1393
-  (0.1ms) SELECT version FROM "schema_migrations"
1394
-  (0.1ms) select * from schema_migrations
824
+ Migrating to CreatePeople (20120606125104)
1395
825
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1396
- Migrating to CreateCities (20120606125258)
1397
-  (0.0ms) begin transaction
1398
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1399
- SQL (2.2ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:17:59 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:17:59 UTC +00:00]]
1400
-  (101.2ms) commit transaction
826
+  (0.3ms) select sqlite_version(*)
827
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
828
+  (0.0ms) PRAGMA index_list("people")
829
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
+  (0.2ms) select sqlite_version(*)
831
+  (3.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
832
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
833
+  (0.1ms) PRAGMA index_list("schema_migrations")
834
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
+  (0.1ms) SELECT version FROM "schema_migrations"
836
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
837
+ Connecting to database specified by database.yml
838
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
839
+  (0.2ms) select sqlite_version(*)
840
+  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
841
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
842
+  (0.1ms) PRAGMA index_list("schema_migrations")
843
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
844
+  (0.2ms) SELECT version FROM "schema_migrations"
845
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
846
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
847
+ Migrating to CreateCities (20120606125058)
848
+  (0.0ms) begin transaction
849
+  (0.3ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
850
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
851
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
852
+  (4.5ms) commit transaction
853
+  (0.1ms) begin transaction
854
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
855
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:20:56 UTC +00:00]]
856
+  (2.9ms) commit transaction
1401
857
   (0.1ms) begin transaction
1402
858
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1403
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:17:59 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:17:59 UTC +00:00]]
1404
-  (53.6ms) commit transaction
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
1405
862
  Connecting to database specified by database.yml
1406
863
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1407
-  (0.2ms) select * from schema_migrations
1408
-  (0.0ms) select sqlite_version(*)
1409
-  (68.2ms) DROP TABLE "people"
1410
-  (66.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) 
1411
-  (0.1ms) SELECT version FROM "schema_migrations"
1412
-  (0.2ms) select * from schema_migrations
864
+ Migrating to CreatePeople (20120606125104)
1413
865
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1414
- Migrating to CreateCities (20120606125258)
1415
-  (0.1ms) begin transaction
1416
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1417
- SQL (2.3ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Thu, 07 Jun 2012 07:20:52 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:20:52 UTC +00:00]]
1418
-  (54.8ms) commit transaction
866
+  (0.2ms) select sqlite_version(*)
867
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
868
+  (0.0ms) PRAGMA index_list("people")
869
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
870
+  (0.2ms) select sqlite_version(*)
871
+  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
872
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
873
+  (0.1ms) PRAGMA index_list("schema_migrations")
874
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
875
+  (0.1ms) SELECT version FROM "schema_migrations"
876
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
877
+ Connecting to database specified by database.yml
878
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
879
+  (0.3ms) select sqlite_version(*)
880
+  (37.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
881
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
882
+  (0.1ms) PRAGMA index_list("schema_migrations")
883
+  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
884
+  (0.2ms) SELECT version FROM "schema_migrations"
885
+  (9.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
886
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
887
+ Migrating to CreateCities (20120606125058)
888
+  (0.1ms) begin transaction
889
+  (0.5ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
891
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
892
+  (3.7ms) commit transaction
893
+  (0.3ms) begin transaction
894
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
895
+ SQL (6.5ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:21:38 UTC +00:00]]
896
+  (3.8ms) commit transaction
1419
897
   (0.1ms) begin transaction
1420
898
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1421
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:20:52 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:20:52 UTC +00:00]]
1422
-  (52.2ms) commit transaction
899
+ SQL (0.6ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:21:39 UTC +00:00]]
900
+  (2.8ms) commit transaction
901
+ Connecting to database specified by database.yml
1423
902
  Connecting to database specified by database.yml
1424
903
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1425
-  (0.2ms) select * from schema_migrations
1426
- SQLite3::SQLException: no such table: schema_migrations: select * from schema_migrations
904
+ Migrating to CreatePeople (20120606125104)
905
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
906
+  (0.2ms) select sqlite_version(*)
907
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
908
+  (0.0ms) PRAGMA index_list("people")
909
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
910
+  (0.2ms) select sqlite_version(*)
911
+  (29.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
912
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
913
+  (0.1ms) PRAGMA index_list("schema_migrations")
914
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
915
+  (0.1ms) SELECT version FROM "schema_migrations"
916
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1427
917
  Connecting to database specified by database.yml
1428
918
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1429
-  (0.0ms) select sqlite_version(*)
1430
-  (119.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) 
1431
-  (64.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1432
922
   (0.1ms) PRAGMA index_list("schema_migrations")
1433
-  (66.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
923
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1434
924
   (0.1ms) SELECT version FROM "schema_migrations"
1435
-  (88.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1436
-  (0.2ms) select * from schema_migrations
1437
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1438
- Migrating to CreateCities (20120606125258)
1439
-  (0.1ms) begin transaction
1440
-  (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)
1441
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1442
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1443
-  (59.1ms) commit transaction
1444
-  (0.0ms) begin transaction
1445
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1446
- SQL (2.3ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:26:02 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:26:02 UTC +00:00]]
1447
-  (61.6ms) commit transaction
925
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
926
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
927
+ Migrating to CreateCities (20120606125058)
1448
928
   (0.1ms) begin transaction
1449
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1450
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:26:02 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:26:02 UTC +00:00]]
1451
-  (69.0ms) commit 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
1452
942
  Connecting to database specified by database.yml
1453
943
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1454
-  (0.1ms) select sqlite_version(*)
1455
-  (143.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) 
1456
-  (52.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1457
-  (0.1ms) PRAGMA index_list("schema_migrations")
1458
-  (78.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1459
-  (0.1ms) SELECT version FROM "schema_migrations"
1460
-  (59.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1461
-  (0.2ms) select * from schema_migrations
944
+ Migrating to CreatePeople (20120606125104)
1462
945
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1463
- Migrating to CreateCities (20120606125258)
1464
-  (0.1ms) begin transaction
1465
-  (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)
1466
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1467
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1468
-  (50.9ms) commit transaction
1469
-  (0.0ms) begin transaction
1470
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1471
- SQL (2.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:26:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:26:08 UTC +00:00]]
1472
-  (44.7ms) commit transaction
1473
-  (0.1ms) begin transaction
1474
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1475
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:26:08 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:26:08 UTC +00:00]]
1476
-  (37.9ms) commit transaction
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')
1477
957
  Connecting to database specified by database.yml
1478
958
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1479
-  (0.0ms) select sqlite_version(*)
1480
-  (88.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) 
1481
-  (66.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
959
+  (0.2ms) select sqlite_version(*)
960
+  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
961
+  (35.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1482
962
   (0.1ms) PRAGMA index_list("schema_migrations")
1483
-  (65.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
963
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1484
964
   (0.1ms) SELECT version FROM "schema_migrations"
1485
-  (65.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
965
+  (4.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1486
966
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1487
- Migrating to CreateCities (20120606125258)
1488
-  (0.1ms) begin transaction
967
+ Migrating to CreateCities (20120606125058)
968
+  (0.0ms) begin transaction
1489
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) 
1490
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1491
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1492
-  (101.1ms) commit transaction
1493
-  (0.0ms) begin transaction
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
1494
974
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1495
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:27:05 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:27:05 UTC +00:00]]
1496
-  (61.9ms) commit transaction
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
1497
977
   (0.1ms) begin transaction
1498
978
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1499
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:27:05 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:27:05 UTC +00:00]]
1500
-  (60.6ms) commit transaction
979
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:23:44 UTC +00:00]]
980
+  (2.8ms) commit transaction
981
+ Connecting to database specified by database.yml
982
+ Connecting to database specified by database.yml
983
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
984
+ Migrating to CreatePeople (20120606125104)
985
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
986
+  (0.2ms) select sqlite_version(*)
987
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
988
+  (0.0ms) PRAGMA index_list("people")
989
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
990
+  (0.2ms) select sqlite_version(*)
991
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
993
+  (0.1ms) PRAGMA index_list("schema_migrations")
994
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
995
+  (0.1ms) SELECT version FROM "schema_migrations"
996
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1501
997
  Connecting to database specified by database.yml
1502
998
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1503
-  (0.1ms) select sqlite_version(*)
1504
-  (83.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) 
1505
-  (52.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1506
-  (0.0ms) PRAGMA index_list("schema_migrations")
1507
-  (71.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
1508
1004
   (0.1ms) SELECT version FROM "schema_migrations"
1509
-  (59.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1005
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1510
1006
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1511
- Migrating to CreateCities (20120606125258)
1007
+ Migrating to CreateCities (20120606125058)
1512
1008
   (0.1ms) begin transaction
1513
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) 
1514
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1515
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1516
-  (51.8ms) commit transaction
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
1517
1013
   (0.1ms) begin transaction
1518
1014
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1519
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:27:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:27:18 UTC +00:00]]
1520
-  (48.3ms) commit transaction
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
1521
1017
   (0.1ms) begin transaction
1522
1018
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1523
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:27:18 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:27:18 UTC +00:00]]
1524
-  (45.3ms) commit transaction
1019
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:26:46 UTC +00:00]]
1020
+  (2.7ms) commit transaction
1021
+ Connecting to database specified by database.yml
1525
1022
  Connecting to database specified by database.yml
1526
1023
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1527
-  (0.0ms) select sqlite_version(*)
1528
-  (122.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) 
1529
-  (65.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1024
+ Migrating to CreatePeople (20120606125104)
1025
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1026
+  (0.2ms) select sqlite_version(*)
1027
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1028
+  (0.0ms) PRAGMA index_list("people")
1029
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1030
+  (0.2ms) select sqlite_version(*)
1031
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1032
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1033
+  (0.1ms) PRAGMA index_list("schema_migrations")
1034
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1035
+  (0.1ms) SELECT version FROM "schema_migrations"
1036
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1037
+ Connecting to database specified by database.yml
1038
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1039
+  (0.2ms) select sqlite_version(*)
1040
+  (7.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1041
+  (5.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1530
1042
   (0.1ms) PRAGMA index_list("schema_migrations")
1531
-  (65.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1043
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1532
1044
   (0.1ms) SELECT version FROM "schema_migrations"
1533
-  (64.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1045
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1534
1046
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1535
- Migrating to CreateCities (20120606125258)
1536
-  (0.1ms) begin transaction
1537
-  (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) 
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) 
1538
1050
   (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1539
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1540
-  (52.6ms) commit transaction
1051
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1052
+  (3.0ms) commit transaction
1541
1053
   (0.1ms) begin transaction
1542
1054
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1543
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:30:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:30:51 UTC +00:00]]
1544
-  (51.4ms) commit transaction
1545
-  (0.1ms) begin transaction
1546
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1547
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:30:51 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:30:51 UTC +00:00]]
1548
-  (48.3ms) commit transaction
1055
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1056
+  (2.9ms) commit transaction
1057
+  (0.2ms) begin transaction
1058
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1059
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:27:51 UTC +00:00]]
1060
+  (2.9ms) commit transaction
1061
+ Connecting to database specified by database.yml
1549
1062
  Connecting to database specified by database.yml
1550
1063
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1551
-  (0.0ms) select sqlite_version(*)
1552
-  (118.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) 
1553
-  (52.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1064
+ Migrating to CreatePeople (20120606125104)
1065
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1066
+  (0.2ms) select sqlite_version(*)
1067
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1068
+  (0.0ms) PRAGMA index_list("people")
1069
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1070
+  (0.2ms) select sqlite_version(*)
1071
+  (26.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1072
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1073
+  (0.1ms) PRAGMA index_list("schema_migrations")
1074
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1075
+  (0.1ms) SELECT version FROM "schema_migrations"
1076
+  (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1077
+ Connecting to database specified by database.yml
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)
1554
1082
   (0.1ms) PRAGMA index_list("schema_migrations")
1555
-  (71.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1083
+  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1556
1084
   (0.1ms) SELECT version FROM "schema_migrations"
1557
-  (50.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1085
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1558
1086
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1559
- Migrating to CreateCities (20120606125258)
1087
+ Migrating to CreateCities (20120606125058)
1560
1088
   (0.1ms) begin transaction
1561
-  (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) 
1562
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1563
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1564
-  (53.3ms) commit transaction
1089
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1090
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1091
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1092
+  (3.0ms) commit transaction
1565
1093
   (0.1ms) begin transaction
1566
1094
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1567
- SQL (2.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:31:01 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:31:01 UTC +00:00]]
1568
-  (43.4ms) commit transaction
1569
-  (0.0ms) begin transaction
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
1570
1098
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1571
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:31:01 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:31:01 UTC +00:00]]
1572
-  (44.9ms) commit transaction
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
1573
1102
  Connecting to database specified by database.yml
1574
1103
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1575
-  (0.1ms) select sqlite_version(*)
1576
-  (106.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) 
1577
-  (47.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1578
-  (0.1ms) PRAGMA index_list("schema_migrations")
1579
-  (67.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1580
-  (0.1ms) SELECT version FROM "schema_migrations"
1581
-  (38.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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')
1582
1117
  Connecting to database specified by database.yml
1583
1118
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1584
-  (0.0ms) select sqlite_version(*)
1585
-  (79.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) 
1586
-  (51.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1587
1122
   (0.1ms) PRAGMA index_list("schema_migrations")
1588
-  (71.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1123
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1589
1124
   (0.1ms) SELECT version FROM "schema_migrations"
1590
-  (66.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1125
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1591
1126
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1592
- Migrating to CreateCities (20120606125258)
1127
+ Migrating to CreateCities (20120606125058)
1593
1128
   (0.1ms) begin transaction
1594
-  (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) 
1595
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1596
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1597
-  (43.5ms) commit transaction
1129
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1130
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1131
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1132
+  (2.9ms) commit transaction
1598
1133
   (0.1ms) begin transaction
1599
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1600
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:31:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:31:19 UTC +00:00]]
1601
-  (42.9ms) commit 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
1602
1137
   (0.1ms) begin transaction
1603
1138
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1604
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:31:19 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:31:19 UTC +00:00]]
1605
-  (68.5ms) commit transaction
1606
- Connecting to database specified by database.yml
1607
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1608
-  (0.0ms) select sqlite_version(*)
1609
-  (141.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) 
1610
-  (54.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1611
-  (0.1ms) PRAGMA index_list("schema_migrations")
1612
-  (77.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1613
-  (0.1ms) SELECT version FROM "schema_migrations"
1614
-  (52.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
1615
1141
  Connecting to database specified by database.yml
1616
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1617
-  (0.0ms) select sqlite_version(*)
1618
-  (115.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) 
1619
-  (46.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1620
-  (0.0ms) PRAGMA index_list("schema_migrations")
1621
-  (76.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1622
-  (0.1ms) SELECT version FROM "schema_migrations"
1623
-  (53.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1624
1142
  Connecting to database specified by database.yml
1625
1143
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1626
-  (0.0ms) select sqlite_version(*)
1627
-  (129.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) 
1628
-  (52.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1629
-  (0.1ms) PRAGMA index_list("schema_migrations")
1630
-  (71.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1631
-  (0.1ms) SELECT version FROM "schema_migrations"
1632
-  (51.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1144
+ Migrating to CreatePeople (20120606125104)
1145
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1146
+  (0.2ms) select sqlite_version(*)
1147
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1148
+  (0.0ms) PRAGMA index_list("people")
1149
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1150
+  (0.2ms) select sqlite_version(*)
1151
+  (25.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1152
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1153
+  (0.0ms) PRAGMA index_list("schema_migrations")
1154
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1155
+  (0.1ms) SELECT version FROM "schema_migrations"
1156
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1633
1157
  Connecting to database specified by database.yml
1634
1158
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1635
-  (0.1ms) select sqlite_version(*)
1636
-  (130.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) 
1637
-  (47.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1638
1162
   (0.1ms) PRAGMA index_list("schema_migrations")
1639
-  (75.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1163
+  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1640
1164
   (0.1ms) SELECT version FROM "schema_migrations"
1641
-  (46.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1165
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1642
1166
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1643
- Migrating to CreateCities (20120606125258)
1167
+ Migrating to CreateCities (20120606125058)
1644
1168
   (0.1ms) begin transaction
1645
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) 
1646
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1647
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1648
-  (59.9ms) commit transaction
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
1649
1173
   (0.1ms) begin transaction
1650
1174
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1651
- SQL (2.2ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:40:34 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:40:34 UTC +00:00]]
1652
-  (54.6ms) commit transaction
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
1653
1177
   (0.1ms) begin transaction
1654
1178
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1655
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:40:34 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:40:34 UTC +00:00]]
1656
-  (60.9ms) commit transaction
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
1657
1181
  Connecting to database specified by database.yml
1658
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1659
-  (0.1ms) select sqlite_version(*)
1660
-  (119.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) 
1661
-  (58.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1662
-  (0.1ms) PRAGMA index_list("schema_migrations")
1663
-  (72.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1664
-  (0.1ms) SELECT version FROM "schema_migrations"
1665
-  (57.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1666
- Connecting to database specified by database.yml
1667
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1668
-  (0.0ms) select sqlite_version(*)
1669
-  (87.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) 
1670
-  (38.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1671
-  (0.1ms) PRAGMA index_list("schema_migrations")
1672
-  (68.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1673
-  (0.1ms) SELECT version FROM "schema_migrations"
1674
-  (45.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1675
1182
  Connecting to database specified by database.yml
1676
1183
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1677
-  (0.0ms) select sqlite_version(*)
1678
-  (101.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) 
1679
-  (58.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1680
-  (0.1ms) PRAGMA index_list("schema_migrations")
1681
-  (72.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1682
-  (0.1ms) SELECT version FROM "schema_migrations"
1683
-  (57.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1184
+ Migrating to CreatePeople (20120606125104)
1185
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1186
+  (0.2ms) select sqlite_version(*)
1187
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1188
+  (0.0ms) PRAGMA index_list("people")
1189
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1190
+  (0.2ms) select sqlite_version(*)
1191
+  (26.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1192
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1193
+  (0.1ms) PRAGMA index_list("schema_migrations")
1194
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1195
+  (0.1ms) SELECT version FROM "schema_migrations"
1196
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1684
1197
  Connecting to database specified by database.yml
1685
1198
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1686
-  (0.0ms) select sqlite_version(*)
1687
-  (206.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) 
1688
-  (54.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1689
1202
   (0.1ms) PRAGMA index_list("schema_migrations")
1690
-  (77.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1203
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1691
1204
   (0.1ms) SELECT version FROM "schema_migrations"
1692
-  (53.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1205
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1693
1206
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1694
- Migrating to CreateCities (20120606125258)
1207
+ Migrating to CreateCities (20120606125058)
1695
1208
   (0.1ms) begin transaction
1696
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) 
1697
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1698
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1699
-  (60.2ms) commit transaction
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
1700
1213
   (0.1ms) begin transaction
1701
1214
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1702
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:44:11 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:44:11 UTC +00:00]]
1703
-  (60.4ms) commit transaction
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
1704
1217
   (0.1ms) begin transaction
1705
1218
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1706
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:44:11 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:44:11 UTC +00:00]]
1707
-  (56.6ms) commit transaction
1219
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:33:02 UTC +00:00]]
1220
+  (2.9ms) commit transaction
1221
+ Connecting to database specified by database.yml
1708
1222
  Connecting to database specified by database.yml
1709
1223
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1710
-  (0.1ms) select sqlite_version(*)
1711
-  (99.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) 
1712
-  (53.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1224
+ Migrating to CreatePeople (20120606125104)
1225
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1226
+  (0.2ms) select sqlite_version(*)
1227
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1228
+  (0.0ms) PRAGMA index_list("people")
1229
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1230
+  (0.2ms) select sqlite_version(*)
1231
+  (23.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1232
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1233
+  (0.1ms) PRAGMA index_list("schema_migrations")
1234
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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" 
1239
+  (0.2ms) select sqlite_version(*)
1240
+  (41.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1241
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1713
1242
   (0.1ms) PRAGMA index_list("schema_migrations")
1714
-  (69.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1243
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1715
1244
   (0.1ms) SELECT version FROM "schema_migrations"
1716
-  (52.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1245
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1717
1246
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1718
- Migrating to CreateCities (20120606125258)
1247
+ Migrating to CreateCities (20120606125058)
1719
1248
   (0.1ms) begin transaction
1720
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) 
1721
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1722
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1723
-  (50.1ms) commit transaction
1724
-  (0.0ms) begin transaction
1725
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1726
- SQL (2.3ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 07:45:30 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 07:45:30 UTC +00:00]]
1727
-  (50.2ms) commit transaction
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
1728
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
1729
1258
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1730
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 07:45:30 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 07:45:30 UTC +00:00]]
1731
-  (47.5ms) commit transaction
1732
- Connecting to database specified by database.yml
1733
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1734
-  (0.0ms) select sqlite_version(*)
1735
-  (135.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) 
1736
-  (56.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1737
-  (0.1ms) PRAGMA index_list("schema_migrations")
1738
-  (57.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1739
-  (0.1ms) SELECT version FROM "schema_migrations"
1740
-  (39.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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
1741
1261
  Connecting to database specified by database.yml
1742
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1743
-  (0.0ms) select sqlite_version(*)
1744
-  (131.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) 
1745
-  (61.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1746
-  (0.1ms) PRAGMA index_list("schema_migrations")
1747
-  (78.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1748
-  (0.1ms) SELECT version FROM "schema_migrations"
1749
-  (59.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1750
- Connecting to database specified by database.yml
1751
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1752
-  (0.0ms) select sqlite_version(*)
1753
-  (123.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) 
1754
-  (45.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1755
-  (0.0ms) PRAGMA index_list("schema_migrations")
1756
-  (69.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1757
-  (0.1ms) SELECT version FROM "schema_migrations"
1758
-  (60.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1759
1262
  Connecting to database specified by database.yml
1760
1263
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1761
-  (0.0ms) select sqlite_version(*)
1762
-  (127.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) 
1763
-  (53.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1764
-  (0.1ms) PRAGMA index_list("schema_migrations")
1765
-  (86.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1766
-  (0.1ms) SELECT version FROM "schema_migrations"
1767
-  (60.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1264
+ Migrating to CreatePeople (20120606125104)
1265
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1266
+  (0.2ms) select sqlite_version(*)
1267
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1268
+  (0.0ms) PRAGMA index_list("people")
1269
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1270
+  (0.2ms) select sqlite_version(*)
1271
+  (24.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1272
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1273
+  (0.1ms) PRAGMA index_list("schema_migrations")
1274
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
+  (0.1ms) SELECT version FROM "schema_migrations"
1276
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1768
1277
  Connecting to database specified by database.yml
1769
1278
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1770
-  (0.1ms) select sqlite_version(*)
1771
-  (130.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) 
1772
-  (63.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1773
1282
   (0.1ms) PRAGMA index_list("schema_migrations")
1774
-  (76.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1283
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1775
1284
   (0.1ms) SELECT version FROM "schema_migrations"
1776
-  (62.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1285
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1777
1286
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1778
- Migrating to CreateCities (20120606125258)
1779
-  (0.1ms) begin transaction
1287
+ Migrating to CreateCities (20120606125058)
1288
+  (0.0ms) begin transaction
1780
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) 
1781
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1782
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1783
-  (60.0ms) commit transaction
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
1784
1293
   (0.1ms) begin transaction
1785
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1786
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:02:53 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:02:53 UTC +00:00]]
1787
-  (61.6ms) commit 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
1788
1297
   (0.1ms) begin transaction
1789
1298
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1790
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:02:54 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:02:54 UTC +00:00]]
1791
-  (60.3ms) commit transaction
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
1792
1301
  Connecting to database specified by database.yml
1793
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1794
-  (0.1ms) select sqlite_version(*)
1795
-  (118.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) 
1796
-  (53.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1797
-  (0.1ms) PRAGMA index_list("schema_migrations")
1798
-  (69.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1799
-  (0.1ms) SELECT version FROM "schema_migrations"
1800
-  (44.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1801
1302
  Connecting to database specified by database.yml
1802
1303
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1803
-  (0.1ms) select sqlite_version(*)
1804
-  (129.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) 
1805
-  (65.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1806
-  (0.1ms) PRAGMA index_list("schema_migrations")
1807
-  (65.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1808
-  (0.1ms) SELECT version FROM "schema_migrations"
1809
-  (64.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1304
+ Migrating to CreatePeople (20120606125104)
1305
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1306
+  (0.2ms) select sqlite_version(*)
1307
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1308
+  (0.0ms) PRAGMA index_list("people")
1309
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1310
+  (0.2ms) select sqlite_version(*)
1311
+  (27.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1312
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1313
+  (0.1ms) PRAGMA index_list("schema_migrations")
1314
+  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1315
+  (0.1ms) SELECT version FROM "schema_migrations"
1316
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1810
1317
  Connecting to database specified by database.yml
1811
1318
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1812
-  (0.0ms) select sqlite_version(*)
1813
-  (100.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) 
1814
-  (61.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1319
+  (0.2ms) select sqlite_version(*)
1320
+  (38.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1321
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1815
1322
   (0.1ms) PRAGMA index_list("schema_migrations")
1816
-  (78.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1323
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1817
1324
   (0.1ms) SELECT version FROM "schema_migrations"
1818
-  (68.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1819
- Connecting to database specified by database.yml
1325
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1820
1326
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1821
-  (0.0ms) select sqlite_version(*)
1822
-  (134.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) 
1823
-  (66.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1824
-  (0.1ms) PRAGMA index_list("schema_migrations")
1825
-  (72.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1826
-  (0.1ms) SELECT version FROM "schema_migrations"
1827
-  (65.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1327
+ Migrating to CreateCities (20120606125058)
1328
+  (0.1ms) begin transaction
1329
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1330
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1331
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1332
+  (3.1ms) commit transaction
1333
+  (0.1ms) begin transaction
1334
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1335
+ SQL (5.9ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1336
+  (2.8ms) commit transaction
1337
+  (0.1ms) begin transaction
1338
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1339
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:46:18 UTC +00:00]]
1340
+  (2.8ms) commit transaction
1341
+ Connecting to database specified by database.yml
1828
1342
  Connecting to database specified by database.yml
1829
1343
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1830
-  (0.0ms) select sqlite_version(*)
1831
-  (92.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) 
1832
-  (63.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1833
-  (0.1ms) PRAGMA index_list("schema_migrations")
1834
-  (77.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1835
-  (0.1ms) SELECT version FROM "schema_migrations"
1836
-  (61.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1344
+ Migrating to CreatePeople (20120606125104)
1345
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1346
+  (0.2ms) select sqlite_version(*)
1347
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1348
+  (0.0ms) PRAGMA index_list("people")
1349
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1350
+  (0.2ms) select sqlite_version(*)
1351
+  (29.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1352
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1353
+  (0.1ms) PRAGMA index_list("schema_migrations")
1354
+  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1355
+  (0.1ms) SELECT version FROM "schema_migrations"
1356
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1837
1357
  Connecting to database specified by database.yml
1838
1358
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1839
-  (0.0ms) select sqlite_version(*)
1840
-  (121.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) 
1841
-  (43.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
1842
1362
   (0.1ms) PRAGMA index_list("schema_migrations")
1843
-  (71.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1363
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1844
1364
   (0.1ms) SELECT version FROM "schema_migrations"
1845
-  (50.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1846
- Connecting to database specified by database.yml
1847
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1848
-  (0.0ms) select sqlite_version(*)
1849
-  (126.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) 
1850
-  (62.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1851
-  (0.0ms) PRAGMA index_list("schema_migrations")
1852
-  (77.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1853
-  (0.2ms) SELECT version FROM "schema_migrations"
1854
-  (61.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1365
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1855
1366
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1856
- Migrating to CreateCities (20120606125258)
1367
+ Migrating to CreateCities (20120606125058)
1857
1368
   (0.1ms) begin transaction
1858
-  (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) 
1859
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1860
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1861
-  (61.3ms) commit transaction
1369
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1370
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1371
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1372
+  (3.2ms) commit transaction
1862
1373
   (0.1ms) begin transaction
1863
1374
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1864
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:24:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:24:42 UTC +00:00]]
1865
-  (59.4ms) commit transaction
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
1866
1377
   (0.1ms) begin transaction
1867
- City Load (0.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1868
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:24:42 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:24:42 UTC +00:00]]
1869
-  (63.6ms) commit transaction
1378
+ City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1379
+ SQL (0.5ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00], ["name", "Paris"], ["updated_at", Sun, 25 Nov 2012 13:47:28 UTC +00:00]]
1380
+  (2.8ms) commit transaction
1381
+ Connecting to database specified by database.yml
1870
1382
  Connecting to database specified by database.yml
1871
1383
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1872
-  (0.0ms) select sqlite_version(*)
1873
-  (101.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) 
1874
-  (64.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1384
+ Migrating to CreatePeople (20120606125104)
1385
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1386
+  (0.2ms) select sqlite_version(*)
1387
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1388
+  (0.0ms) PRAGMA index_list("people")
1389
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1390
+  (0.2ms) select sqlite_version(*)
1391
+  (31.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1392
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1393
+  (0.1ms) PRAGMA index_list("schema_migrations")
1394
+  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1395
+  (0.1ms) SELECT version FROM "schema_migrations"
1396
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1397
+ Connecting to database specified by database.yml
1398
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1399
+  (0.2ms) select sqlite_version(*)
1400
+  (41.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1401
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1875
1402
   (0.1ms) PRAGMA index_list("schema_migrations")
1876
-  (75.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1403
+  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1877
1404
   (0.1ms) SELECT version FROM "schema_migrations"
1878
-  (63.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1405
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1879
1406
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1880
- Migrating to CreateCities (20120606125258)
1407
+ Migrating to CreateCities (20120606125058)
1881
1408
   (0.1ms) begin transaction
1882
-  (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) 
1883
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1884
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1885
-  (60.1ms) commit transaction
1886
-  (0.0ms) begin transaction
1409
+  (0.4ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1410
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1411
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1412
+  (3.4ms) commit transaction
1413
+  (0.1ms) begin transaction
1887
1414
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1888
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:25:16 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:25:16 UTC +00:00]]
1889
-  (45.9ms) commit transaction
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
1890
1417
   (0.1ms) begin transaction
1891
1418
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1892
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:25:16 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:25:16 UTC +00:00]]
1893
-  (46.4ms) commit transaction
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
1894
1421
  Connecting to database specified by database.yml
1895
1422
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1896
-  (0.0ms) select sqlite_version(*)
1897
-  (123.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) 
1898
-  (44.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1423
+  (0.2ms) select sqlite_version(*)
1424
+  (39.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1425
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1899
1426
   (0.1ms) PRAGMA index_list("schema_migrations")
1900
-  (64.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1427
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1901
1428
   (0.1ms) SELECT version FROM "schema_migrations"
1902
-  (57.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
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)
1556
+ Connecting to database specified by database.yml
1903
1557
  Connecting to database specified by database.yml
1904
1558
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1905
-  (0.0ms) select sqlite_version(*)
1906
-  (139.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) 
1907
-  (67.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1559
+ Migrating to CreatePeople (20120606125104)
1560
+  (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")
1564
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1565
+  (0.2ms) select sqlite_version(*)
1566
+  (25.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1567
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1568
+  (0.1ms) PRAGMA index_list("schema_migrations")
1569
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1570
+  (0.1ms) SELECT version FROM "schema_migrations"
1571
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1572
+ Connecting to database specified by database.yml
1573
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1574
+  (0.2ms) select sqlite_version(*)
1575
+  (45.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1576
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1908
1577
   (0.1ms) PRAGMA index_list("schema_migrations")
1909
-  (72.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1578
+  (4.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1910
1579
   (0.1ms) SELECT version FROM "schema_migrations"
1911
-  (74.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1580
+  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1912
1581
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1913
- Migrating to CreateCities (20120606125258)
1582
+ Migrating to CreateCities (20120606125058)
1914
1583
   (0.1ms) begin transaction
1915
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) 
1916
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1917
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1918
-  (51.8ms) commit transaction
1919
-  (0.0ms) begin transaction
1920
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1921
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:28:42 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:28:42 UTC +00:00]]
1922
-  (53.8ms) commit transaction
1923
-  (0.0ms) begin transaction
1585
+  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
1586
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125058')
1587
+  (3.0ms) commit transaction
1588
+  (0.1ms) begin transaction
1589
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1590
+ SQL (6.0ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:12 UTC +00:00]]
1591
+  (2.8ms) commit transaction
1592
+  (0.1ms) begin transaction
1924
1593
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1925
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:28:42 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:28:42 UTC +00:00]]
1926
-  (46.5ms) commit transaction
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
1927
1596
  Connecting to database specified by database.yml
1928
1597
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1929
-  (0.0ms) select sqlite_version(*)
1930
-  (132.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) 
1931
-  (59.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1598
+  (0.2ms) select sqlite_version(*)
1599
+  (41.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1600
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1932
1601
   (0.1ms) PRAGMA index_list("schema_migrations")
1933
-  (72.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1602
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1934
1603
   (0.1ms) SELECT version FROM "schema_migrations"
1935
-  (66.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1936
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1937
- Migrating to CreateCities (20120606125258)
1938
-  (0.1ms) begin transaction
1939
-  (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) 
1940
-  (0.1ms) ALTER TABLE "people" ADD "city_id" integer
1941
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1942
-  (53.9ms) commit transaction
1604
+  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1943
1605
   (0.1ms) begin transaction
1944
1606
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1945
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:29:38 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:29:38 UTC +00:00]]
1946
-  (52.5ms) commit transaction
1947
-  (0.1ms) begin transaction
1948
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1949
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:29:38 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:29:38 UTC +00:00]]
1950
-  (52.3ms) commit transaction
1607
+ SQL (16.4ms) INSERT INTO "people" ("birthday", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["birthday", nil], ["created_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00], ["name", "Pascal"], ["updated_at", Sun, 25 Nov 2012 14:09:19 UTC +00:00]]
1608
+  (2.9ms) commit transaction
1609
+ Connecting to database specified by database.yml
1951
1610
  Connecting to database specified by database.yml
1952
1611
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1953
-  (0.1ms) select sqlite_version(*)
1954
-  (129.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) 
1955
-  (52.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1612
+ Migrating to CreatePeople (20120606125104)
1613
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1614
+  (0.2ms) select sqlite_version(*)
1615
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1616
+  (0.0ms) PRAGMA index_list("people")
1617
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1618
+  (0.2ms) select sqlite_version(*)
1619
+  (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1620
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1621
+  (0.1ms) PRAGMA index_list("schema_migrations")
1622
+  (4.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1623
+  (0.1ms) SELECT version FROM "schema_migrations"
1624
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1625
+ 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)
1956
1630
   (0.1ms) PRAGMA index_list("schema_migrations")
1957
-  (78.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1631
+  (5.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1958
1632
   (0.1ms) SELECT version FROM "schema_migrations"
1959
-  (68.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1633
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1960
1634
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1961
- Migrating to CreateCities (20120606125258)
1635
+ Migrating to CreateCities (20120606125058)
1962
1636
   (0.1ms) begin transaction
1963
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) 
1964
-  (0.3ms) ALTER TABLE "people" ADD "city_id" integer
1965
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
1966
-  (60.2ms) commit transaction
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
1967
1641
   (0.1ms) begin transaction
1968
- Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
1969
- SQL (2.1ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:29:55 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:29:55 UTC +00:00]]
1970
-  (50.4ms) commit 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
1971
1645
   (0.1ms) begin transaction
1972
1646
  City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
1973
- SQL (0.2ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:29:55 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:29:55 UTC +00:00]]
1974
-  (54.6ms) commit transaction
1975
- Connecting to database specified by database.yml
1976
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1977
-  (0.0ms) select sqlite_version(*)
1978
-  (97.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) 
1979
-  (49.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1980
-  (0.1ms) PRAGMA index_list("schema_migrations")
1981
-  (67.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1982
-  (0.1ms) SELECT version FROM "schema_migrations"
1983
-  (54.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1984
- Connecting to database specified by database.yml
1985
- Connecting to database specified by database.yml
1986
- Connecting to database specified by database.yml
1987
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1988
-  (0.0ms) select sqlite_version(*)
1989
-  (91.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) 
1990
-  (44.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1991
- Interrupt: : CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1992
- Connecting to database specified by database.yml
1993
- Connecting to database specified by database.yml
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
1994
1649
  Connecting to database specified by database.yml
1995
1650
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1996
-  (0.1ms) select sqlite_version(*)
1997
-  (116.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) 
1998
-  (46.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1651
+  (0.2ms) select sqlite_version(*)
1652
+  (44.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "birthday" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1653
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1999
1654
   (0.1ms) PRAGMA index_list("schema_migrations")
2000
-  (101.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1655
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2001
1656
   (0.1ms) SELECT version FROM "schema_migrations"
2002
-  (70.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
2003
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2004
- Migrating to CreateCities (20120606125258)
2005
-  (0.1ms) begin transaction
2006
-  (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) 
2007
-  (0.2ms) ALTER TABLE "people" ADD "city_id" integer
2008
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120606125258')
2009
-  (86.6ms) commit transaction
2010
-  (0.0ms) begin transaction
1657
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120606125104')
1658
+  (0.1ms) begin transaction
2011
1659
  Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."name" = 'Pascal' LIMIT 1
2012
- SQL (2.7ms) INSERT INTO "people" ("birthday", "city_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["birthday", nil], ["city_id", nil], ["created_at", Thu, 07 Jun 2012 08:51:08 UTC +00:00], ["name", "Pascal"], ["updated_at", Thu, 07 Jun 2012 08:51:08 UTC +00:00]]
2013
-  (48.2ms) commit transaction
2014
-  (0.0ms) begin transaction
2015
- City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."name" = 'Paris' LIMIT 1
2016
- SQL (0.3ms) INSERT INTO "cities" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 07 Jun 2012 08:51:08 UTC +00:00], ["name", "Paris"], ["updated_at", Thu, 07 Jun 2012 08:51:08 UTC +00:00]]
2017
-  (56.6ms) commit transaction
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