activable 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +12 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +102 -0
  6. data/Rakefile +1 -0
  7. data/activable.gemspec +22 -0
  8. data/lib/activable/active_record.rb +3 -0
  9. data/lib/activable/version.rb +3 -0
  10. data/lib/activable.rb +83 -0
  11. data/lib/generators/activable/activable_generator.rb +42 -0
  12. data/lib/generators/activable/install_generator.rb +13 -0
  13. data/lib/generators/templates/activable.rb +14 -0
  14. data/lib/generators/templates/migration.rb +8 -0
  15. data/spec/activable_spec.rb +12 -0
  16. data/spec/factories/categories.rb +5 -0
  17. data/spec/factories/users.rb +9 -0
  18. data/spec/generators/activable_generator_spec.rb +57 -0
  19. data/spec/generators/install_generator_spec.rb +16 -0
  20. data/spec/has_no_responsible_spec.rb +41 -0
  21. data/spec/has_responsible_spec.rb +54 -0
  22. data/spec/spec_helper.rb +21 -0
  23. data/spec/test_app/.gitignore +2 -0
  24. data/spec/test_app/Rakefile +7 -0
  25. data/spec/test_app/app/controllers/application_controller.rb +3 -0
  26. data/spec/test_app/app/helpers/application_helper.rb +2 -0
  27. data/spec/test_app/app/models/.gitkeep +0 -0
  28. data/spec/test_app/app/models/category.rb +4 -0
  29. data/spec/test_app/app/models/product.rb +3 -0
  30. data/spec/test_app/app/models/user.rb +4 -0
  31. data/spec/test_app/app/views/layouts/application.html.erb +14 -0
  32. data/spec/test_app/config/application.rb +62 -0
  33. data/spec/test_app/config/boot.rb +6 -0
  34. data/spec/test_app/config/database.yml +19 -0
  35. data/spec/test_app/config/environment.rb +5 -0
  36. data/spec/test_app/config/environments/development.rb +37 -0
  37. data/spec/test_app/config/environments/production.rb +67 -0
  38. data/spec/test_app/config/environments/test.rb +37 -0
  39. data/spec/test_app/config/initializers/activable.rb +14 -0
  40. data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/test_app/config/initializers/inflections.rb +15 -0
  42. data/spec/test_app/config/initializers/mime_types.rb +5 -0
  43. data/spec/test_app/config/initializers/secret_token.rb +7 -0
  44. data/spec/test_app/config/initializers/session_store.rb +8 -0
  45. data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/test_app/config/routes.rb +58 -0
  47. data/spec/test_app/config.ru +4 -0
  48. data/spec/test_app/db/migrate/20130402122537_create_users.rb +9 -0
  49. data/spec/test_app/db/migrate/20130403123944_create_products.rb +9 -0
  50. data/spec/test_app/db/migrate/20130403135220_add_activable_to_users.rb +9 -0
  51. data/spec/test_app/db/migrate/20130403185451_create_categories.rb +9 -0
  52. data/spec/test_app/db/migrate/20130403190146_add_activable_to_categories.rb +8 -0
  53. data/spec/test_app/db/schema.rb +43 -0
  54. data/spec/test_app/db/seeds.rb +7 -0
  55. data/spec/test_app/lib/assets/.gitkeep +0 -0
  56. data/spec/test_app/lib/tasks/.gitkeep +0 -0
  57. data/spec/test_app/log/.gitkeep +0 -0
  58. data/spec/test_app/log/development.log +18 -0
  59. data/spec/test_app/log/test.log +1576 -0
  60. data/spec/test_app/public/404.html +26 -0
  61. data/spec/test_app/public/422.html +26 -0
  62. data/spec/test_app/public/500.html +25 -0
  63. data/spec/test_app/public/favicon.ico +0 -0
  64. data/spec/test_app/public/index.html +241 -0
  65. data/spec/test_app/public/robots.txt +5 -0
  66. data/spec/test_app/script/rails +6 -0
  67. metadata +175 -0
@@ -0,0 +1,1576 @@
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
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Connecting to database specified by database.yml
7
+ Connecting to database specified by database.yml
8
+ Connecting to database specified by database.yml
9
+ Connecting to database specified by database.yml
10
+ Connecting to database specified by database.yml
11
+ Connecting to database specified by database.yml
12
+ Connecting to database specified by database.yml
13
+ Connecting to database specified by database.yml
14
+ Connecting to database specified by database.yml
15
+ Connecting to database specified by database.yml
16
+ Connecting to database specified by database.yml
17
+ Connecting to database specified by database.yml
18
+ Connecting to database specified by database.yml
19
+ Connecting to database specified by database.yml
20
+ Connecting to database specified by database.yml
21
+  (0.1ms) select sqlite_version(*)
22
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
23
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24
+  (19.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
+ Migrating to CreateUsers (20130402122537)
26
+  (0.0ms) begin transaction
27
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
28
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130402122537')
29
+  (0.0ms) commit transaction
30
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
31
+ Connecting to database specified by database.yml
32
+ Connecting to database specified by database.yml
33
+ Connecting to database specified by database.yml
34
+ Connecting to database specified by database.yml
35
+  (103.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
36
+  (153.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
37
+  (1.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
38
+ Migrating to CreateUsers (20130402122537)
39
+  (64.1ms) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `email` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
40
+  (24.4ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20130402122537')
41
+  (0.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
42
+ Connecting to database specified by database.yml
43
+ Connecting to database specified by database.yml
44
+  (1.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
45
+ Migrating to CreateUsers (20130402122537)
46
+  (0.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
47
+ Connecting to database specified by database.yml
48
+ Connecting to database specified by database.yml
49
+  (86.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
50
+  (128.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
51
+  (1.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
52
+ Migrating to CreateUsers (20130402122537)
53
+  (65.5ms) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `email` varchar(255), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
54
+  (23.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20130402122537')
55
+  (0.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
56
+ Connecting to database specified by database.yml
57
+ Connecting to database specified by database.yml
58
+  (0.1ms) select sqlite_version(*)
59
+  (123.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
60
+  (87.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
62
+ Migrating to CreateUsers (20130402122537)
63
+  (0.0ms) begin transaction
64
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
65
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130402122537')
66
+  (89.9ms) commit transaction
67
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
68
+ Connecting to database specified by database.yml
69
+ Connecting to database specified by database.yml
70
+  (0.1ms) select sqlite_version(*)
71
+  (122.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
72
+  (87.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
73
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
74
+ Migrating to CreateUsers (20130402122537)
75
+  (0.0ms) begin transaction
76
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
77
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130402122537')
78
+  (90.0ms) commit transaction
79
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
80
+ Connecting to database specified by database.yml
81
+ Connecting to database specified by database.yml
82
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
83
+ Migrating to CreateUsers (20130402122537)
84
+  (0.0ms) select sqlite_version(*)
85
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86
+ Connecting to database specified by database.yml
87
+ Connecting to database specified by database.yml
88
+ Connecting to database specified by database.yml
89
+ Connecting to database specified by database.yml
90
+ Connecting to database specified by database.yml
91
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
92
+ Migrating to CreateUsers (20130402122537)
93
+  (0.0ms) select sqlite_version(*)
94
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
95
+ Connecting to database specified by database.yml
96
+ Connecting to database specified by database.yml
97
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
98
+ Migrating to CreateUsers (20130402122537)
99
+  (0.0ms) select sqlite_version(*)
100
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
101
+ Connecting to database specified by database.yml
102
+ Connecting to database specified by database.yml
103
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
104
+ Migrating to CreateUsers (20130402122537)
105
+  (0.0ms) select sqlite_version(*)
106
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
107
+ Connecting to database specified by database.yml
108
+ Connecting to database specified by database.yml
109
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
110
+ Migrating to CreateUsers (20130402122537)
111
+  (0.0ms) select sqlite_version(*)
112
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
113
+ Connecting to database specified by database.yml
114
+ Connecting to database specified by database.yml
115
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
116
+ Migrating to CreateUsers (20130402122537)
117
+  (0.0ms) select sqlite_version(*)
118
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
119
+ Connecting to database specified by database.yml
120
+ Connecting to database specified by database.yml
121
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
122
+ Migrating to CreateUsers (20130402122537)
123
+  (0.0ms) select sqlite_version(*)
124
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
125
+ Connecting to database specified by database.yml
126
+ Connecting to database specified by database.yml
127
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
128
+ Migrating to CreateUsers (20130402122537)
129
+  (0.0ms) select sqlite_version(*)
130
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
131
+ Connecting to database specified by database.yml
132
+ Connecting to database specified by database.yml
133
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
134
+ Migrating to CreateUsers (20130402122537)
135
+  (0.0ms) select sqlite_version(*)
136
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
137
+ Connecting to database specified by database.yml
138
+ Connecting to database specified by database.yml
139
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
140
+ Migrating to CreateUsers (20130402122537)
141
+  (0.0ms) select sqlite_version(*)
142
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
143
+ Connecting to database specified by database.yml
144
+ Connecting to database specified by database.yml
145
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
146
+ Migrating to CreateUsers (20130402122537)
147
+  (0.0ms) select sqlite_version(*)
148
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
149
+ Connecting to database specified by database.yml
150
+ Connecting to database specified by database.yml
151
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
152
+ Migrating to CreateUsers (20130402122537)
153
+  (0.0ms) select sqlite_version(*)
154
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
155
+ Connecting to database specified by database.yml
156
+ Connecting to database specified by database.yml
157
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
158
+ Migrating to CreateUsers (20130402122537)
159
+  (0.0ms) select sqlite_version(*)
160
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
161
+ Connecting to database specified by database.yml
162
+ Connecting to database specified by database.yml
163
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
164
+ Migrating to CreateUsers (20130402122537)
165
+  (0.0ms) select sqlite_version(*)
166
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
167
+ Connecting to database specified by database.yml
168
+ Connecting to database specified by database.yml
169
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
170
+ Migrating to CreateUsers (20130402122537)
171
+  (0.0ms) select sqlite_version(*)
172
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
173
+ Connecting to database specified by database.yml
174
+ Connecting to database specified by database.yml
175
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
176
+ Migrating to CreateUsers (20130402122537)
177
+  (0.0ms) select sqlite_version(*)
178
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
179
+ Connecting to database specified by database.yml
180
+ Connecting to database specified by database.yml
181
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
182
+ Migrating to CreateUsers (20130402122537)
183
+  (0.0ms) select sqlite_version(*)
184
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
185
+ Connecting to database specified by database.yml
186
+ Connecting to database specified by database.yml
187
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
188
+ Migrating to CreateUsers (20130402122537)
189
+  (0.0ms) select sqlite_version(*)
190
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
191
+ Connecting to database specified by database.yml
192
+ Connecting to database specified by database.yml
193
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
194
+ Migrating to CreateUsers (20130402122537)
195
+  (0.0ms) select sqlite_version(*)
196
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
+ Connecting to database specified by database.yml
198
+ Connecting to database specified by database.yml
199
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
200
+ Migrating to CreateUsers (20130402122537)
201
+  (0.0ms) select sqlite_version(*)
202
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
203
+ Connecting to database specified by database.yml
204
+ Connecting to database specified by database.yml
205
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
206
+ Migrating to CreateUsers (20130402122537)
207
+  (0.0ms) select sqlite_version(*)
208
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
209
+ Connecting to database specified by database.yml
210
+ Connecting to database specified by database.yml
211
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
212
+ Migrating to CreateUsers (20130402122537)
213
+  (0.0ms) select sqlite_version(*)
214
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
215
+ Connecting to database specified by database.yml
216
+ Connecting to database specified by database.yml
217
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
218
+ Migrating to CreateUsers (20130402122537)
219
+  (0.0ms) select sqlite_version(*)
220
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
221
+ Connecting to database specified by database.yml
222
+ Connecting to database specified by database.yml
223
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
224
+ Migrating to CreateUsers (20130402122537)
225
+  (0.0ms) select sqlite_version(*)
226
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
227
+ Connecting to database specified by database.yml
228
+ Connecting to database specified by database.yml
229
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
230
+ Migrating to CreateUsers (20130402122537)
231
+  (0.0ms) select sqlite_version(*)
232
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
233
+ Connecting to database specified by database.yml
234
+ Connecting to database specified by database.yml
235
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
236
+ Migrating to CreateUsers (20130402122537)
237
+  (0.0ms) select sqlite_version(*)
238
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
239
+ Connecting to database specified by database.yml
240
+ Connecting to database specified by database.yml
241
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
242
+ Migrating to CreateUsers (20130402122537)
243
+  (0.0ms) select sqlite_version(*)
244
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
245
+ Connecting to database specified by database.yml
246
+ Connecting to database specified by database.yml
247
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
248
+ Migrating to CreateUsers (20130402122537)
249
+  (0.0ms) select sqlite_version(*)
250
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
251
+ Connecting to database specified by database.yml
252
+ Connecting to database specified by database.yml
253
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
254
+ Migrating to CreateUsers (20130402122537)
255
+  (0.0ms) select sqlite_version(*)
256
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
257
+ Connecting to database specified by database.yml
258
+ Connecting to database specified by database.yml
259
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
260
+ Migrating to CreateUsers (20130402122537)
261
+ Migrating to AddActivableToProducts (20130403123003)
262
+  (0.0ms) select sqlite_version(*)
263
+  (0.0ms) begin transaction
264
+  (0.1ms) ALTER TABLE "products" ADD "active" boolean DEFAULT 't'
265
+ SQLite3::SQLException: no such table: products: ALTER TABLE "products" ADD "active" boolean DEFAULT 't'
266
+  (0.0ms) rollback transaction
267
+ Connecting to database specified by database.yml
268
+ Connecting to database specified by database.yml
269
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
270
+ Migrating to CreateUsers (20130402122537)
271
+ Migrating to AddActivableToProducts (20130403123003)
272
+  (0.0ms) select sqlite_version(*)
273
+  (0.0ms) begin transaction
274
+  (0.1ms) ALTER TABLE "products" ADD "active" boolean DEFAULT 't'
275
+ SQLite3::SQLException: no such table: products: ALTER TABLE "products" ADD "active" boolean DEFAULT 't'
276
+  (0.0ms) rollback transaction
277
+ Connecting to database specified by database.yml
278
+ Connecting to database specified by database.yml
279
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
280
+ Migrating to CreateUsers (20130402122537)
281
+ Migrating to CreateProducts (20130403123944)
282
+  (0.0ms) select sqlite_version(*)
283
+  (0.0ms) begin transaction
284
+  (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
285
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403123944')
286
+  (100.3ms) commit transaction
287
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
288
+ Connecting to database specified by database.yml
289
+ Connecting to database specified by database.yml
290
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
291
+ Migrating to CreateUsers (20130402122537)
292
+ Migrating to CreateProducts (20130403123944)
293
+  (0.0ms) select sqlite_version(*)
294
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
295
+ Connecting to database specified by database.yml
296
+ Connecting to database specified by database.yml
297
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
298
+ Migrating to CreateUsers (20130402122537)
299
+ Migrating to CreateProducts (20130403123944)
300
+  (0.0ms) select sqlite_version(*)
301
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
302
+ Connecting to database specified by database.yml
303
+ Connecting to database specified by database.yml
304
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
305
+ Migrating to CreateUsers (20130402122537)
306
+ Migrating to CreateProducts (20130403123944)
307
+  (0.0ms) select sqlite_version(*)
308
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
309
+ Connecting to database specified by database.yml
310
+ Connecting to database specified by database.yml
311
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
312
+ Migrating to CreateUsers (20130402122537)
313
+ Migrating to CreateProducts (20130403123944)
314
+  (0.0ms) select sqlite_version(*)
315
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
316
+ Connecting to database specified by database.yml
317
+ Connecting to database specified by database.yml
318
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
319
+ Migrating to CreateUsers (20130402122537)
320
+ Migrating to CreateProducts (20130403123944)
321
+  (0.0ms) select sqlite_version(*)
322
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
323
+ Connecting to database specified by database.yml
324
+ Connecting to database specified by database.yml
325
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
326
+ Migrating to CreateUsers (20130402122537)
327
+ Migrating to CreateProducts (20130403123944)
328
+  (0.0ms) select sqlite_version(*)
329
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
330
+ Connecting to database specified by database.yml
331
+ Connecting to database specified by database.yml
332
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
333
+ Migrating to CreateUsers (20130402122537)
334
+ Migrating to CreateProducts (20130403123944)
335
+  (0.0ms) select sqlite_version(*)
336
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
337
+ Connecting to database specified by database.yml
338
+ Connecting to database specified by database.yml
339
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
340
+ Migrating to CreateUsers (20130402122537)
341
+ Migrating to CreateProducts (20130403123944)
342
+  (0.0ms) select sqlite_version(*)
343
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
344
+ Connecting to database specified by database.yml
345
+ Connecting to database specified by database.yml
346
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
347
+ Migrating to CreateUsers (20130402122537)
348
+ Migrating to CreateProducts (20130403123944)
349
+  (0.0ms) select sqlite_version(*)
350
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
351
+ Connecting to database specified by database.yml
352
+ Connecting to database specified by database.yml
353
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
354
+ Migrating to CreateUsers (20130402122537)
355
+ Migrating to CreateProducts (20130403123944)
356
+  (0.0ms) select sqlite_version(*)
357
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
358
+ Connecting to database specified by database.yml
359
+ Connecting to database specified by database.yml
360
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
361
+ Migrating to CreateUsers (20130402122537)
362
+ Migrating to CreateProducts (20130403123944)
363
+  (0.0ms) select sqlite_version(*)
364
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
365
+ Connecting to database specified by database.yml
366
+ Connecting to database specified by database.yml
367
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
368
+ Migrating to CreateUsers (20130402122537)
369
+ Migrating to CreateProducts (20130403123944)
370
+  (0.0ms) select sqlite_version(*)
371
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
372
+ Connecting to database specified by database.yml
373
+ Connecting to database specified by database.yml
374
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
375
+ Migrating to CreateUsers (20130402122537)
376
+ Migrating to CreateProducts (20130403123944)
377
+  (0.0ms) select sqlite_version(*)
378
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
379
+ Connecting to database specified by database.yml
380
+ Connecting to database specified by database.yml
381
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
382
+ Migrating to CreateUsers (20130402122537)
383
+ Migrating to CreateProducts (20130403123944)
384
+  (0.0ms) select sqlite_version(*)
385
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
386
+ Connecting to database specified by database.yml
387
+ Connecting to database specified by database.yml
388
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
389
+ Migrating to CreateUsers (20130402122537)
390
+ Migrating to CreateProducts (20130403123944)
391
+  (0.0ms) select sqlite_version(*)
392
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
393
+ Connecting to database specified by database.yml
394
+ Connecting to database specified by database.yml
395
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
396
+ Migrating to CreateUsers (20130402122537)
397
+ Migrating to CreateProducts (20130403123944)
398
+  (0.0ms) select sqlite_version(*)
399
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
400
+ Connecting to database specified by database.yml
401
+ Connecting to database specified by database.yml
402
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
403
+ Migrating to CreateUsers (20130402122537)
404
+ Migrating to CreateProducts (20130403123944)
405
+  (0.0ms) select sqlite_version(*)
406
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
407
+ Connecting to database specified by database.yml
408
+ Connecting to database specified by database.yml
409
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
410
+ Migrating to CreateUsers (20130402122537)
411
+ Migrating to CreateProducts (20130403123944)
412
+  (0.0ms) select sqlite_version(*)
413
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
414
+ Connecting to database specified by database.yml
415
+ Connecting to database specified by database.yml
416
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
417
+ Migrating to CreateUsers (20130402122537)
418
+ Migrating to CreateProducts (20130403123944)
419
+  (0.0ms) select sqlite_version(*)
420
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
421
+ Connecting to database specified by database.yml
422
+ Connecting to database specified by database.yml
423
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
424
+ Migrating to CreateUsers (20130402122537)
425
+ Migrating to CreateProducts (20130403123944)
426
+  (0.0ms) select sqlite_version(*)
427
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
428
+ Connecting to database specified by database.yml
429
+ Connecting to database specified by database.yml
430
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
431
+ Migrating to CreateUsers (20130402122537)
432
+ Migrating to CreateProducts (20130403123944)
433
+  (0.0ms) select sqlite_version(*)
434
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
435
+ Connecting to database specified by database.yml
436
+ Connecting to database specified by database.yml
437
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
438
+ Migrating to CreateUsers (20130402122537)
439
+ Migrating to CreateProducts (20130403123944)
440
+  (0.0ms) select sqlite_version(*)
441
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
442
+ Connecting to database specified by database.yml
443
+ Connecting to database specified by database.yml
444
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
445
+ Migrating to CreateUsers (20130402122537)
446
+ Migrating to CreateProducts (20130403123944)
447
+  (0.0ms) select sqlite_version(*)
448
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
449
+ Connecting to database specified by database.yml
450
+ Connecting to database specified by database.yml
451
+ Connecting to database specified by database.yml
452
+ Connecting to database specified by database.yml
453
+ Connecting to database specified by database.yml
454
+ Connecting to database specified by database.yml
455
+ Connecting to database specified by database.yml
456
+ Connecting to database specified by database.yml
457
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
458
+ Migrating to CreateUsers (20130402122537)
459
+ Migrating to CreateProducts (20130403123944)
460
+  (0.0ms) select sqlite_version(*)
461
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
462
+ Connecting to database specified by database.yml
463
+ Connecting to database specified by database.yml
464
+ Connecting to database specified by database.yml
465
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
466
+ Migrating to CreateUsers (20130402122537)
467
+ Migrating to CreateProducts (20130403123944)
468
+ Migrating to AddActivableToUsers (20130403135220)
469
+  (0.0ms) select sqlite_version(*)
470
+  (0.0ms) begin transaction
471
+  (0.2ms) ALTER TABLE "users" ADD "active" boolean DEFAULT 't'
472
+  (0.1ms) ALTER TABLE "users" ADD "activated_at" datetime
473
+  (0.1ms) ALTER TABLE "users" ADD "deactivated_at" datetime
474
+  (0.1ms) ALTER TABLE "users" ADD "activated_by_id" integer
475
+  (0.2ms) ALTER TABLE "users" ADD "deactivated_by_id" integer
476
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403135220')
477
+  (111.0ms) commit transaction
478
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
479
+ Connecting to database specified by database.yml
480
+ Connecting to database specified by database.yml
481
+ Connecting to database specified by database.yml
482
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
483
+ Migrating to CreateUsers (20130402122537)
484
+ Migrating to CreateProducts (20130403123944)
485
+ Migrating to AddActivableToUsers (20130403135220)
486
+  (0.0ms) select sqlite_version(*)
487
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
488
+ Connecting to database specified by database.yml
489
+ Connecting to database specified by database.yml
490
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
491
+ Migrating to CreateUsers (20130402122537)
492
+ Migrating to CreateProducts (20130403123944)
493
+ Migrating to AddActivableToUsers (20130403135220)
494
+  (0.0ms) select sqlite_version(*)
495
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
496
+ Connecting to database specified by database.yml
497
+ Connecting to database specified by database.yml
498
+ Connecting to database specified by database.yml
499
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
500
+ Migrating to CreateUsers (20130402122537)
501
+ Migrating to CreateProducts (20130403123944)
502
+ Migrating to AddActivableToUsers (20130403135220)
503
+  (0.0ms) select sqlite_version(*)
504
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
505
+ Connecting to database specified by database.yml
506
+ Connecting to database specified by database.yml
507
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
508
+ Migrating to CreateUsers (20130402122537)
509
+ Migrating to CreateProducts (20130403123944)
510
+ Migrating to AddActivableToUsers (20130403135220)
511
+  (0.0ms) select sqlite_version(*)
512
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
513
+  (0.0ms) begin transaction
514
+ SQL (25.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:10:57 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:10:57 UTC +00:00]]
515
+  (147.1ms) commit transaction
516
+  (0.1ms) begin transaction
517
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:10:57 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:10:57 UTC +00:00]]
518
+  (78.1ms) commit transaction
519
+ Connecting to database specified by database.yml
520
+ Connecting to database specified by database.yml
521
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
522
+ Migrating to CreateUsers (20130402122537)
523
+ Migrating to CreateProducts (20130403123944)
524
+ Migrating to AddActivableToUsers (20130403135220)
525
+  (0.0ms) select sqlite_version(*)
526
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
527
+  (0.0ms) begin transaction
528
+ SQL (3.1ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:12:11 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:12:11 UTC +00:00]]
529
+  (135.5ms) commit transaction
530
+  (0.1ms) begin transaction
531
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:12:11 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:12:11 UTC +00:00]]
532
+  (84.7ms) commit transaction
533
+ Connecting to database specified by database.yml
534
+ Connecting to database specified by database.yml
535
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
536
+ Migrating to CreateUsers (20130402122537)
537
+ Migrating to CreateProducts (20130403123944)
538
+ Migrating to AddActivableToUsers (20130403135220)
539
+  (0.0ms) select sqlite_version(*)
540
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
541
+  (0.1ms) begin transaction
542
+ SQL (15.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:12:38 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:12:38 UTC +00:00]]
543
+  (119.3ms) commit transaction
544
+  (0.1ms) begin transaction
545
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:12:39 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:12:39 UTC +00:00]]
546
+  (84.5ms) commit transaction
547
+ Connecting to database specified by database.yml
548
+ Connecting to database specified by database.yml
549
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
550
+ Migrating to CreateUsers (20130402122537)
551
+ Migrating to CreateProducts (20130403123944)
552
+ Migrating to AddActivableToUsers (20130403135220)
553
+  (0.0ms) select sqlite_version(*)
554
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
555
+  (0.0ms) begin transaction
556
+ SQL (15.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:13:46 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:13:46 UTC +00:00]]
557
+  (117.5ms) commit transaction
558
+  (0.1ms) begin transaction
559
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:13:46 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:13:46 UTC +00:00]]
560
+  (84.7ms) commit transaction
561
+ Connecting to database specified by database.yml
562
+ Connecting to database specified by database.yml
563
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
564
+ Migrating to CreateUsers (20130402122537)
565
+ Migrating to CreateProducts (20130403123944)
566
+ Migrating to AddActivableToUsers (20130403135220)
567
+  (0.0ms) select sqlite_version(*)
568
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
569
+  (0.0ms) begin transaction
570
+ SQL (15.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:00 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:00 UTC +00:00]]
571
+  (117.4ms) commit transaction
572
+  (0.1ms) begin transaction
573
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:00 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:00 UTC +00:00]]
574
+  (84.5ms) commit transaction
575
+ Connecting to database specified by database.yml
576
+ Connecting to database specified by database.yml
577
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
578
+ Migrating to CreateUsers (20130402122537)
579
+ Migrating to CreateProducts (20130403123944)
580
+ Migrating to AddActivableToUsers (20130403135220)
581
+  (0.0ms) select sqlite_version(*)
582
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
583
+  (0.0ms) begin transaction
584
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:21 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:21 UTC +00:00]]
585
+  (121.6ms) commit transaction
586
+  (0.1ms) begin transaction
587
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:21 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:21 UTC +00:00]]
588
+  (84.5ms) commit transaction
589
+ Connecting to database specified by database.yml
590
+ Connecting to database specified by database.yml
591
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
592
+ Migrating to CreateUsers (20130402122537)
593
+ Migrating to CreateProducts (20130403123944)
594
+ Migrating to AddActivableToUsers (20130403135220)
595
+  (0.0ms) select sqlite_version(*)
596
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
597
+  (0.0ms) begin transaction
598
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:41 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:41 UTC +00:00]]
599
+  (161.1ms) commit transaction
600
+  (0.0ms) begin transaction
601
+ SQL (0.2ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:41 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:41 UTC +00:00]]
602
+  (85.8ms) commit transaction
603
+ Connecting to database specified by database.yml
604
+ Connecting to database specified by database.yml
605
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
606
+ Migrating to CreateUsers (20130402122537)
607
+ Migrating to CreateProducts (20130403123944)
608
+ Migrating to AddActivableToUsers (20130403135220)
609
+  (0.0ms) select sqlite_version(*)
610
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
611
+  (0.0ms) begin transaction
612
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:53 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:53 UTC +00:00]]
613
+  (123.1ms) commit transaction
614
+  (0.0ms) begin transaction
615
+ SQL (0.2ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:15:54 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:15:54 UTC +00:00]]
616
+  (85.8ms) commit transaction
617
+ Connecting to database specified by database.yml
618
+ Connecting to database specified by database.yml
619
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
620
+ Migrating to CreateUsers (20130402122537)
621
+ Migrating to CreateProducts (20130403123944)
622
+ Migrating to AddActivableToUsers (20130403135220)
623
+  (0.0ms) select sqlite_version(*)
624
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
625
+  (0.0ms) begin transaction
626
+  (0.0ms) rollback transaction
627
+  (0.0ms) begin transaction
628
+  (0.0ms) rollback transaction
629
+  (0.0ms) begin transaction
630
+  (0.0ms) rollback transaction
631
+ Connecting to database specified by database.yml
632
+ Connecting to database specified by database.yml
633
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
634
+ Migrating to CreateUsers (20130402122537)
635
+ Migrating to CreateProducts (20130403123944)
636
+ Migrating to AddActivableToUsers (20130403135220)
637
+  (0.0ms) select sqlite_version(*)
638
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
639
+  (0.1ms) begin transaction
640
+  (0.0ms) rollback transaction
641
+  (0.0ms) begin transaction
642
+  (0.0ms) rollback transaction
643
+  (0.0ms) begin transaction
644
+  (0.0ms) rollback transaction
645
+ Connecting to database specified by database.yml
646
+ Connecting to database specified by database.yml
647
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
648
+ Migrating to CreateUsers (20130402122537)
649
+ Migrating to CreateProducts (20130403123944)
650
+ Migrating to AddActivableToUsers (20130403135220)
651
+  (0.0ms) select sqlite_version(*)
652
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
653
+  (0.0ms) begin transaction
654
+  (0.0ms) rollback transaction
655
+  (0.0ms) begin transaction
656
+  (0.0ms) rollback transaction
657
+  (0.0ms) begin transaction
658
+  (0.0ms) rollback transaction
659
+ Connecting to database specified by database.yml
660
+ Connecting to database specified by database.yml
661
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
662
+ Migrating to CreateUsers (20130402122537)
663
+ Migrating to CreateProducts (20130403123944)
664
+ Migrating to AddActivableToUsers (20130403135220)
665
+  (0.0ms) select sqlite_version(*)
666
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
667
+  (0.0ms) begin transaction
668
+  (0.0ms) rollback transaction
669
+  (0.0ms) begin transaction
670
+  (0.0ms) rollback transaction
671
+  (0.0ms) begin transaction
672
+  (0.0ms) rollback transaction
673
+ Connecting to database specified by database.yml
674
+ Connecting to database specified by database.yml
675
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
676
+ Migrating to CreateUsers (20130402122537)
677
+ Migrating to CreateProducts (20130403123944)
678
+ Migrating to AddActivableToUsers (20130403135220)
679
+  (0.0ms) select sqlite_version(*)
680
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
681
+  (0.0ms) begin transaction
682
+  (0.0ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+  (0.0ms) rollback transaction
687
+ Connecting to database specified by database.yml
688
+ Connecting to database specified by database.yml
689
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
690
+ Migrating to CreateUsers (20130402122537)
691
+ Migrating to CreateProducts (20130403123944)
692
+ Migrating to AddActivableToUsers (20130403135220)
693
+  (0.0ms) select sqlite_version(*)
694
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
695
+  (0.0ms) begin transaction
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+  (0.0ms) rollback transaction
699
+  (0.0ms) begin transaction
700
+  (0.0ms) rollback transaction
701
+ Connecting to database specified by database.yml
702
+ Connecting to database specified by database.yml
703
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
704
+ Migrating to CreateUsers (20130402122537)
705
+ Migrating to CreateProducts (20130403123944)
706
+ Migrating to AddActivableToUsers (20130403135220)
707
+  (0.0ms) select sqlite_version(*)
708
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
709
+  (0.1ms) begin transaction
710
+  (0.0ms) rollback transaction
711
+  (0.0ms) begin transaction
712
+  (0.0ms) rollback transaction
713
+  (0.0ms) begin transaction
714
+  (0.0ms) rollback transaction
715
+ Connecting to database specified by database.yml
716
+ Connecting to database specified by database.yml
717
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
718
+ Migrating to CreateUsers (20130402122537)
719
+ Migrating to CreateProducts (20130403123944)
720
+ Migrating to AddActivableToUsers (20130403135220)
721
+  (0.0ms) select sqlite_version(*)
722
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
723
+  (0.0ms) begin transaction
724
+  (0.0ms) rollback transaction
725
+  (0.0ms) begin transaction
726
+  (0.0ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+  (0.0ms) rollback transaction
729
+ Connecting to database specified by database.yml
730
+ Connecting to database specified by database.yml
731
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
732
+ Migrating to CreateUsers (20130402122537)
733
+ Migrating to CreateProducts (20130403123944)
734
+ Migrating to AddActivableToUsers (20130403135220)
735
+  (0.0ms) select sqlite_version(*)
736
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
737
+  (0.0ms) begin transaction
738
+  (0.0ms) rollback transaction
739
+  (0.0ms) begin transaction
740
+  (0.0ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+  (0.0ms) rollback transaction
743
+ Connecting to database specified by database.yml
744
+ Connecting to database specified by database.yml
745
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
746
+ Migrating to CreateUsers (20130402122537)
747
+ Migrating to CreateProducts (20130403123944)
748
+ Migrating to AddActivableToUsers (20130403135220)
749
+  (0.0ms) select sqlite_version(*)
750
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
751
+  (0.0ms) begin transaction
752
+  (0.0ms) rollback transaction
753
+  (0.0ms) begin transaction
754
+  (0.0ms) rollback transaction
755
+  (0.0ms) begin transaction
756
+  (0.0ms) rollback transaction
757
+ Connecting to database specified by database.yml
758
+ Connecting to database specified by database.yml
759
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
760
+ Migrating to CreateUsers (20130402122537)
761
+ Migrating to CreateProducts (20130403123944)
762
+ Migrating to AddActivableToUsers (20130403135220)
763
+  (0.0ms) select sqlite_version(*)
764
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
765
+  (0.0ms) begin transaction
766
+  (0.0ms) rollback transaction
767
+  (0.0ms) begin transaction
768
+  (0.0ms) rollback transaction
769
+ Connecting to database specified by database.yml
770
+ Connecting to database specified by database.yml
771
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
772
+ Migrating to CreateUsers (20130402122537)
773
+ Migrating to CreateProducts (20130403123944)
774
+ Migrating to AddActivableToUsers (20130403135220)
775
+  (0.0ms) select sqlite_version(*)
776
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
777
+  (0.0ms) begin transaction
778
+  (0.0ms) rollback transaction
779
+  (0.0ms) begin transaction
780
+  (0.0ms) rollback transaction
781
+ Connecting to database specified by database.yml
782
+ Connecting to database specified by database.yml
783
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
784
+ Migrating to CreateUsers (20130402122537)
785
+ Migrating to CreateProducts (20130403123944)
786
+ Migrating to AddActivableToUsers (20130403135220)
787
+  (0.0ms) select sqlite_version(*)
788
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
789
+  (0.0ms) begin transaction
790
+  (0.0ms) rollback transaction
791
+  (0.0ms) begin transaction
792
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:30:22 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:30:22 UTC +00:00]]
793
+  (163.3ms) commit transaction
794
+  (0.1ms) begin transaction
795
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 14:30:22 UTC +00:00], ["activated_by_id", 17], ["active", true], ["created_at", Wed, 03 Apr 2013 14:30:22 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:30:22 UTC +00:00]]
796
+  (90.8ms) commit transaction
797
+ Connecting to database specified by database.yml
798
+ Connecting to database specified by database.yml
799
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
800
+ Migrating to CreateUsers (20130402122537)
801
+ Migrating to CreateProducts (20130403123944)
802
+ Migrating to AddActivableToUsers (20130403135220)
803
+  (0.0ms) select sqlite_version(*)
804
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
805
+  (0.0ms) begin transaction
806
+  (0.0ms) rollback transaction
807
+  (0.0ms) begin transaction
808
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:30:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:30:44 UTC +00:00]]
809
+  (118.7ms) commit transaction
810
+  (0.1ms) begin transaction
811
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 14:30:44 UTC +00:00], ["activated_by_id", 19], ["active", true], ["created_at", Wed, 03 Apr 2013 14:30:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:30:44 UTC +00:00]]
812
+  (90.8ms) commit transaction
813
+ Connecting to database specified by database.yml
814
+ Connecting to database specified by database.yml
815
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
816
+ Migrating to CreateUsers (20130402122537)
817
+ Migrating to CreateProducts (20130403123944)
818
+ Migrating to AddActivableToUsers (20130403135220)
819
+  (0.0ms) select sqlite_version(*)
820
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
821
+  (0.0ms) begin transaction
822
+  (0.0ms) rollback transaction
823
+  (0.0ms) begin transaction
824
+ SQL (15.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00]]
825
+  (122.4ms) commit transaction
826
+  (0.1ms) begin transaction
827
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", nil], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00]]
828
+  (84.7ms) commit transaction
829
+  (0.1ms) begin transaction
830
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00], ["activated_by_id", 21], ["active", true], ["created_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 14:35:50 UTC +00:00]]
831
+  (91.6ms) commit transaction
832
+  (0.1ms) begin transaction
833
+  (0.3ms) UPDATE "users" SET "active" = 'f', "activated_at" = NULL, "activated_by_id" = NULL, "deactivated_at" = '2013-04-03 14:35:50.989222', "deactivated_by_id" = 22, "updated_at" = '2013-04-03 14:35:50.991324' WHERE "users"."id" = 23
834
+  (90.9ms) commit transaction
835
+ Connecting to database specified by database.yml
836
+ Connecting to database specified by database.yml
837
+ Connecting to database specified by database.yml
838
+ Connecting to database specified by database.yml
839
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
840
+ Migrating to CreateUsers (20130402122537)
841
+ Migrating to CreateProducts (20130403123944)
842
+ Migrating to AddActivableToUsers (20130403135220)
843
+  (0.0ms) select sqlite_version(*)
844
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
845
+  (0.1ms) begin transaction
846
+  (0.0ms) rollback transaction
847
+  (0.0ms) begin transaction
848
+ SQL (28.1ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00]]
849
+  (237.5ms) commit transaction
850
+  (0.1ms) begin transaction
851
+  (0.0ms) rollback transaction
852
+  (0.1ms) begin transaction
853
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00]]
854
+  (142.6ms) commit transaction
855
+  (0.1ms) begin transaction
856
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00], ["deactivated_by_id", 25], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:54:47 UTC +00:00]]
857
+  (154.2ms) commit transaction
858
+ Connecting to database specified by database.yml
859
+ Connecting to database specified by database.yml
860
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
861
+ Migrating to CreateUsers (20130402122537)
862
+ Migrating to CreateProducts (20130403123944)
863
+ Migrating to AddActivableToUsers (20130403135220)
864
+  (0.0ms) select sqlite_version(*)
865
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
866
+  (0.1ms) begin transaction
867
+  (0.0ms) rollback transaction
868
+  (0.0ms) begin transaction
869
+ SQL (2.8ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00]]
870
+  (139.6ms) commit transaction
871
+  (0.1ms) begin transaction
872
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["activated_by_id", 27], ["active", true], ["created_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00]]
873
+  (91.1ms) commit transaction
874
+  (0.1ms) begin transaction
875
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00]]
876
+  (84.5ms) commit transaction
877
+  (0.1ms) begin transaction
878
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00], ["deactivated_by_id", 29], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:56:36 UTC +00:00]]
879
+  (91.9ms) commit transaction
880
+ Connecting to database specified by database.yml
881
+ Connecting to database specified by database.yml
882
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
883
+ Migrating to CreateUsers (20130402122537)
884
+ Migrating to CreateProducts (20130403123944)
885
+ Migrating to AddActivableToUsers (20130403135220)
886
+  (0.0ms) select sqlite_version(*)
887
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
888
+  (0.1ms) begin transaction
889
+  (0.0ms) rollback transaction
890
+  (0.0ms) begin transaction
891
+ SQL (2.8ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00]]
892
+  (133.1ms) commit transaction
893
+  (0.1ms) begin transaction
894
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["activated_by_id", 31], ["active", true], ["created_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00]]
895
+  (91.0ms) commit transaction
896
+  (0.1ms) begin transaction
897
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00]]
898
+  (84.5ms) commit transaction
899
+  (0.1ms) begin transaction
900
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00], ["deactivated_by_id", 33], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 16:57:05 UTC +00:00]]
901
+  (83.6ms) commit transaction
902
+ Connecting to database specified by database.yml
903
+ Connecting to database specified by database.yml
904
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
905
+ Migrating to CreateUsers (20130402122537)
906
+ Migrating to CreateProducts (20130403123944)
907
+ Migrating to AddActivableToUsers (20130403135220)
908
+  (0.0ms) select sqlite_version(*)
909
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
910
+  (0.1ms) begin transaction
911
+  (0.0ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ SQL (2.8ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00]]
914
+  (123.5ms) commit transaction
915
+  (0.1ms) begin transaction
916
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["activated_by_id", 35], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00]]
917
+  (94.1ms) commit transaction
918
+  (0.1ms) begin transaction
919
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00]]
920
+  (88.2ms) commit transaction
921
+  (0.1ms) begin transaction
922
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00], ["deactivated_by_id", 37], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:18 UTC +00:00]]
923
+  (115.0ms) commit transaction
924
+ Connecting to database specified by database.yml
925
+ Connecting to database specified by database.yml
926
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
927
+ Migrating to CreateUsers (20130402122537)
928
+ Migrating to CreateProducts (20130403123944)
929
+ Migrating to AddActivableToUsers (20130403135220)
930
+  (0.0ms) select sqlite_version(*)
931
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
932
+  (0.0ms) begin transaction
933
+  (0.0ms) rollback transaction
934
+  (0.0ms) begin transaction
935
+ SQL (15.2ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00]]
936
+  (120.8ms) commit transaction
937
+  (0.1ms) begin transaction
938
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["activated_by_id", 39], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00]]
939
+  (93.0ms) commit transaction
940
+  (0.1ms) begin transaction
941
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00]]
942
+  (100.0ms) commit transaction
943
+  (0.1ms) begin transaction
944
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00], ["deactivated_by_id", 41], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 17:57:44 UTC +00:00]]
945
+  (85.5ms) commit transaction
946
+ Connecting to database specified by database.yml
947
+ Connecting to database specified by database.yml
948
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
949
+ Migrating to CreateUsers (20130402122537)
950
+ Migrating to CreateProducts (20130403123944)
951
+ Migrating to AddActivableToUsers (20130403135220)
952
+  (0.0ms) select sqlite_version(*)
953
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
954
+  (0.1ms) begin transaction
955
+  (0.0ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+ SQL (2.9ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00]]
958
+  (136.5ms) commit transaction
959
+  (0.1ms) begin transaction
960
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["activated_by_id", 43], ["active", true], ["created_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00]]
961
+  (91.2ms) commit transaction
962
+  (0.1ms) begin transaction
963
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00]]
964
+  (84.3ms) commit transaction
965
+  (0.1ms) begin transaction
966
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00], ["deactivated_by_id", 45], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:00:15 UTC +00:00]]
967
+  (91.7ms) commit transaction
968
+ Connecting to database specified by database.yml
969
+ Connecting to database specified by database.yml
970
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
971
+ Migrating to CreateUsers (20130402122537)
972
+ Migrating to CreateProducts (20130403123944)
973
+ Migrating to AddActivableToUsers (20130403135220)
974
+  (0.0ms) select sqlite_version(*)
975
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
976
+  (0.0ms) begin transaction
977
+  (0.0ms) rollback transaction
978
+  (0.0ms) begin transaction
979
+ SQL (15.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00]]
980
+  (157.1ms) commit transaction
981
+  (0.1ms) begin transaction
982
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["activated_by_id", 47], ["active", true], ["created_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00]]
983
+  (90.9ms) commit transaction
984
+  (0.1ms) begin transaction
985
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00]]
986
+  (84.4ms) commit transaction
987
+  (0.1ms) begin transaction
988
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00], ["deactivated_by_id", 49], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:01:22 UTC +00:00]]
989
+  (91.7ms) commit transaction
990
+ Connecting to database specified by database.yml
991
+ Connecting to database specified by database.yml
992
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
993
+ Migrating to CreateUsers (20130402122537)
994
+ Migrating to CreateProducts (20130403123944)
995
+ Migrating to AddActivableToUsers (20130403135220)
996
+  (0.0ms) select sqlite_version(*)
997
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
998
+  (0.1ms) begin transaction
999
+  (0.0ms) rollback transaction
1000
+  (0.0ms) begin transaction
1001
+ SQL (15.1ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00]]
1002
+  (154.7ms) commit transaction
1003
+  (0.1ms) begin transaction
1004
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["activated_by_id", 51], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00]]
1005
+  (90.8ms) commit transaction
1006
+  (0.1ms) begin transaction
1007
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:08 UTC +00:00]]
1008
+  (84.3ms) commit transaction
1009
+  (0.1ms) begin transaction
1010
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:09 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:09 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:02:09 UTC +00:00], ["deactivated_by_id", 53], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:09 UTC +00:00]]
1011
+  (83.4ms) commit transaction
1012
+ Connecting to database specified by database.yml
1013
+ Connecting to database specified by database.yml
1014
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1015
+ Migrating to CreateUsers (20130402122537)
1016
+ Migrating to CreateProducts (20130403123944)
1017
+ Migrating to AddActivableToUsers (20130403135220)
1018
+  (0.0ms) select sqlite_version(*)
1019
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1020
+  (0.1ms) begin transaction
1021
+  (0.0ms) rollback transaction
1022
+  (0.0ms) begin transaction
1023
+ SQL (15.1ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:27 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:27 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:27 UTC +00:00]]
1024
+  (113.7ms) commit transaction
1025
+  (0.1ms) begin transaction
1026
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["activated_by_id", 55], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00]]
1027
+  (90.9ms) commit transaction
1028
+  (0.1ms) begin transaction
1029
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00]]
1030
+  (84.4ms) commit transaction
1031
+  (0.1ms) begin transaction
1032
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00], ["deactivated_by_id", 57], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:02:28 UTC +00:00]]
1033
+  (104.8ms) commit transaction
1034
+ Connecting to database specified by database.yml
1035
+ Connecting to database specified by database.yml
1036
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1037
+ Migrating to CreateUsers (20130402122537)
1038
+ Migrating to CreateProducts (20130403123944)
1039
+ Migrating to AddActivableToUsers (20130403135220)
1040
+  (0.0ms) select sqlite_version(*)
1041
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1042
+  (0.0ms) begin transaction
1043
+  (0.0ms) rollback transaction
1044
+  (0.0ms) begin transaction
1045
+ SQL (15.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00]]
1046
+  (156.5ms) commit transaction
1047
+  (0.1ms) begin transaction
1048
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["activated_by_id", 59], ["active", true], ["created_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00]]
1049
+  (129.2ms) commit transaction
1050
+  (0.1ms) begin transaction
1051
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00]]
1052
+  (100.9ms) commit transaction
1053
+  (0.1ms) begin transaction
1054
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00], ["deactivated_by_id", 61], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:20:04 UTC +00:00]]
1055
+  (91.7ms) commit transaction
1056
+ Connecting to database specified by database.yml
1057
+ Connecting to database specified by database.yml
1058
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1059
+ Migrating to CreateUsers (20130402122537)
1060
+ Migrating to CreateProducts (20130403123944)
1061
+ Migrating to AddActivableToUsers (20130403135220)
1062
+  (0.0ms) select sqlite_version(*)
1063
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1064
+  (0.1ms) begin transaction
1065
+  (0.0ms) rollback transaction
1066
+  (0.0ms) begin transaction
1067
+ SQL (2.8ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00]]
1068
+  (126.9ms) commit transaction
1069
+  (0.1ms) begin transaction
1070
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["activated_by_id", 63], ["active", true], ["created_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00]]
1071
+  (91.1ms) commit transaction
1072
+  (0.1ms) begin transaction
1073
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00]]
1074
+  (84.3ms) commit transaction
1075
+  (0.1ms) begin transaction
1076
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00], ["deactivated_by_id", 65], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:27:11 UTC +00:00]]
1077
+  (83.5ms) commit transaction
1078
+ Connecting to database specified by database.yml
1079
+ Connecting to database specified by database.yml
1080
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1081
+ Migrating to CreateUsers (20130402122537)
1082
+ Migrating to CreateProducts (20130403123944)
1083
+ Migrating to AddActivableToUsers (20130403135220)
1084
+  (0.0ms) select sqlite_version(*)
1085
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1086
+  (0.1ms) begin transaction
1087
+  (0.0ms) rollback transaction
1088
+  (0.0ms) begin transaction
1089
+ SQL (3.1ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00]]
1090
+  (120.5ms) commit transaction
1091
+  (0.1ms) begin transaction
1092
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["activated_by_id", 67], ["active", true], ["created_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00]]
1093
+  (90.9ms) commit transaction
1094
+  (0.1ms) begin transaction
1095
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00]]
1096
+  (85.2ms) commit transaction
1097
+  (0.1ms) begin transaction
1098
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00], ["deactivated_by_id", 69], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:29:31 UTC +00:00]]
1099
+  (95.4ms) commit transaction
1100
+ Connecting to database specified by database.yml
1101
+ Connecting to database specified by database.yml
1102
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1103
+ Migrating to CreateUsers (20130402122537)
1104
+ Migrating to CreateProducts (20130403123944)
1105
+ Migrating to AddActivableToUsers (20130403135220)
1106
+  (0.0ms) select sqlite_version(*)
1107
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1108
+  (0.1ms) begin transaction
1109
+  (0.0ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+ SQL (2.8ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:35:49 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:35:49 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:35:49 UTC +00:00]]
1112
+  (125.1ms) commit transaction
1113
+  (0.1ms) begin transaction
1114
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["activated_by_id", 71], ["active", true], ["created_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00]]
1115
+  (92.5ms) commit transaction
1116
+  (0.1ms) begin transaction
1117
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00]]
1118
+  (84.2ms) commit transaction
1119
+  (0.1ms) begin transaction
1120
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00], ["deactivated_by_id", 73], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:35:50 UTC +00:00]]
1121
+  (103.7ms) commit transaction
1122
+ Connecting to database specified by database.yml
1123
+ Connecting to database specified by database.yml
1124
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1125
+ Migrating to CreateUsers (20130402122537)
1126
+ Migrating to CreateProducts (20130403123944)
1127
+ Migrating to AddActivableToUsers (20130403135220)
1128
+  (0.0ms) select sqlite_version(*)
1129
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1130
+  (0.1ms) begin transaction
1131
+  (0.0ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+ SQL (2.9ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00]]
1134
+  (124.8ms) commit transaction
1135
+  (0.1ms) begin transaction
1136
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["activated_by_id", 75], ["active", true], ["created_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00]]
1137
+  (90.8ms) commit transaction
1138
+  (0.0ms) begin transaction
1139
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00]]
1140
+  (85.7ms) commit transaction
1141
+  (0.1ms) begin transaction
1142
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00], ["deactivated_by_id", 77], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:36:13 UTC +00:00]]
1143
+  (128.6ms) commit transaction
1144
+ Connecting to database specified by database.yml
1145
+ Connecting to database specified by database.yml
1146
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1147
+ Migrating to CreateUsers (20130402122537)
1148
+ Migrating to CreateProducts (20130403123944)
1149
+ Migrating to AddActivableToUsers (20130403135220)
1150
+  (0.0ms) select sqlite_version(*)
1151
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1152
+  (0.1ms) begin transaction
1153
+  (0.0ms) rollback transaction
1154
+  (0.0ms) begin transaction
1155
+ SQL (2.9ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00]]
1156
+  (123.7ms) commit transaction
1157
+  (0.1ms) begin transaction
1158
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["activated_by_id", 79], ["active", true], ["created_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00]]
1159
+  (90.9ms) commit transaction
1160
+  (0.1ms) begin transaction
1161
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_admin@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00]]
1162
+  (86.1ms) commit transaction
1163
+  (0.1ms) begin transaction
1164
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00], ["deactivated_by_id", 81], ["email", "test@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:37:27 UTC +00:00]]
1165
+  (95.4ms) commit transaction
1166
+ Connecting to database specified by database.yml
1167
+ Connecting to database specified by database.yml
1168
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1169
+ Migrating to CreateUsers (20130402122537)
1170
+ Migrating to CreateProducts (20130403123944)
1171
+ Migrating to AddActivableToUsers (20130403135220)
1172
+  (0.0ms) select sqlite_version(*)
1173
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1174
+  (0.1ms) begin transaction
1175
+  (0.0ms) rollback transaction
1176
+  (0.0ms) begin transaction
1177
+ SQL (2.9ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00]]
1178
+  (126.4ms) commit transaction
1179
+  (0.1ms) begin transaction
1180
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["activated_by_id", 83], ["active", true], ["created_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00]]
1181
+  (92.2ms) commit transaction
1182
+  (0.1ms) begin transaction
1183
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:39:35 UTC +00:00]]
1184
+  (188.9ms) commit transaction
1185
+  (0.1ms) begin transaction
1186
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:39:36 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:39:36 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:39:36 UTC +00:00], ["deactivated_by_id", 85], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:39:36 UTC +00:00]]
1187
+  (83.2ms) commit transaction
1188
+ Connecting to database specified by database.yml
1189
+ Connecting to database specified by database.yml
1190
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1191
+ Migrating to CreateUsers (20130402122537)
1192
+ Migrating to CreateProducts (20130403123944)
1193
+ Migrating to AddActivableToUsers (20130403135220)
1194
+ Migrating to CreateCategories (20130403185451)
1195
+  (0.0ms) select sqlite_version(*)
1196
+  (0.0ms) begin transaction
1197
+  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1198
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403185451')
1199
+  (127.3ms) commit transaction
1200
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1201
+  (0.0ms) begin transaction
1202
+ SQL (15.8ms) INSERT INTO "categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00]]
1203
+  (118.7ms) commit transaction
1204
+  (0.0ms) begin transaction
1205
+  (0.0ms) rollback transaction
1206
+  (0.0ms) begin transaction
1207
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00]]
1208
+  (91.2ms) commit transaction
1209
+  (0.0ms) begin transaction
1210
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["activated_by_id", 87], ["active", true], ["created_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00]]
1211
+  (84.1ms) commit transaction
1212
+  (0.1ms) begin transaction
1213
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00]]
1214
+  (97.4ms) commit transaction
1215
+  (0.1ms) begin transaction
1216
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00], ["deactivated_by_id", 89], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:56:37 UTC +00:00]]
1217
+  (83.4ms) commit transaction
1218
+ Connecting to database specified by database.yml
1219
+ Connecting to database specified by database.yml
1220
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1221
+ Migrating to CreateUsers (20130402122537)
1222
+ Migrating to CreateProducts (20130403123944)
1223
+ Migrating to AddActivableToUsers (20130403135220)
1224
+ Migrating to CreateCategories (20130403185451)
1225
+  (0.0ms) select sqlite_version(*)
1226
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1227
+  (0.0ms) begin transaction
1228
+ SQL (15.8ms) INSERT INTO "categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 03 Apr 2013 18:58:39 UTC +00:00], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 18:58:39 UTC +00:00]]
1229
+  (119.7ms) commit transaction
1230
+  (0.0ms) begin transaction
1231
+  (0.0ms) rollback transaction
1232
+  (0.0ms) begin transaction
1233
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00]]
1234
+  (87.0ms) commit transaction
1235
+  (0.1ms) begin transaction
1236
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["activated_by_id", 91], ["active", true], ["created_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00]]
1237
+  (90.7ms) commit transaction
1238
+  (0.1ms) begin transaction
1239
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00]]
1240
+  (84.3ms) commit transaction
1241
+  (0.1ms) begin transaction
1242
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00], ["deactivated_by_id", 93], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 18:58:40 UTC +00:00]]
1243
+  (105.0ms) commit transaction
1244
+ Connecting to database specified by database.yml
1245
+ Connecting to database specified by database.yml
1246
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1247
+ Migrating to CreateUsers (20130402122537)
1248
+ Migrating to CreateProducts (20130403123944)
1249
+ Migrating to AddActivableToUsers (20130403135220)
1250
+ Migrating to CreateCategories (20130403185451)
1251
+ Migrating to AddActivableToCategories (20130403190146)
1252
+  (0.0ms) select sqlite_version(*)
1253
+  (0.0ms) begin transaction
1254
+  (0.2ms) ALTER TABLE "categories" ADD "activated_at" datetime
1255
+  (0.1ms) ALTER TABLE "categories" ADD "deactivated_at" datetime
1256
+  (0.1ms) ALTER TABLE "categories" ADD "activated_by_id" integer
1257
+  (0.1ms) ALTER TABLE "categories" ADD "deactivated_by_id" integer
1258
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403190146')
1259
+  (107.3ms) commit transaction
1260
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1261
+  (0.0ms) begin transaction
1262
+ SQL (15.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1263
+  (129.6ms) commit transaction
1264
+  (0.1ms) begin transaction
1265
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1266
+  (85.9ms) commit transaction
1267
+  (0.1ms) begin transaction
1268
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1269
+  (86.3ms) commit transaction
1270
+  (0.0ms) begin transaction
1271
+  (0.0ms) rollback transaction
1272
+  (0.0ms) begin transaction
1273
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1274
+  (88.7ms) commit transaction
1275
+  (0.1ms) begin transaction
1276
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", 95], ["active", true], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1277
+  (106.7ms) commit transaction
1278
+  (0.1ms) begin transaction
1279
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1280
+  (86.4ms) commit transaction
1281
+  (0.1ms) begin transaction
1282
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00], ["deactivated_by_id", 97], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:02:35 UTC +00:00]]
1283
+  (86.9ms) commit transaction
1284
+ Connecting to database specified by database.yml
1285
+ Connecting to database specified by database.yml
1286
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1287
+ Migrating to CreateUsers (20130402122537)
1288
+ Migrating to CreateProducts (20130403123944)
1289
+ Migrating to AddActivableToUsers (20130403135220)
1290
+ Migrating to CreateCategories (20130403185451)
1291
+ Migrating to AddActivableToCategories (20130403190146)
1292
+  (0.0ms) select sqlite_version(*)
1293
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1294
+  (0.0ms) begin transaction
1295
+ SQL (15.5ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00]]
1296
+  (124.7ms) commit transaction
1297
+  (0.1ms) begin transaction
1298
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00]]
1299
+  (86.0ms) commit transaction
1300
+  (0.1ms) begin transaction
1301
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:06:31 UTC +00:00]]
1302
+  (87.7ms) commit transaction
1303
+  (0.0ms) begin transaction
1304
+  (0.0ms) rollback transaction
1305
+  (0.0ms) begin transaction
1306
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00]]
1307
+  (113.9ms) commit transaction
1308
+  (0.1ms) begin transaction
1309
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["activated_by_id", 99], ["active", true], ["created_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00]]
1310
+  (94.3ms) commit transaction
1311
+  (0.1ms) begin transaction
1312
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00]]
1313
+  (86.4ms) commit transaction
1314
+  (0.1ms) begin transaction
1315
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00], ["deactivated_by_id", 101], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:06:32 UTC +00:00]]
1316
+  (99.0ms) commit transaction
1317
+ Connecting to database specified by database.yml
1318
+ Connecting to database specified by database.yml
1319
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1320
+ Migrating to CreateUsers (20130402122537)
1321
+ Migrating to CreateProducts (20130403123944)
1322
+ Migrating to AddActivableToUsers (20130403135220)
1323
+ Migrating to CreateCategories (20130403185451)
1324
+ Migrating to AddActivableToCategories (20130403190146)
1325
+  (0.0ms) select sqlite_version(*)
1326
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1327
+  (0.0ms) begin transaction
1328
+ SQL (15.5ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00]]
1329
+  (109.3ms) commit transaction
1330
+  (0.1ms) begin transaction
1331
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:24 UTC +00:00]]
1332
+  (114.0ms) commit transaction
1333
+  (0.1ms) begin transaction
1334
+ SQL (0.5ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00]]
1335
+  (89.4ms) commit transaction
1336
+  (0.0ms) begin transaction
1337
+  (0.0ms) rollback transaction
1338
+  (0.0ms) begin transaction
1339
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00]]
1340
+  (92.9ms) commit transaction
1341
+  (0.1ms) begin transaction
1342
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["activated_by_id", 103], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00]]
1343
+  (92.7ms) commit transaction
1344
+  (0.1ms) begin transaction
1345
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00]]
1346
+  (87.8ms) commit transaction
1347
+  (0.1ms) begin transaction
1348
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00], ["deactivated_by_id", 105], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:25 UTC +00:00]]
1349
+  (97.7ms) commit transaction
1350
+ Connecting to database specified by database.yml
1351
+ Connecting to database specified by database.yml
1352
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1353
+ Migrating to CreateUsers (20130402122537)
1354
+ Migrating to CreateProducts (20130403123944)
1355
+ Migrating to AddActivableToUsers (20130403135220)
1356
+ Migrating to CreateCategories (20130403185451)
1357
+ Migrating to AddActivableToCategories (20130403190146)
1358
+  (0.0ms) select sqlite_version(*)
1359
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1360
+  (0.0ms) begin transaction
1361
+ SQL (2.8ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:43 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:43 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:43 UTC +00:00]]
1362
+  (128.2ms) commit transaction
1363
+  (0.1ms) begin transaction
1364
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1365
+  (86.2ms) commit transaction
1366
+  (0.1ms) begin transaction
1367
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1368
+  (86.3ms) commit transaction
1369
+  (0.1ms) begin transaction
1370
+  (0.0ms) rollback transaction
1371
+  (0.0ms) begin transaction
1372
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1373
+  (86.5ms) commit transaction
1374
+  (0.1ms) begin transaction
1375
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", 107], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1376
+  (98.0ms) commit transaction
1377
+  (0.1ms) begin transaction
1378
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1379
+  (88.1ms) commit transaction
1380
+  (0.1ms) begin transaction
1381
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00], ["deactivated_by_id", 109], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:07:44 UTC +00:00]]
1382
+  (95.2ms) commit transaction
1383
+ Connecting to database specified by database.yml
1384
+ Connecting to database specified by database.yml
1385
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1386
+ Migrating to CreateUsers (20130402122537)
1387
+ Migrating to CreateProducts (20130403123944)
1388
+ Migrating to AddActivableToUsers (20130403135220)
1389
+ Migrating to CreateCategories (20130403185451)
1390
+ Migrating to AddActivableToCategories (20130403190146)
1391
+  (0.0ms) select sqlite_version(*)
1392
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1393
+  (0.0ms) begin transaction
1394
+ SQL (2.8ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:09 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:09 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:09 UTC +00:00]]
1395
+  (121.3ms) commit transaction
1396
+  (0.1ms) begin transaction
1397
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1398
+  (86.1ms) commit transaction
1399
+  (0.1ms) begin transaction
1400
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1401
+  (99.8ms) commit transaction
1402
+  (0.1ms) begin transaction
1403
+  (0.0ms) rollback transaction
1404
+  (0.0ms) begin transaction
1405
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1406
+  (103.8ms) commit transaction
1407
+  (0.1ms) begin transaction
1408
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", 111], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1409
+  (92.8ms) commit transaction
1410
+  (0.1ms) begin transaction
1411
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1412
+  (88.1ms) commit transaction
1413
+  (0.1ms) begin transaction
1414
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00], ["deactivated_by_id", 113], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:10 UTC +00:00]]
1415
+  (85.6ms) commit transaction
1416
+ Connecting to database specified by database.yml
1417
+ Connecting to database specified by database.yml
1418
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1419
+ Migrating to CreateUsers (20130402122537)
1420
+ Migrating to CreateProducts (20130403123944)
1421
+ Migrating to AddActivableToUsers (20130403135220)
1422
+ Migrating to CreateCategories (20130403185451)
1423
+ Migrating to AddActivableToCategories (20130403190146)
1424
+  (0.0ms) select sqlite_version(*)
1425
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1426
+  (0.0ms) begin transaction
1427
+ SQL (15.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00]]
1428
+  (128.0ms) commit transaction
1429
+  (0.1ms) begin transaction
1430
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00]]
1431
+  (87.8ms) commit transaction
1432
+  (0.1ms) begin transaction
1433
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00]]
1434
+  (87.7ms) commit transaction
1435
+  (0.0ms) begin transaction
1436
+  (0.0ms) rollback transaction
1437
+  (0.0ms) begin transaction
1438
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00]]
1439
+  (89.9ms) commit transaction
1440
+  (0.1ms) begin transaction
1441
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["activated_by_id", 115], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:56 UTC +00:00]]
1442
+  (93.5ms) commit transaction
1443
+  (0.1ms) begin transaction
1444
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00]]
1445
+  (100.0ms) commit transaction
1446
+  (0.1ms) begin transaction
1447
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00], ["deactivated_by_id", 117], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:08:57 UTC +00:00]]
1448
+  (85.5ms) commit transaction
1449
+ Connecting to database specified by database.yml
1450
+ Connecting to database specified by database.yml
1451
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1452
+ Migrating to CreateUsers (20130402122537)
1453
+ Migrating to CreateProducts (20130403123944)
1454
+ Migrating to AddActivableToUsers (20130403135220)
1455
+ Migrating to CreateCategories (20130403185451)
1456
+ Migrating to AddActivableToCategories (20130403190146)
1457
+  (0.0ms) select sqlite_version(*)
1458
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1459
+  (0.0ms) begin transaction
1460
+ SQL (15.6ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00]]
1461
+  (125.1ms) commit transaction
1462
+  (0.1ms) begin transaction
1463
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:09:45 UTC +00:00]]
1464
+  (87.3ms) commit transaction
1465
+  (0.1ms) begin transaction
1466
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00]]
1467
+  (98.6ms) commit transaction
1468
+  (0.0ms) begin transaction
1469
+  (0.0ms) rollback transaction
1470
+  (0.0ms) begin transaction
1471
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00]]
1472
+  (107.4ms) commit transaction
1473
+  (0.1ms) begin transaction
1474
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["activated_by_id", 119], ["active", true], ["created_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00]]
1475
+  (106.3ms) commit transaction
1476
+  (0.1ms) begin transaction
1477
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00]]
1478
+  (86.3ms) commit transaction
1479
+  (0.1ms) begin transaction
1480
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00], ["deactivated_by_id", 121], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:09:46 UTC +00:00]]
1481
+  (85.4ms) commit transaction
1482
+ Connecting to database specified by database.yml
1483
+ Connecting to database specified by database.yml
1484
+  (0.0ms) select sqlite_version(*)
1485
+  (123.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1486
+  (86.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1487
+  (27.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1488
+ Migrating to CreateUsers (20130402122537)
1489
+  (0.0ms) begin transaction
1490
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1491
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130402122537')
1492
+  (108.8ms) commit transaction
1493
+ Migrating to CreateProducts (20130403123944)
1494
+  (0.1ms) begin transaction
1495
+  (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1496
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403123944')
1497
+  (84.2ms) commit transaction
1498
+ Migrating to AddActivableToUsers (20130403135220)
1499
+  (0.1ms) begin transaction
1500
+  (0.4ms) ALTER TABLE "users" ADD "active" boolean DEFAULT 't'
1501
+  (0.2ms) ALTER TABLE "users" ADD "activated_at" datetime
1502
+  (0.2ms) ALTER TABLE "users" ADD "deactivated_at" datetime
1503
+  (0.2ms) ALTER TABLE "users" ADD "activated_by_id" integer
1504
+  (0.2ms) ALTER TABLE "users" ADD "deactivated_by_id" integer
1505
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403135220')
1506
+  (99.1ms) commit transaction
1507
+ Migrating to CreateCategories (20130403185451)
1508
+  (0.1ms) begin transaction
1509
+  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1510
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403185451')
1511
+  (84.1ms) commit transaction
1512
+ Migrating to AddActivableToCategories (20130403190146)
1513
+  (0.1ms) begin transaction
1514
+  (0.4ms) ALTER TABLE "categories" ADD "activated_at" datetime
1515
+  (0.2ms) ALTER TABLE "categories" ADD "deactivated_at" datetime
1516
+  (0.2ms) ALTER TABLE "categories" ADD "activated_by_id" integer
1517
+  (0.2ms) ALTER TABLE "categories" ADD "deactivated_by_id" integer
1518
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130403190146')
1519
+  (91.4ms) commit transaction
1520
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1521
+  (0.0ms) begin transaction
1522
+ SQL (15.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:52 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:46:52 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:46:52 UTC +00:00]]
1523
+  (125.0ms) commit transaction
1524
+  (0.1ms) begin transaction
1525
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1526
+  (85.5ms) commit transaction
1527
+  (0.1ms) begin transaction
1528
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", nil], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1529
+  (84.3ms) commit transaction
1530
+  (0.0ms) begin transaction
1531
+  (0.0ms) rollback transaction
1532
+  (0.0ms) begin transaction
1533
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1534
+  (91.1ms) commit transaction
1535
+  (0.1ms) begin transaction
1536
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", 1], ["active", true], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1537
+  (90.7ms) commit transaction
1538
+  (0.1ms) begin transaction
1539
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1540
+  (97.5ms) commit transaction
1541
+  (0.1ms) begin transaction
1542
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00], ["deactivated_by_id", 3], ["email", "another_user@nomail.com"], ["updated_at", Wed, 03 Apr 2013 19:46:53 UTC +00:00]]
1543
+  (83.5ms) commit transaction
1544
+ Connecting to database specified by database.yml
1545
+ Connecting to database specified by database.yml
1546
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1547
+ Migrating to CreateUsers (20130402122537)
1548
+ Migrating to CreateProducts (20130403123944)
1549
+ Migrating to AddActivableToUsers (20130403135220)
1550
+ Migrating to CreateCategories (20130403185451)
1551
+ Migrating to AddActivableToCategories (20130403190146)
1552
+  (0.0ms) select sqlite_version(*)
1553
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1554
+  (0.0ms) begin transaction
1555
+ SQL (75.6ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1556
+  (275.6ms) commit transaction
1557
+  (0.1ms) begin transaction
1558
+ SQL (0.4ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1559
+  (83.9ms) commit transaction
1560
+  (0.1ms) begin transaction
1561
+ SQL (0.5ms) INSERT INTO "categories" ("activated_at", "activated_by_id", "created_at", "deactivated_at", "deactivated_by_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_by_id", nil], ["name", "Eletronics"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1562
+  (85.9ms) commit transaction
1563
+  (0.1ms) begin transaction
1564
+  (0.0ms) rollback transaction
1565
+  (0.0ms) begin transaction
1566
+ SQL (0.3ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "user@nomail.com"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1567
+  (106.6ms) commit transaction
1568
+  (0.1ms) begin transaction
1569
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", 5], ["active", true], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1570
+  (90.4ms) commit transaction
1571
+  (0.1ms) begin transaction
1572
+ SQL (0.5ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", nil], ["deactivated_by_id", nil], ["email", "another_user@nomail.com"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1573
+  (85.1ms) commit transaction
1574
+  (0.1ms) begin transaction
1575
+ SQL (0.4ms) INSERT INTO "users" ("activated_at", "activated_by_id", "active", "created_at", "deactivated_at", "deactivated_by_id", "email", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["activated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["activated_by_id", nil], ["active", true], ["created_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00], ["deactivated_by_id", 7], ["email", "another_user@nomail.com"], ["updated_at", Thu, 04 Apr 2013 16:34:12 UTC +00:00]]
1576
+  (179.2ms) commit transaction