makers 4.0.0.4 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +1 -1
  3. data/README.md +5 -5
  4. data/Rakefile +1 -3
  5. data/lib/generators/makers/install/install_generator.rb +1 -6
  6. data/lib/makers.rb +8 -0
  7. data/lib/makers/maker.rb +1 -1
  8. data/lib/makers/railtie.rb +1 -6
  9. data/lib/makers/version.rb +1 -1
  10. metadata +13 -109
  11. data/test/dummy/Rakefile +0 -5
  12. data/test/dummy/app/assets/javascripts/application.js +0 -13
  13. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  14. data/test/dummy/app/controllers/application_controller.rb +0 -5
  15. data/test/dummy/app/helpers/application_helper.rb +0 -2
  16. data/test/dummy/app/models/post.rb +0 -5
  17. data/test/dummy/app/models/user.rb +0 -5
  18. data/test/dummy/app/views/layouts/application.html.erb +0 -12
  19. data/test/dummy/bin/bundle +0 -4
  20. data/test/dummy/bin/rails +0 -5
  21. data/test/dummy/bin/rake +0 -5
  22. data/test/dummy/bin/setup +0 -30
  23. data/test/dummy/config.ru +0 -4
  24. data/test/dummy/config/application.rb +0 -25
  25. data/test/dummy/config/boot.rb +0 -5
  26. data/test/dummy/config/database.yml +0 -10
  27. data/test/dummy/config/database.yml.travis +0 -3
  28. data/test/dummy/config/environment.rb +0 -5
  29. data/test/dummy/config/environments/development.rb +0 -41
  30. data/test/dummy/config/environments/production.rb +0 -79
  31. data/test/dummy/config/environments/test.rb +0 -42
  32. data/test/dummy/config/initializers/assets.rb +0 -11
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  34. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  36. data/test/dummy/config/initializers/inflections.rb +0 -16
  37. data/test/dummy/config/initializers/mime_types.rb +0 -4
  38. data/test/dummy/config/initializers/session_store.rb +0 -3
  39. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  40. data/test/dummy/config/locales/en.yml +0 -23
  41. data/test/dummy/config/routes.rb +0 -56
  42. data/test/dummy/config/secrets.yml +0 -22
  43. data/test/dummy/db/migrate/20140613221835_create_users.rb +0 -13
  44. data/test/dummy/db/migrate/20140615180954_create_posts.rb +0 -9
  45. data/test/dummy/db/schema.rb +0 -35
  46. data/test/dummy/log/development.log +0 -114
  47. data/test/dummy/log/test.log +0 -2698
  48. data/test/dummy/public/404.html +0 -61
  49. data/test/dummy/public/422.html +0 -61
  50. data/test/dummy/public/500.html +0 -60
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/test/makers.rb +0 -24
  53. data/test/generator_test.rb +0 -18
  54. data/test/maker_test.rb +0 -66
  55. data/test/test_helper.rb +0 -13
@@ -1,2698 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (25.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
-  (0.2ms) BEGIN
3
- -------------------------
4
- MakerTest: test_sequences
5
- -------------------------
6
-  (0.2ms) ROLLBACK
7
-  (0.1ms) BEGIN
8
- -------------------------
9
- MakerTest: test_overrides
10
- -------------------------
11
-  (0.2ms) ROLLBACK
12
-  (0.1ms) BEGIN
13
- ---------------------------
14
- MakerTest: test_definitions
15
- ---------------------------
16
-  (0.2ms) ROLLBACK
17
-  (0.2ms) BEGIN
18
- -----------------------
19
- MakerTest: test_aliases
20
- -----------------------
21
-  (0.1ms) ROLLBACK
22
-  (0.1ms) BEGIN
23
- -------------------------
24
- MakerTest: test_dependent
25
- -------------------------
26
-  (0.2ms) ROLLBACK
27
-  (0.3ms) BEGIN
28
- ----------------------------
29
- MakerTest: test_associations
30
- ----------------------------
31
-  (0.2ms) ROLLBACK
32
-  (0.1ms) BEGIN
33
- ---------------------------
34
- MakerTest: test_inheritance
35
- ---------------------------
36
-  (0.4ms) ROLLBACK
37
-  (0.2ms) BEGIN
38
- ---------------------------
39
- GeneratorTest: test_install
40
- ---------------------------
41
-  (0.3ms) ROLLBACK
42
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
43
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
44
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
- Migrating to CreateUsers (20140613221835)
46
-  (0.1ms) BEGIN
47
-  (2.7ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
48
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
49
-  (0.6ms) COMMIT
50
- Migrating to CreatePosts (20140615180954)
51
-  (0.3ms) BEGIN
52
-  (2.2ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "mentionable_id" integer, "mentionable_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
53
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
54
-  (0.4ms) COMMIT
55
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
56
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
57
- FROM pg_constraint c
58
- JOIN pg_class t1 ON c.conrelid = t1.oid
59
- JOIN pg_class t2 ON c.confrelid = t2.oid
60
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
61
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
62
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
63
- WHERE c.contype = 'f'
64
- AND t1.relname = 'posts'
65
- AND t3.nspname = ANY (current_schemas(false))
66
- ORDER BY c.conname
67
- 
68
-  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
69
- FROM pg_constraint c
70
- JOIN pg_class t1 ON c.conrelid = t1.oid
71
- JOIN pg_class t2 ON c.confrelid = t2.oid
72
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
73
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
74
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
75
- WHERE c.contype = 'f'
76
- AND t1.relname = 'users'
77
- AND t3.nspname = ANY (current_schemas(false))
78
- ORDER BY c.conname
79
-
80
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
-  (0.2ms) BEGIN
82
- -------------------------
83
- MakerTest: test_dependent
84
- -------------------------
85
-  (0.4ms) ROLLBACK
86
-  (0.1ms) BEGIN
87
- -----------------------
88
- MakerTest: test_aliases
89
- -----------------------
90
-  (0.2ms) ROLLBACK
91
-  (0.1ms) BEGIN
92
- ---------------------------
93
- MakerTest: test_inheritance
94
- ---------------------------
95
-  (0.2ms) ROLLBACK
96
-  (0.2ms) BEGIN
97
- -------------------------
98
- MakerTest: test_overrides
99
- -------------------------
100
-  (0.2ms) ROLLBACK
101
-  (0.2ms) BEGIN
102
- -------------------------
103
- MakerTest: test_sequences
104
- -------------------------
105
-  (0.2ms) ROLLBACK
106
-  (0.1ms) BEGIN
107
- ----------------------------
108
- MakerTest: test_associations
109
- ----------------------------
110
-  (0.2ms) ROLLBACK
111
-  (0.2ms) BEGIN
112
- ---------------------------
113
- MakerTest: test_definitions
114
- ---------------------------
115
-  (0.1ms) ROLLBACK
116
-  (0.1ms) BEGIN
117
- ---------------------------
118
- GeneratorTest: test_install
119
- ---------------------------
120
-  (0.2ms) ROLLBACK
121
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
122
-  (0.2ms) BEGIN
123
- ----------------------------
124
- MakerTest: test_associations
125
- ----------------------------
126
-  (0.3ms) ROLLBACK
127
-  (0.1ms) BEGIN
128
- ---------------------------
129
- MakerTest: test_inheritance
130
- ---------------------------
131
-  (0.2ms) ROLLBACK
132
-  (0.1ms) BEGIN
133
- -------------------------
134
- MakerTest: test_overrides
135
- -------------------------
136
-  (0.2ms) ROLLBACK
137
-  (0.1ms) BEGIN
138
- ---------------------------
139
- MakerTest: test_definitions
140
- ---------------------------
141
-  (0.1ms) ROLLBACK
142
-  (0.2ms) BEGIN
143
- -------------------------
144
- MakerTest: test_dependent
145
- -------------------------
146
-  (0.2ms) ROLLBACK
147
-  (0.1ms) BEGIN
148
- -----------------------
149
- MakerTest: test_aliases
150
- -----------------------
151
-  (0.1ms) ROLLBACK
152
-  (0.1ms) BEGIN
153
- -------------------------
154
- MakerTest: test_sequences
155
- -------------------------
156
-  (0.2ms) ROLLBACK
157
-  (0.1ms) BEGIN
158
- ---------------------------
159
- GeneratorTest: test_install
160
- ---------------------------
161
-  (0.2ms) ROLLBACK
162
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
163
-  (0.2ms) BEGIN
164
- -------------------------
165
- MakerTest: test_sequences
166
- -------------------------
167
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
168
-  (0.2ms) BEGIN
169
- ---------------------------
170
- MakerTest: test_definitions
171
- ---------------------------
172
-  (0.2ms) ROLLBACK
173
-  (0.1ms) BEGIN
174
- -------------------------
175
- MakerTest: test_overrides
176
- -------------------------
177
-  (0.3ms) ROLLBACK
178
-  (0.1ms) BEGIN
179
- -------------------------
180
- MakerTest: test_dependent
181
- -------------------------
182
-  (0.2ms) ROLLBACK
183
-  (0.1ms) BEGIN
184
- ----------------------------
185
- MakerTest: test_associations
186
- ----------------------------
187
-  (0.2ms) ROLLBACK
188
-  (0.1ms) BEGIN
189
- -------------------------
190
- MakerTest: test_sequences
191
- -------------------------
192
-  (0.2ms) ROLLBACK
193
-  (0.1ms) BEGIN
194
- ---------------------------
195
- MakerTest: test_inheritance
196
- ---------------------------
197
-  (0.2ms) ROLLBACK
198
-  (0.1ms) BEGIN
199
- -----------------------
200
- MakerTest: test_aliases
201
- -----------------------
202
-  (0.1ms) ROLLBACK
203
-  (0.2ms) BEGIN
204
- ---------------------------
205
- GeneratorTest: test_install
206
- ---------------------------
207
-  (0.2ms) ROLLBACK
208
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
209
-  (0.2ms) BEGIN
210
- -------------------------
211
- MakerTest: test_sequences
212
- -------------------------
213
-  (0.1ms) SAVEPOINT active_record_1
214
- SQL (6.9ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-06 22:01:27.025839"], ["updated_at", "2016-12-06 22:01:27.025839"]]
215
-  (0.1ms) RELEASE SAVEPOINT active_record_1
216
-  (0.1ms) SAVEPOINT active_record_1
217
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-06 22:01:27.036747"], ["updated_at", "2016-12-06 22:01:27.036747"]]
218
-  (0.1ms) RELEASE SAVEPOINT active_record_1
219
-  (0.2ms) ROLLBACK
220
-  (0.1ms) BEGIN
221
- -------------------------
222
- MakerTest: test_dependent
223
- -------------------------
224
-  (0.1ms) SAVEPOINT active_record_1
225
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-06 22:01:27.039033"], ["updated_at", "2016-12-06 22:01:27.039033"]]
226
-  (0.2ms) RELEASE SAVEPOINT active_record_1
227
-  (0.1ms) ROLLBACK
228
-  (0.1ms) BEGIN
229
- -------------------------
230
- MakerTest: test_overrides
231
- -------------------------
232
-  (0.1ms) SAVEPOINT active_record_1
233
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-06 22:01:27.041380"], ["updated_at", "2016-12-06 22:01:27.041380"]]
234
-  (0.1ms) RELEASE SAVEPOINT active_record_1
235
-  (0.1ms) SAVEPOINT active_record_1
236
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-06 22:01:27.042634"], ["updated_at", "2016-12-06 22:01:27.042634"]]
237
-  (0.1ms) RELEASE SAVEPOINT active_record_1
238
-  (0.1ms) SAVEPOINT active_record_1
239
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-06 22:01:27.043876"], ["updated_at", "2016-12-06 22:01:27.043876"]]
240
-  (0.2ms) RELEASE SAVEPOINT active_record_1
241
-  (0.1ms) SAVEPOINT active_record_1
242
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-06 22:01:27.045161"], ["updated_at", "2016-12-06 22:01:27.045161"]]
243
-  (0.1ms) RELEASE SAVEPOINT active_record_1
244
-  (0.2ms) ROLLBACK
245
-  (0.1ms) BEGIN
246
- ---------------------------
247
- MakerTest: test_inheritance
248
- ---------------------------
249
-  (0.1ms) SAVEPOINT active_record_1
250
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["age", 9], ["created_at", "2016-12-06 22:01:27.047191"], ["updated_at", "2016-12-06 22:01:27.047191"]]
251
-  (0.1ms) RELEASE SAVEPOINT active_record_1
252
-  (0.1ms) ROLLBACK
253
-  (0.1ms) BEGIN
254
- ----------------------------
255
- MakerTest: test_associations
256
- ----------------------------
257
-  (0.1ms) ROLLBACK
258
-  (0.1ms) BEGIN
259
- -----------------------
260
- MakerTest: test_aliases
261
- -----------------------
262
-  (0.1ms) ROLLBACK
263
-  (0.1ms) BEGIN
264
- ---------------------------
265
- MakerTest: test_definitions
266
- ---------------------------
267
-  (0.1ms) ROLLBACK
268
-  (0.1ms) BEGIN
269
- ---------------------------
270
- GeneratorTest: test_install
271
- ---------------------------
272
-  (0.2ms) ROLLBACK
273
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
274
-  (0.2ms) BEGIN
275
- -------------------------
276
- MakerTest: test_sequences
277
- -------------------------
278
-  (0.1ms) ROLLBACK
279
-  (0.1ms) BEGIN
280
- ---------------------------
281
- MakerTest: test_inheritance
282
- ---------------------------
283
-  (0.1ms) ROLLBACK
284
-  (0.2ms) BEGIN
285
- ----------------------------
286
- MakerTest: test_associations
287
- ----------------------------
288
-  (0.1ms) ROLLBACK
289
-  (0.1ms) BEGIN
290
- ---------------------------
291
- MakerTest: test_definitions
292
- ---------------------------
293
-  (0.1ms) ROLLBACK
294
-  (0.2ms) BEGIN
295
- -----------------------
296
- MakerTest: test_aliases
297
- -----------------------
298
-  (0.1ms) ROLLBACK
299
-  (0.1ms) BEGIN
300
- -------------------------
301
- MakerTest: test_overrides
302
- -------------------------
303
-  (0.1ms) ROLLBACK
304
-  (0.1ms) BEGIN
305
- -------------------------
306
- MakerTest: test_dependent
307
- -------------------------
308
-  (0.2ms) ROLLBACK
309
-  (0.1ms) BEGIN
310
- ---------------------------
311
- GeneratorTest: test_install
312
- ---------------------------
313
-  (0.1ms) ROLLBACK
314
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
315
-  (0.2ms) BEGIN
316
- ----------------------------
317
- MakerTest: test_associations
318
- ----------------------------
319
-  (0.2ms) ROLLBACK
320
-  (0.1ms) BEGIN
321
- -------------------------
322
- MakerTest: test_sequences
323
- -------------------------
324
-  (0.1ms) ROLLBACK
325
-  (0.1ms) BEGIN
326
- -----------------------
327
- MakerTest: test_aliases
328
- -----------------------
329
-  (0.1ms) ROLLBACK
330
-  (0.1ms) BEGIN
331
- -------------------------
332
- MakerTest: test_dependent
333
- -------------------------
334
-  (0.1ms) ROLLBACK
335
-  (0.1ms) BEGIN
336
- ---------------------------
337
- MakerTest: test_definitions
338
- ---------------------------
339
-  (0.1ms) ROLLBACK
340
-  (0.1ms) BEGIN
341
- -------------------------
342
- MakerTest: test_overrides
343
- -------------------------
344
-  (0.1ms) ROLLBACK
345
-  (0.1ms) BEGIN
346
- ---------------------------
347
- MakerTest: test_inheritance
348
- ---------------------------
349
-  (0.1ms) ROLLBACK
350
-  (0.1ms) BEGIN
351
- ---------------------------
352
- GeneratorTest: test_install
353
- ---------------------------
354
-  (0.2ms) ROLLBACK
355
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
356
-  (0.2ms) BEGIN
357
- -------------------------
358
- MakerTest: test_dependent
359
- -------------------------
360
-  (0.2ms) ROLLBACK
361
-  (0.1ms) BEGIN
362
- -------------------------
363
- MakerTest: test_sequences
364
- -------------------------
365
-  (0.1ms) ROLLBACK
366
-  (0.2ms) BEGIN
367
- ---------------------------
368
- MakerTest: test_definitions
369
- ---------------------------
370
-  (0.1ms) ROLLBACK
371
-  (0.1ms) BEGIN
372
- -------------------------
373
- MakerTest: test_overrides
374
- -------------------------
375
-  (0.1ms) ROLLBACK
376
-  (0.1ms) BEGIN
377
- ---------------------------
378
- MakerTest: test_inheritance
379
- ---------------------------
380
-  (0.1ms) ROLLBACK
381
-  (0.1ms) BEGIN
382
- -----------------------
383
- MakerTest: test_aliases
384
- -----------------------
385
-  (0.2ms) ROLLBACK
386
-  (0.2ms) BEGIN
387
- ----------------------------
388
- MakerTest: test_associations
389
- ----------------------------
390
-  (0.2ms) ROLLBACK
391
-  (0.1ms) BEGIN
392
- ---------------------------
393
- GeneratorTest: test_install
394
- ---------------------------
395
-  (0.2ms) ROLLBACK
396
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
397
-  (0.2ms) BEGIN
398
- -------------------------
399
- MakerTest: test_overrides
400
- -------------------------
401
-  (0.2ms) ROLLBACK
402
-  (0.2ms) BEGIN
403
- ----------------------------
404
- MakerTest: test_associations
405
- ----------------------------
406
-  (0.2ms) ROLLBACK
407
-  (0.1ms) BEGIN
408
- -----------------------
409
- MakerTest: test_aliases
410
- -----------------------
411
-  (0.2ms) ROLLBACK
412
-  (0.1ms) BEGIN
413
- ---------------------------
414
- MakerTest: test_inheritance
415
- ---------------------------
416
-  (0.2ms) ROLLBACK
417
-  (0.1ms) BEGIN
418
- -------------------------
419
- MakerTest: test_sequences
420
- -------------------------
421
-  (0.2ms) ROLLBACK
422
-  (0.2ms) BEGIN
423
- -------------------------
424
- MakerTest: test_dependent
425
- -------------------------
426
-  (0.1ms) ROLLBACK
427
-  (0.1ms) BEGIN
428
- ---------------------------
429
- MakerTest: test_definitions
430
- ---------------------------
431
-  (0.1ms) ROLLBACK
432
-  (0.1ms) BEGIN
433
- ---------------------------
434
- GeneratorTest: test_install
435
- ---------------------------
436
-  (0.2ms) ROLLBACK
437
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
438
-  (0.2ms) BEGIN
439
- ---------------------------
440
- GeneratorTest: test_install
441
- ---------------------------
442
-  (0.2ms) ROLLBACK
443
-  (0.1ms) BEGIN
444
- ----------------------------
445
- MakerTest: test_associations
446
- ----------------------------
447
-  (0.2ms) ROLLBACK
448
-  (0.1ms) BEGIN
449
- -------------------------
450
- MakerTest: test_overrides
451
- -------------------------
452
-  (0.2ms) ROLLBACK
453
-  (0.1ms) BEGIN
454
- -------------------------
455
- MakerTest: test_dependent
456
- -------------------------
457
-  (0.1ms) ROLLBACK
458
-  (0.1ms) BEGIN
459
- -----------------------
460
- MakerTest: test_aliases
461
- -----------------------
462
-  (0.1ms) ROLLBACK
463
-  (0.1ms) BEGIN
464
- -------------------------
465
- MakerTest: test_sequences
466
- -------------------------
467
-  (0.2ms) ROLLBACK
468
-  (0.1ms) BEGIN
469
- ---------------------------
470
- MakerTest: test_definitions
471
- ---------------------------
472
-  (0.2ms) ROLLBACK
473
-  (0.1ms) BEGIN
474
- ---------------------------
475
- MakerTest: test_inheritance
476
- ---------------------------
477
-  (0.1ms) ROLLBACK
478
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
479
-  (0.2ms) BEGIN
480
- ---------------------------
481
- GeneratorTest: test_install
482
- ---------------------------
483
-  (0.2ms) ROLLBACK
484
-  (0.2ms) BEGIN
485
- -------------------------
486
- MakerTest: test_dependent
487
- -------------------------
488
-  (0.2ms) ROLLBACK
489
-  (0.1ms) BEGIN
490
- ---------------------------
491
- MakerTest: test_definitions
492
- ---------------------------
493
-  (0.1ms) ROLLBACK
494
-  (0.2ms) BEGIN
495
- ---------------------------
496
- MakerTest: test_inheritance
497
- ---------------------------
498
-  (0.1ms) ROLLBACK
499
-  (0.1ms) BEGIN
500
- -------------------------
501
- MakerTest: test_overrides
502
- -------------------------
503
-  (0.1ms) ROLLBACK
504
-  (0.1ms) BEGIN
505
- -------------------------
506
- MakerTest: test_sequences
507
- -------------------------
508
-  (0.2ms) ROLLBACK
509
-  (0.1ms) BEGIN
510
- -----------------------
511
- MakerTest: test_aliases
512
- -----------------------
513
-  (0.1ms) ROLLBACK
514
-  (0.1ms) BEGIN
515
- ----------------------------
516
- MakerTest: test_associations
517
- ----------------------------
518
-  (0.1ms) ROLLBACK
519
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
520
-  (0.2ms) BEGIN
521
- ---------------------------
522
- MakerTest: test_definitions
523
- ---------------------------
524
-  (0.1ms) ROLLBACK
525
-  (0.1ms) BEGIN
526
- -------------------------
527
- MakerTest: test_sequences
528
- -------------------------
529
-  (0.2ms) ROLLBACK
530
-  (0.1ms) BEGIN
531
- ----------------------------
532
- MakerTest: test_associations
533
- ----------------------------
534
-  (0.3ms) ROLLBACK
535
-  (0.1ms) BEGIN
536
- -------------------------
537
- MakerTest: test_overrides
538
- -------------------------
539
-  (0.3ms) ROLLBACK
540
-  (0.1ms) BEGIN
541
- -------------------------
542
- MakerTest: test_dependent
543
- -------------------------
544
-  (0.2ms) ROLLBACK
545
-  (0.1ms) BEGIN
546
- -----------------------
547
- MakerTest: test_aliases
548
- -----------------------
549
-  (0.1ms) ROLLBACK
550
-  (0.1ms) BEGIN
551
- ---------------------------
552
- MakerTest: test_inheritance
553
- ---------------------------
554
-  (0.2ms) ROLLBACK
555
-  (0.1ms) BEGIN
556
- ---------------------------
557
- GeneratorTest: test_install
558
- ---------------------------
559
-  (0.3ms) ROLLBACK
560
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
561
-  (0.3ms) BEGIN
562
- ---------------------------
563
- GeneratorTest: test_install
564
- ---------------------------
565
-  (0.2ms) ROLLBACK
566
-  (0.1ms) BEGIN
567
- -----------------------
568
- MakerTest: test_aliases
569
- -----------------------
570
-  (0.1ms) ROLLBACK
571
-  (0.1ms) BEGIN
572
- ----------------------------
573
- MakerTest: test_associations
574
- ----------------------------
575
-  (0.2ms) ROLLBACK
576
-  (0.2ms) BEGIN
577
- -------------------------
578
- MakerTest: test_sequences
579
- -------------------------
580
-  (0.2ms) ROLLBACK
581
-  (0.1ms) BEGIN
582
- ---------------------------
583
- MakerTest: test_definitions
584
- ---------------------------
585
-  (0.1ms) ROLLBACK
586
-  (0.1ms) BEGIN
587
- ---------------------------
588
- MakerTest: test_inheritance
589
- ---------------------------
590
-  (0.2ms) ROLLBACK
591
-  (0.1ms) BEGIN
592
- -------------------------
593
- MakerTest: test_dependent
594
- -------------------------
595
-  (0.2ms) ROLLBACK
596
-  (0.1ms) BEGIN
597
- -------------------------
598
- MakerTest: test_overrides
599
- -------------------------
600
-  (0.2ms) ROLLBACK
601
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
602
-  (0.2ms) BEGIN
603
- ---------------------------
604
- GeneratorTest: test_install
605
- ---------------------------
606
-  (0.2ms) ROLLBACK
607
-  (0.1ms) BEGIN
608
- -----------------------
609
- MakerTest: test_aliases
610
- -----------------------
611
-  (0.2ms) ROLLBACK
612
-  (0.1ms) BEGIN
613
- -------------------------
614
- MakerTest: test_dependent
615
- -------------------------
616
-  (0.2ms) ROLLBACK
617
-  (0.1ms) BEGIN
618
- ---------------------------
619
- MakerTest: test_inheritance
620
- ---------------------------
621
-  (0.1ms) ROLLBACK
622
-  (0.1ms) BEGIN
623
- ---------------------------
624
- MakerTest: test_definitions
625
- ---------------------------
626
-  (0.1ms) ROLLBACK
627
-  (0.1ms) BEGIN
628
- -------------------------
629
- MakerTest: test_sequences
630
- -------------------------
631
-  (0.1ms) ROLLBACK
632
-  (0.1ms) BEGIN
633
- ----------------------------
634
- MakerTest: test_associations
635
- ----------------------------
636
-  (0.1ms) ROLLBACK
637
-  (0.1ms) BEGIN
638
- -------------------------
639
- MakerTest: test_overrides
640
- -------------------------
641
-  (0.1ms) ROLLBACK
642
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
643
-  (0.2ms) BEGIN
644
- ---------------------------
645
- GeneratorTest: test_install
646
- ---------------------------
647
-  (0.1ms) ROLLBACK
648
-  (0.2ms) BEGIN
649
- ---------------------------
650
- MakerTest: test_definitions
651
- ---------------------------
652
-  (0.1ms) ROLLBACK
653
-  (0.1ms) BEGIN
654
- ----------------------------
655
- MakerTest: test_associations
656
- ----------------------------
657
-  (0.2ms) ROLLBACK
658
-  (0.2ms) BEGIN
659
- -------------------------
660
- MakerTest: test_dependent
661
- -------------------------
662
-  (0.2ms) ROLLBACK
663
-  (0.2ms) BEGIN
664
- -----------------------
665
- MakerTest: test_aliases
666
- -----------------------
667
-  (0.1ms) ROLLBACK
668
-  (0.1ms) BEGIN
669
- ---------------------------
670
- MakerTest: test_inheritance
671
- ---------------------------
672
-  (0.1ms) ROLLBACK
673
-  (0.1ms) BEGIN
674
- -------------------------
675
- MakerTest: test_overrides
676
- -------------------------
677
-  (0.1ms) ROLLBACK
678
-  (0.1ms) BEGIN
679
- -------------------------
680
- MakerTest: test_sequences
681
- -------------------------
682
-  (0.2ms) ROLLBACK
683
- ActiveRecord::SchemaMigration Load (6.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
684
-  (0.2ms) BEGIN
685
- ---------------------------
686
- GeneratorTest: test_install
687
- ---------------------------
688
-  (0.2ms) ROLLBACK
689
-  (0.1ms) BEGIN
690
- -----------------------
691
- MakerTest: test_aliases
692
- -----------------------
693
-  (0.1ms) ROLLBACK
694
-  (0.1ms) BEGIN
695
- ----------------------------
696
- MakerTest: test_associations
697
- ----------------------------
698
-  (0.1ms) ROLLBACK
699
-  (0.1ms) BEGIN
700
- -------------------------
701
- MakerTest: test_dependent
702
- -------------------------
703
-  (0.1ms) ROLLBACK
704
-  (0.1ms) BEGIN
705
- -------------------------
706
- MakerTest: test_sequences
707
- -------------------------
708
-  (0.1ms) ROLLBACK
709
-  (0.1ms) BEGIN
710
- -------------------------
711
- MakerTest: test_overrides
712
- -------------------------
713
-  (0.1ms) ROLLBACK
714
-  (0.1ms) BEGIN
715
- ---------------------------
716
- MakerTest: test_inheritance
717
- ---------------------------
718
-  (0.1ms) ROLLBACK
719
-  (0.1ms) BEGIN
720
- ---------------------------
721
- MakerTest: test_definitions
722
- ---------------------------
723
-  (0.2ms) ROLLBACK
724
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
725
-  (0.2ms) BEGIN
726
- ----------------------------
727
- MakerTest: test_associations
728
- ----------------------------
729
-  (0.1ms) ROLLBACK
730
-  (0.1ms) BEGIN
731
- -----------------------
732
- MakerTest: test_aliases
733
- -----------------------
734
-  (0.1ms) ROLLBACK
735
-  (0.1ms) BEGIN
736
- -------------------------
737
- MakerTest: test_sequences
738
- -------------------------
739
-  (0.1ms) ROLLBACK
740
-  (0.2ms) BEGIN
741
- ---------------------------
742
- MakerTest: test_definitions
743
- ---------------------------
744
-  (0.1ms) ROLLBACK
745
-  (0.1ms) BEGIN
746
- ---------------------------
747
- MakerTest: test_inheritance
748
- ---------------------------
749
-  (0.1ms) ROLLBACK
750
-  (0.1ms) BEGIN
751
- -------------------------
752
- MakerTest: test_overrides
753
- -------------------------
754
-  (0.1ms) ROLLBACK
755
-  (0.1ms) BEGIN
756
- -------------------------
757
- MakerTest: test_dependent
758
- -------------------------
759
-  (0.1ms) ROLLBACK
760
-  (0.1ms) BEGIN
761
- ---------------------------
762
- GeneratorTest: test_install
763
- ---------------------------
764
-  (0.1ms) ROLLBACK
765
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
766
-  (0.2ms) BEGIN
767
- ---------------------------
768
- GeneratorTest: test_install
769
- ---------------------------
770
-  (0.2ms) ROLLBACK
771
-  (0.1ms) BEGIN
772
- -------------------------
773
- MakerTest: test_dependent
774
- -------------------------
775
-  (0.2ms) SAVEPOINT active_record_1
776
- SQL (0.6ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-07 04:05:43.102936"], ["updated_at", "2016-12-07 04:05:43.102936"]]
777
- SQL (1.9ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 9], ["created_at", "2016-12-07 04:05:43.107429"], ["updated_at", "2016-12-07 04:05:43.107429"]]
778
-  (0.1ms) RELEASE SAVEPOINT active_record_1
779
-  (0.2ms) ROLLBACK
780
-  (0.1ms) BEGIN
781
- -----------------------
782
- MakerTest: test_aliases
783
- -----------------------
784
-  (0.2ms) ROLLBACK
785
-  (0.1ms) BEGIN
786
- -------------------------
787
- MakerTest: test_sequences
788
- -------------------------
789
-  (0.2ms) SAVEPOINT active_record_1
790
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-07 04:05:43.114287"], ["updated_at", "2016-12-07 04:05:43.114287"]]
791
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 10], ["created_at", "2016-12-07 04:05:43.115287"], ["updated_at", "2016-12-07 04:05:43.115287"]]
792
-  (0.1ms) RELEASE SAVEPOINT active_record_1
793
-  (0.1ms) SAVEPOINT active_record_1
794
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-07 04:05:43.117066"], ["updated_at", "2016-12-07 04:05:43.117066"]]
795
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 11], ["created_at", "2016-12-07 04:05:43.117784"], ["updated_at", "2016-12-07 04:05:43.117784"]]
796
-  (0.2ms) RELEASE SAVEPOINT active_record_1
797
-  (0.1ms) ROLLBACK
798
-  (0.1ms) BEGIN
799
- ---------------------------
800
- MakerTest: test_inheritance
801
- ---------------------------
802
-  (0.1ms) SAVEPOINT active_record_1
803
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-07 04:05:43.120445"], ["updated_at", "2016-12-07 04:05:43.120445"]]
804
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 12], ["created_at", "2016-12-07 04:05:43.121503"], ["updated_at", "2016-12-07 04:05:43.121503"]]
805
-  (0.2ms) RELEASE SAVEPOINT active_record_1
806
-  (0.2ms) ROLLBACK
807
-  (0.1ms) BEGIN
808
- ---------------------------
809
- MakerTest: test_definitions
810
- ---------------------------
811
-  (0.1ms) ROLLBACK
812
-  (0.1ms) BEGIN
813
- ----------------------------
814
- MakerTest: test_associations
815
- ----------------------------
816
-  (0.1ms) SAVEPOINT active_record_1
817
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 04:05:43.124957"], ["updated_at", "2016-12-07 04:05:43.124957"]]
818
-  (0.1ms) RELEASE SAVEPOINT active_record_1
819
-  (0.1ms) SAVEPOINT active_record_1
820
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 04:05:43.126274"], ["updated_at", "2016-12-07 04:05:43.126274"]]
821
-  (0.2ms) RELEASE SAVEPOINT active_record_1
822
-  (0.1ms) ROLLBACK
823
-  (0.2ms) BEGIN
824
- -------------------------
825
- MakerTest: test_overrides
826
- -------------------------
827
-  (0.1ms) SAVEPOINT active_record_1
828
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-07 04:05:43.129678"], ["updated_at", "2016-12-07 04:05:43.129678"]]
829
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 13], ["created_at", "2016-12-07 04:05:43.130399"], ["updated_at", "2016-12-07 04:05:43.130399"]]
830
-  (0.1ms) RELEASE SAVEPOINT active_record_1
831
-  (0.1ms) SAVEPOINT active_record_1
832
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-07 04:05:43.131886"], ["updated_at", "2016-12-07 04:05:43.131886"]]
833
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 14], ["created_at", "2016-12-07 04:05:43.132591"], ["updated_at", "2016-12-07 04:05:43.132591"]]
834
-  (0.1ms) RELEASE SAVEPOINT active_record_1
835
-  (0.1ms) SAVEPOINT active_record_1
836
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-07 04:05:43.134080"], ["updated_at", "2016-12-07 04:05:43.134080"]]
837
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 15], ["created_at", "2016-12-07 04:05:43.134786"], ["updated_at", "2016-12-07 04:05:43.134786"]]
838
-  (0.1ms) RELEASE SAVEPOINT active_record_1
839
-  (0.1ms) SAVEPOINT active_record_1
840
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-07 04:05:43.136213"], ["updated_at", "2016-12-07 04:05:43.136213"]]
841
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 16], ["created_at", "2016-12-07 04:05:43.136904"], ["updated_at", "2016-12-07 04:05:43.136904"]]
842
-  (0.2ms) RELEASE SAVEPOINT active_record_1
843
-  (0.2ms) ROLLBACK
844
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
845
-  (0.2ms) BEGIN
846
- -------------------------
847
- MakerTest: test_sequences
848
- -------------------------
849
-  (0.2ms) SAVEPOINT active_record_1
850
- SQL (6.7ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-07 12:49:09.542239"], ["updated_at", "2016-12-07 12:49:09.542239"]]
851
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 17], ["created_at", "2016-12-07 12:49:09.553180"], ["updated_at", "2016-12-07 12:49:09.553180"]]
852
-  (0.2ms) RELEASE SAVEPOINT active_record_1
853
-  (0.1ms) SAVEPOINT active_record_1
854
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-07 12:49:09.555813"], ["updated_at", "2016-12-07 12:49:09.555813"]]
855
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 18], ["created_at", "2016-12-07 12:49:09.556552"], ["updated_at", "2016-12-07 12:49:09.556552"]]
856
-  (0.1ms) RELEASE SAVEPOINT active_record_1
857
-  (0.2ms) ROLLBACK
858
-  (0.1ms) BEGIN
859
- ---------------------------
860
- MakerTest: test_definitions
861
- ---------------------------
862
-  (0.1ms) ROLLBACK
863
-  (0.1ms) BEGIN
864
- ----------------------------
865
- MakerTest: test_associations
866
- ----------------------------
867
-  (0.1ms) SAVEPOINT active_record_1
868
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 12:49:09.559995"], ["updated_at", "2016-12-07 12:49:09.559995"]]
869
-  (0.1ms) RELEASE SAVEPOINT active_record_1
870
-  (0.1ms) SAVEPOINT active_record_1
871
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 12:49:09.561316"], ["updated_at", "2016-12-07 12:49:09.561316"]]
872
-  (0.1ms) RELEASE SAVEPOINT active_record_1
873
-  (0.2ms) ROLLBACK
874
-  (0.1ms) BEGIN
875
- -------------------------
876
- MakerTest: test_overrides
877
- -------------------------
878
-  (0.1ms) SAVEPOINT active_record_1
879
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-07 12:49:09.564977"], ["updated_at", "2016-12-07 12:49:09.564977"]]
880
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 19], ["created_at", "2016-12-07 12:49:09.565758"], ["updated_at", "2016-12-07 12:49:09.565758"]]
881
-  (0.1ms) RELEASE SAVEPOINT active_record_1
882
-  (0.1ms) SAVEPOINT active_record_1
883
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-07 12:49:09.567259"], ["updated_at", "2016-12-07 12:49:09.567259"]]
884
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 20], ["created_at", "2016-12-07 12:49:09.567964"], ["updated_at", "2016-12-07 12:49:09.567964"]]
885
-  (0.2ms) RELEASE SAVEPOINT active_record_1
886
-  (0.2ms) SAVEPOINT active_record_1
887
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-07 12:49:09.569537"], ["updated_at", "2016-12-07 12:49:09.569537"]]
888
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 21], ["created_at", "2016-12-07 12:49:09.570222"], ["updated_at", "2016-12-07 12:49:09.570222"]]
889
-  (0.2ms) RELEASE SAVEPOINT active_record_1
890
-  (0.2ms) SAVEPOINT active_record_1
891
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-07 12:49:09.571985"], ["updated_at", "2016-12-07 12:49:09.571985"]]
892
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 22], ["created_at", "2016-12-07 12:49:09.572743"], ["updated_at", "2016-12-07 12:49:09.572743"]]
893
-  (0.2ms) RELEASE SAVEPOINT active_record_1
894
-  (0.2ms) ROLLBACK
895
-  (0.1ms) BEGIN
896
- -------------------------
897
- MakerTest: test_dependent
898
- -------------------------
899
-  (0.1ms) SAVEPOINT active_record_1
900
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-07 12:49:09.575381"], ["updated_at", "2016-12-07 12:49:09.575381"]]
901
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 23], ["created_at", "2016-12-07 12:49:09.576170"], ["updated_at", "2016-12-07 12:49:09.576170"]]
902
-  (0.2ms) RELEASE SAVEPOINT active_record_1
903
-  (0.2ms) ROLLBACK
904
-  (0.1ms) BEGIN
905
- -----------------------
906
- MakerTest: test_aliases
907
- -----------------------
908
-  (0.1ms) ROLLBACK
909
-  (0.1ms) BEGIN
910
- ---------------------------
911
- MakerTest: test_inheritance
912
- ---------------------------
913
-  (0.1ms) SAVEPOINT active_record_1
914
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-07 12:49:09.579373"], ["updated_at", "2016-12-07 12:49:09.579373"]]
915
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 24], ["created_at", "2016-12-07 12:49:09.580303"], ["updated_at", "2016-12-07 12:49:09.580303"]]
916
-  (0.1ms) RELEASE SAVEPOINT active_record_1
917
-  (0.2ms) ROLLBACK
918
-  (0.1ms) BEGIN
919
- ---------------------------
920
- GeneratorTest: test_install
921
- ---------------------------
922
-  (0.2ms) ROLLBACK
923
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
924
-  (0.2ms) BEGIN
925
- ---------------------------
926
- GeneratorTest: test_install
927
- ---------------------------
928
-  (0.2ms) ROLLBACK
929
-  (0.1ms) BEGIN
930
- -------------------------
931
- MakerTest: test_dependent
932
- -------------------------
933
-  (0.2ms) SAVEPOINT active_record_1
934
- SQL (0.7ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-07 20:21:57.497565"], ["updated_at", "2016-12-07 20:21:57.497565"]]
935
- SQL (0.4ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 25], ["created_at", "2016-12-07 20:21:57.502208"], ["updated_at", "2016-12-07 20:21:57.502208"]]
936
-  (0.1ms) RELEASE SAVEPOINT active_record_1
937
-  (0.2ms) ROLLBACK
938
-  (0.1ms) BEGIN
939
- -------------------------
940
- MakerTest: test_sequences
941
- -------------------------
942
-  (0.2ms) SAVEPOINT active_record_1
943
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-07 20:21:57.506623"], ["updated_at", "2016-12-07 20:21:57.506623"]]
944
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 26], ["created_at", "2016-12-07 20:21:57.509087"], ["updated_at", "2016-12-07 20:21:57.509087"]]
945
-  (0.2ms) RELEASE SAVEPOINT active_record_1
946
-  (0.1ms) SAVEPOINT active_record_1
947
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-07 20:21:57.511526"], ["updated_at", "2016-12-07 20:21:57.511526"]]
948
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 27], ["created_at", "2016-12-07 20:21:57.512264"], ["updated_at", "2016-12-07 20:21:57.512264"]]
949
-  (0.1ms) RELEASE SAVEPOINT active_record_1
950
-  (0.1ms) ROLLBACK
951
-  (0.1ms) BEGIN
952
- -----------------------
953
- MakerTest: test_aliases
954
- -----------------------
955
-  (0.1ms) ROLLBACK
956
-  (0.1ms) BEGIN
957
- ---------------------------
958
- MakerTest: test_inheritance
959
- ---------------------------
960
-  (0.1ms) SAVEPOINT active_record_1
961
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-07 20:21:57.515496"], ["updated_at", "2016-12-07 20:21:57.515496"]]
962
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 28], ["created_at", "2016-12-07 20:21:57.516590"], ["updated_at", "2016-12-07 20:21:57.516590"]]
963
-  (0.1ms) RELEASE SAVEPOINT active_record_1
964
-  (0.1ms) ROLLBACK
965
-  (0.1ms) BEGIN
966
- ---------------------------
967
- MakerTest: test_definitions
968
- ---------------------------
969
-  (0.1ms) ROLLBACK
970
-  (0.1ms) BEGIN
971
- ----------------------------
972
- MakerTest: test_associations
973
- ----------------------------
974
-  (0.1ms) SAVEPOINT active_record_1
975
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 20:21:57.519827"], ["updated_at", "2016-12-07 20:21:57.519827"]]
976
-  (0.1ms) RELEASE SAVEPOINT active_record_1
977
-  (0.1ms) SAVEPOINT active_record_1
978
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-07 20:21:57.521505"], ["updated_at", "2016-12-07 20:21:57.521505"]]
979
-  (0.1ms) RELEASE SAVEPOINT active_record_1
980
-  (0.1ms) ROLLBACK
981
-  (0.1ms) BEGIN
982
- -------------------------
983
- MakerTest: test_overrides
984
- -------------------------
985
-  (0.1ms) SAVEPOINT active_record_1
986
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-07 20:21:57.525532"], ["updated_at", "2016-12-07 20:21:57.525532"]]
987
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 29], ["created_at", "2016-12-07 20:21:57.526492"], ["updated_at", "2016-12-07 20:21:57.526492"]]
988
-  (0.1ms) RELEASE SAVEPOINT active_record_1
989
-  (0.1ms) SAVEPOINT active_record_1
990
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-07 20:21:57.527967"], ["updated_at", "2016-12-07 20:21:57.527967"]]
991
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 30], ["created_at", "2016-12-07 20:21:57.528733"], ["updated_at", "2016-12-07 20:21:57.528733"]]
992
-  (0.1ms) RELEASE SAVEPOINT active_record_1
993
-  (0.1ms) SAVEPOINT active_record_1
994
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-07 20:21:57.530360"], ["updated_at", "2016-12-07 20:21:57.530360"]]
995
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 31], ["created_at", "2016-12-07 20:21:57.531138"], ["updated_at", "2016-12-07 20:21:57.531138"]]
996
-  (0.1ms) RELEASE SAVEPOINT active_record_1
997
-  (0.1ms) SAVEPOINT active_record_1
998
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-07 20:21:57.532638"], ["updated_at", "2016-12-07 20:21:57.532638"]]
999
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 32], ["created_at", "2016-12-07 20:21:57.533299"], ["updated_at", "2016-12-07 20:21:57.533299"]]
1000
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1001
-  (0.1ms) ROLLBACK
1002
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1003
-  (0.2ms) BEGIN
1004
- ---------------------------
1005
- GeneratorTest: test_install
1006
- ---------------------------
1007
-  (0.2ms) ROLLBACK
1008
-  (0.1ms) BEGIN
1009
- -------------------------
1010
- MakerTest: test_sequences
1011
- -------------------------
1012
-  (0.2ms) SAVEPOINT active_record_1
1013
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-09 15:58:35.478816"], ["updated_at", "2016-12-09 15:58:35.478816"]]
1014
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 33], ["created_at", "2016-12-09 15:58:35.482429"], ["updated_at", "2016-12-09 15:58:35.482429"]]
1015
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1016
-  (0.2ms) SAVEPOINT active_record_1
1017
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-09 15:58:35.485206"], ["updated_at", "2016-12-09 15:58:35.485206"]]
1018
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 34], ["created_at", "2016-12-09 15:58:35.486615"], ["updated_at", "2016-12-09 15:58:35.486615"]]
1019
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1020
-  (0.2ms) ROLLBACK
1021
-  (0.1ms) BEGIN
1022
- ----------------------------
1023
- MakerTest: test_associations
1024
- ----------------------------
1025
-  (0.1ms) SAVEPOINT active_record_1
1026
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-09 15:58:35.489635"], ["updated_at", "2016-12-09 15:58:35.489635"]]
1027
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1028
-  (0.1ms) SAVEPOINT active_record_1
1029
- SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-09 15:58:35.491096"], ["updated_at", "2016-12-09 15:58:35.491096"]]
1030
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1031
-  (0.2ms) ROLLBACK
1032
-  (0.1ms) BEGIN
1033
- -------------------------
1034
- MakerTest: test_dependent
1035
- -------------------------
1036
-  (0.1ms) SAVEPOINT active_record_1
1037
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-09 15:58:35.495451"], ["updated_at", "2016-12-09 15:58:35.495451"]]
1038
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 35], ["created_at", "2016-12-09 15:58:35.496230"], ["updated_at", "2016-12-09 15:58:35.496230"]]
1039
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1040
-  (0.1ms) ROLLBACK
1041
-  (0.1ms) BEGIN
1042
- -------------------------
1043
- MakerTest: test_overrides
1044
- -------------------------
1045
-  (0.1ms) SAVEPOINT active_record_1
1046
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-09 15:58:35.499545"], ["updated_at", "2016-12-09 15:58:35.499545"]]
1047
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 36], ["created_at", "2016-12-09 15:58:35.500326"], ["updated_at", "2016-12-09 15:58:35.500326"]]
1048
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1049
-  (0.1ms) SAVEPOINT active_record_1
1050
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-09 15:58:35.501770"], ["updated_at", "2016-12-09 15:58:35.501770"]]
1051
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 37], ["created_at", "2016-12-09 15:58:35.502443"], ["updated_at", "2016-12-09 15:58:35.502443"]]
1052
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1053
-  (0.1ms) SAVEPOINT active_record_1
1054
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-09 15:58:35.503904"], ["updated_at", "2016-12-09 15:58:35.503904"]]
1055
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 38], ["created_at", "2016-12-09 15:58:35.504572"], ["updated_at", "2016-12-09 15:58:35.504572"]]
1056
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1057
-  (0.1ms) SAVEPOINT active_record_1
1058
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-09 15:58:35.506010"], ["updated_at", "2016-12-09 15:58:35.506010"]]
1059
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 39], ["created_at", "2016-12-09 15:58:35.506740"], ["updated_at", "2016-12-09 15:58:35.506740"]]
1060
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
-  (0.1ms) ROLLBACK
1062
-  (0.1ms) BEGIN
1063
- ---------------------------
1064
- MakerTest: test_inheritance
1065
- ---------------------------
1066
-  (0.1ms) SAVEPOINT active_record_1
1067
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-09 15:58:35.509385"], ["updated_at", "2016-12-09 15:58:35.509385"]]
1068
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 40], ["created_at", "2016-12-09 15:58:35.510331"], ["updated_at", "2016-12-09 15:58:35.510331"]]
1069
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1070
-  (0.1ms) ROLLBACK
1071
-  (0.1ms) BEGIN
1072
- ---------------------------
1073
- MakerTest: test_definitions
1074
- ---------------------------
1075
-  (0.1ms) ROLLBACK
1076
-  (0.1ms) BEGIN
1077
- -----------------------
1078
- MakerTest: test_aliases
1079
- -----------------------
1080
-  (0.1ms) ROLLBACK
1081
- ActiveRecord::SchemaMigration Load (26.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1082
-  (0.2ms) BEGIN
1083
- -----------------------
1084
- MakerTest: test_aliases
1085
- -----------------------
1086
-  (0.1ms) ROLLBACK
1087
-  (0.1ms) BEGIN
1088
- ----------------------------
1089
- MakerTest: test_associations
1090
- ----------------------------
1091
-  (0.1ms) ROLLBACK
1092
-  (0.1ms) BEGIN
1093
- ---------------------------
1094
- MakerTest: test_definitions
1095
- ---------------------------
1096
-  (0.1ms) ROLLBACK
1097
-  (0.1ms) BEGIN
1098
- -------------------------
1099
- MakerTest: test_overrides
1100
- -------------------------
1101
-  (0.1ms) ROLLBACK
1102
-  (0.1ms) BEGIN
1103
- -------------------------
1104
- MakerTest: test_sequences
1105
- -------------------------
1106
-  (0.1ms) ROLLBACK
1107
-  (0.1ms) BEGIN
1108
- -------------------------
1109
- MakerTest: test_dependent
1110
- -------------------------
1111
-  (0.1ms) ROLLBACK
1112
-  (0.1ms) BEGIN
1113
- ---------------------------
1114
- MakerTest: test_inheritance
1115
- ---------------------------
1116
-  (0.1ms) ROLLBACK
1117
-  (0.1ms) BEGIN
1118
- ---------------------------
1119
- GeneratorTest: test_install
1120
- ---------------------------
1121
-  (0.1ms) ROLLBACK
1122
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1123
-  (0.3ms) BEGIN
1124
- -------------------------
1125
- MakerTest: test_sequences
1126
- -------------------------
1127
-  (0.2ms) ROLLBACK
1128
-  (0.1ms) BEGIN
1129
- ---------------------------
1130
- MakerTest: test_definitions
1131
- ---------------------------
1132
-  (0.1ms) ROLLBACK
1133
-  (0.1ms) BEGIN
1134
- -----------------------
1135
- MakerTest: test_aliases
1136
- -----------------------
1137
-  (0.1ms) ROLLBACK
1138
-  (0.1ms) BEGIN
1139
- -------------------------
1140
- MakerTest: test_dependent
1141
- -------------------------
1142
-  (0.2ms) ROLLBACK
1143
-  (0.1ms) BEGIN
1144
- -------------------------
1145
- MakerTest: test_overrides
1146
- -------------------------
1147
-  (0.2ms) ROLLBACK
1148
-  (0.1ms) BEGIN
1149
- ---------------------------
1150
- MakerTest: test_inheritance
1151
- ---------------------------
1152
-  (0.2ms) ROLLBACK
1153
-  (0.1ms) BEGIN
1154
- ----------------------------
1155
- MakerTest: test_associations
1156
- ----------------------------
1157
-  (0.2ms) ROLLBACK
1158
-  (0.1ms) BEGIN
1159
- ---------------------------
1160
- GeneratorTest: test_install
1161
- ---------------------------
1162
-  (0.2ms) ROLLBACK
1163
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1164
-  (0.2ms) BEGIN
1165
- -----------------------
1166
- MakerTest: test_aliases
1167
- -----------------------
1168
-  (0.1ms) ROLLBACK
1169
-  (0.1ms) BEGIN
1170
- -------------------------
1171
- MakerTest: test_sequences
1172
- -------------------------
1173
-  (0.2ms) ROLLBACK
1174
-  (0.1ms) BEGIN
1175
- ---------------------------
1176
- MakerTest: test_definitions
1177
- ---------------------------
1178
-  (0.1ms) ROLLBACK
1179
-  (0.1ms) BEGIN
1180
- ---------------------------
1181
- MakerTest: test_inheritance
1182
- ---------------------------
1183
-  (0.1ms) ROLLBACK
1184
-  (0.1ms) BEGIN
1185
- -------------------------
1186
- MakerTest: test_dependent
1187
- -------------------------
1188
-  (0.1ms) ROLLBACK
1189
-  (0.1ms) BEGIN
1190
- -------------------------
1191
- MakerTest: test_overrides
1192
- -------------------------
1193
-  (0.1ms) ROLLBACK
1194
-  (0.1ms) BEGIN
1195
- ----------------------------
1196
- MakerTest: test_associations
1197
- ----------------------------
1198
-  (0.1ms) ROLLBACK
1199
-  (0.1ms) BEGIN
1200
- ---------------------------
1201
- GeneratorTest: test_install
1202
- ---------------------------
1203
-  (0.1ms) ROLLBACK
1204
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1205
-  (0.3ms) BEGIN
1206
- ---------------------------
1207
- MakerTest: test_inheritance
1208
- ---------------------------
1209
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1210
-  (0.2ms) BEGIN
1211
- ---------------------------
1212
- GeneratorTest: test_install
1213
- ---------------------------
1214
-  (0.2ms) ROLLBACK
1215
-  (0.1ms) BEGIN
1216
- ----------------------------
1217
- MakerTest: test_associations
1218
- ----------------------------
1219
-  (0.2ms) ROLLBACK
1220
-  (0.1ms) BEGIN
1221
- -------------------------
1222
- MakerTest: test_sequences
1223
- -------------------------
1224
-  (0.2ms) ROLLBACK
1225
-  (0.1ms) BEGIN
1226
- -------------------------
1227
- MakerTest: test_dependent
1228
- -------------------------
1229
-  (0.2ms) ROLLBACK
1230
-  (0.1ms) BEGIN
1231
- -----------------------
1232
- MakerTest: test_aliases
1233
- -----------------------
1234
-  (0.1ms) ROLLBACK
1235
-  (0.1ms) BEGIN
1236
- ---------------------------
1237
- MakerTest: test_inheritance
1238
- ---------------------------
1239
-  (0.2ms) ROLLBACK
1240
-  (0.1ms) BEGIN
1241
- -------------------------
1242
- MakerTest: test_overrides
1243
- -------------------------
1244
-  (0.2ms) ROLLBACK
1245
-  (0.1ms) BEGIN
1246
- ---------------------------
1247
- MakerTest: test_definitions
1248
- ---------------------------
1249
-  (0.1ms) ROLLBACK
1250
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1251
-  (0.2ms) BEGIN
1252
- ---------------------------
1253
- GeneratorTest: test_install
1254
- ---------------------------
1255
-  (0.1ms) ROLLBACK
1256
-  (0.1ms) BEGIN
1257
- -------------------------
1258
- MakerTest: test_dependent
1259
- -------------------------
1260
-  (0.2ms) SAVEPOINT active_record_1
1261
- SQL (19.0ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 03:45:55.370751"], ["updated_at", "2016-12-11 03:45:55.370751"]]
1262
- SQL (4.9ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 41], ["created_at", "2016-12-11 03:45:55.393212"], ["updated_at", "2016-12-11 03:45:55.393212"]]
1263
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1264
-  (0.1ms) ROLLBACK
1265
-  (0.1ms) BEGIN
1266
- ---------------------------
1267
- MakerTest: test_inheritance
1268
- ---------------------------
1269
-  (0.1ms) SAVEPOINT active_record_1
1270
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 03:45:55.401480"], ["updated_at", "2016-12-11 03:45:55.401480"]]
1271
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 42], ["created_at", "2016-12-11 03:45:55.402529"], ["updated_at", "2016-12-11 03:45:55.402529"]]
1272
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1273
-  (0.2ms) ROLLBACK
1274
-  (0.1ms) BEGIN
1275
- ---------------------------
1276
- MakerTest: test_definitions
1277
- ---------------------------
1278
-  (0.1ms) ROLLBACK
1279
-  (0.1ms) BEGIN
1280
- -------------------------
1281
- MakerTest: test_sequences
1282
- -------------------------
1283
-  (0.1ms) SAVEPOINT active_record_1
1284
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 03:45:55.405904"], ["updated_at", "2016-12-11 03:45:55.405904"]]
1285
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 43], ["created_at", "2016-12-11 03:45:55.406678"], ["updated_at", "2016-12-11 03:45:55.406678"]]
1286
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1287
-  (0.1ms) SAVEPOINT active_record_1
1288
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 03:45:55.408536"], ["updated_at", "2016-12-11 03:45:55.408536"]]
1289
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 44], ["created_at", "2016-12-11 03:45:55.409277"], ["updated_at", "2016-12-11 03:45:55.409277"]]
1290
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1291
-  (0.1ms) ROLLBACK
1292
-  (0.1ms) BEGIN
1293
- ----------------------------
1294
- MakerTest: test_associations
1295
- ----------------------------
1296
-  (0.1ms) SAVEPOINT active_record_1
1297
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:45:55.411738"], ["updated_at", "2016-12-11 03:45:55.411738"]]
1298
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1299
-  (0.1ms) SAVEPOINT active_record_1
1300
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:45:55.412961"], ["updated_at", "2016-12-11 03:45:55.412961"]]
1301
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
-  (0.1ms) ROLLBACK
1303
-  (0.1ms) BEGIN
1304
- -----------------------
1305
- MakerTest: test_aliases
1306
- -----------------------
1307
-  (0.1ms) ROLLBACK
1308
-  (0.1ms) BEGIN
1309
- -------------------------
1310
- MakerTest: test_overrides
1311
- -------------------------
1312
-  (0.1ms) SAVEPOINT active_record_1
1313
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 03:45:55.416695"], ["updated_at", "2016-12-11 03:45:55.416695"]]
1314
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 45], ["created_at", "2016-12-11 03:45:55.417524"], ["updated_at", "2016-12-11 03:45:55.417524"]]
1315
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1316
-  (0.1ms) SAVEPOINT active_record_1
1317
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 03:45:55.419679"], ["updated_at", "2016-12-11 03:45:55.419679"]]
1318
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 46], ["created_at", "2016-12-11 03:45:55.420639"], ["updated_at", "2016-12-11 03:45:55.420639"]]
1319
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1320
-  (0.1ms) SAVEPOINT active_record_1
1321
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 03:45:55.422183"], ["updated_at", "2016-12-11 03:45:55.422183"]]
1322
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 47], ["created_at", "2016-12-11 03:45:55.422914"], ["updated_at", "2016-12-11 03:45:55.422914"]]
1323
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1324
-  (0.1ms) SAVEPOINT active_record_1
1325
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 03:45:55.424432"], ["updated_at", "2016-12-11 03:45:55.424432"]]
1326
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 48], ["created_at", "2016-12-11 03:45:55.425228"], ["updated_at", "2016-12-11 03:45:55.425228"]]
1327
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1328
-  (0.1ms) ROLLBACK
1329
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1330
-  (0.2ms) BEGIN
1331
- -------------------------
1332
- MakerTest: test_dependent
1333
- -------------------------
1334
-  (0.2ms) SAVEPOINT active_record_1
1335
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 03:48:32.525844"], ["updated_at", "2016-12-11 03:48:32.525844"]]
1336
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 49], ["created_at", "2016-12-11 03:48:32.529339"], ["updated_at", "2016-12-11 03:48:32.529339"]]
1337
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1338
-  (0.2ms) ROLLBACK
1339
-  (0.1ms) BEGIN
1340
- ---------------------------
1341
- MakerTest: test_definitions
1342
- ---------------------------
1343
-  (0.1ms) ROLLBACK
1344
-  (0.1ms) BEGIN
1345
- -------------------------
1346
- MakerTest: test_overrides
1347
- -------------------------
1348
-  (0.1ms) SAVEPOINT active_record_1
1349
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 03:48:32.533912"], ["updated_at", "2016-12-11 03:48:32.533912"]]
1350
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 50], ["created_at", "2016-12-11 03:48:32.534690"], ["updated_at", "2016-12-11 03:48:32.534690"]]
1351
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1352
-  (0.1ms) SAVEPOINT active_record_1
1353
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 03:48:32.536968"], ["updated_at", "2016-12-11 03:48:32.536968"]]
1354
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 51], ["created_at", "2016-12-11 03:48:32.538338"], ["updated_at", "2016-12-11 03:48:32.538338"]]
1355
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1356
-  (0.1ms) SAVEPOINT active_record_1
1357
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 03:48:32.540093"], ["updated_at", "2016-12-11 03:48:32.540093"]]
1358
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 52], ["created_at", "2016-12-11 03:48:32.540912"], ["updated_at", "2016-12-11 03:48:32.540912"]]
1359
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1360
-  (0.1ms) SAVEPOINT active_record_1
1361
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 03:48:32.542425"], ["updated_at", "2016-12-11 03:48:32.542425"]]
1362
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 53], ["created_at", "2016-12-11 03:48:32.543178"], ["updated_at", "2016-12-11 03:48:32.543178"]]
1363
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1364
-  (0.1ms) ROLLBACK
1365
-  (0.1ms) BEGIN
1366
- ----------------------------
1367
- MakerTest: test_associations
1368
- ----------------------------
1369
-  (0.1ms) SAVEPOINT active_record_1
1370
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:48:32.545785"], ["updated_at", "2016-12-11 03:48:32.545785"]]
1371
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1372
-  (0.2ms) SAVEPOINT active_record_1
1373
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:48:32.548566"], ["updated_at", "2016-12-11 03:48:32.548566"]]
1374
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1375
-  (0.1ms) ROLLBACK
1376
-  (0.1ms) BEGIN
1377
- -------------------------
1378
- MakerTest: test_sequences
1379
- -------------------------
1380
-  (0.1ms) SAVEPOINT active_record_1
1381
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 03:48:32.551718"], ["updated_at", "2016-12-11 03:48:32.551718"]]
1382
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 54], ["created_at", "2016-12-11 03:48:32.552471"], ["updated_at", "2016-12-11 03:48:32.552471"]]
1383
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1384
-  (0.1ms) SAVEPOINT active_record_1
1385
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 03:48:32.554210"], ["updated_at", "2016-12-11 03:48:32.554210"]]
1386
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 55], ["created_at", "2016-12-11 03:48:32.554874"], ["updated_at", "2016-12-11 03:48:32.554874"]]
1387
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1388
-  (0.1ms) ROLLBACK
1389
-  (0.1ms) BEGIN
1390
- -----------------------
1391
- MakerTest: test_aliases
1392
- -----------------------
1393
-  (0.1ms) ROLLBACK
1394
-  (0.1ms) BEGIN
1395
- ---------------------------
1396
- MakerTest: test_inheritance
1397
- ---------------------------
1398
-  (0.1ms) SAVEPOINT active_record_1
1399
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 03:48:32.557990"], ["updated_at", "2016-12-11 03:48:32.557990"]]
1400
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 56], ["created_at", "2016-12-11 03:48:32.559049"], ["updated_at", "2016-12-11 03:48:32.559049"]]
1401
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1402
-  (0.1ms) ROLLBACK
1403
-  (0.1ms) BEGIN
1404
- ---------------------------
1405
- GeneratorTest: test_install
1406
- ---------------------------
1407
-  (0.1ms) ROLLBACK
1408
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1409
-  (0.2ms) BEGIN
1410
- -------------------------
1411
- MakerTest: test_overrides
1412
- -------------------------
1413
-  (0.2ms) SAVEPOINT active_record_1
1414
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail5@example.com"], ["phone", 5], ["created_at", "2016-12-11 04:07:31.687476"], ["updated_at", "2016-12-11 04:07:31.687476"]]
1415
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 57], ["created_at", "2016-12-11 04:07:31.691213"], ["updated_at", "2016-12-11 04:07:31.691213"]]
1416
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1417
-  (0.1ms) SAVEPOINT active_record_1
1418
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:31.693308"], ["updated_at", "2016-12-11 04:07:31.693308"]]
1419
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 58], ["created_at", "2016-12-11 04:07:31.694033"], ["updated_at", "2016-12-11 04:07:31.694033"]]
1420
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1421
-  (0.1ms) SAVEPOINT active_record_1
1422
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:07:31.696136"], ["updated_at", "2016-12-11 04:07:31.696136"]]
1423
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 59], ["created_at", "2016-12-11 04:07:31.697810"], ["updated_at", "2016-12-11 04:07:31.697810"]]
1424
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1425
-  (0.1ms) SAVEPOINT active_record_1
1426
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:07:31.699681"], ["updated_at", "2016-12-11 04:07:31.699681"]]
1427
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 60], ["created_at", "2016-12-11 04:07:31.700523"], ["updated_at", "2016-12-11 04:07:31.700523"]]
1428
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1429
-  (0.2ms) ROLLBACK
1430
-  (0.1ms) BEGIN
1431
- -------------------------
1432
- MakerTest: test_sequences
1433
- -------------------------
1434
-  (0.1ms) SAVEPOINT active_record_1
1435
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:07:31.703266"], ["updated_at", "2016-12-11 04:07:31.703266"]]
1436
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 61], ["created_at", "2016-12-11 04:07:31.704086"], ["updated_at", "2016-12-11 04:07:31.704086"]]
1437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1438
-  (0.1ms) ROLLBACK
1439
-  (0.1ms) BEGIN
1440
- ----------------------------
1441
- MakerTest: test_associations
1442
- ----------------------------
1443
-  (0.2ms) SAVEPOINT active_record_1
1444
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:31.708151"], ["updated_at", "2016-12-11 04:07:31.708151"]]
1445
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1446
-  (0.1ms) SAVEPOINT active_record_1
1447
- SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:31.709667"], ["updated_at", "2016-12-11 04:07:31.709667"]]
1448
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1449
-  (0.1ms) ROLLBACK
1450
-  (0.1ms) BEGIN
1451
- ---------------------------
1452
- MakerTest: test_inheritance
1453
- ---------------------------
1454
-  (0.1ms) SAVEPOINT active_record_1
1455
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:07:31.712547"], ["updated_at", "2016-12-11 04:07:31.712547"]]
1456
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 62], ["created_at", "2016-12-11 04:07:31.713454"], ["updated_at", "2016-12-11 04:07:31.713454"]]
1457
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1458
-  (0.1ms) ROLLBACK
1459
-  (0.1ms) BEGIN
1460
- ---------------------------
1461
- MakerTest: test_definitions
1462
- ---------------------------
1463
-  (0.1ms) ROLLBACK
1464
-  (0.1ms) BEGIN
1465
- -------------------------
1466
- MakerTest: test_dependent
1467
- -------------------------
1468
-  (0.1ms) SAVEPOINT active_record_1
1469
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:07:31.716253"], ["updated_at", "2016-12-11 04:07:31.716253"]]
1470
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 63], ["created_at", "2016-12-11 04:07:31.716962"], ["updated_at", "2016-12-11 04:07:31.716962"]]
1471
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1472
-  (0.1ms) ROLLBACK
1473
-  (0.1ms) BEGIN
1474
- -----------------------
1475
- MakerTest: test_aliases
1476
- -----------------------
1477
-  (0.1ms) ROLLBACK
1478
-  (0.1ms) BEGIN
1479
- ---------------------------
1480
- GeneratorTest: test_install
1481
- ---------------------------
1482
-  (0.1ms) ROLLBACK
1483
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1484
-  (0.2ms) BEGIN
1485
- -------------------------
1486
- MakerTest: test_dependent
1487
- -------------------------
1488
-  (0.2ms) SAVEPOINT active_record_1
1489
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:07:54.523877"], ["updated_at", "2016-12-11 04:07:54.523877"]]
1490
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 64], ["created_at", "2016-12-11 04:07:54.526791"], ["updated_at", "2016-12-11 04:07:54.526791"]]
1491
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1492
-  (0.2ms) ROLLBACK
1493
-  (0.1ms) BEGIN
1494
- -------------------------
1495
- MakerTest: test_sequences
1496
- -------------------------
1497
-  (0.1ms) SAVEPOINT active_record_1
1498
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:07:54.530010"], ["updated_at", "2016-12-11 04:07:54.530010"]]
1499
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 65], ["created_at", "2016-12-11 04:07:54.530800"], ["updated_at", "2016-12-11 04:07:54.530800"]]
1500
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1501
-  (0.1ms) SAVEPOINT active_record_1
1502
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:54.532746"], ["updated_at", "2016-12-11 04:07:54.532746"]]
1503
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 66], ["created_at", "2016-12-11 04:07:54.534662"], ["updated_at", "2016-12-11 04:07:54.534662"]]
1504
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1505
-  (0.2ms) ROLLBACK
1506
-  (0.1ms) BEGIN
1507
- -----------------------
1508
- MakerTest: test_aliases
1509
- -----------------------
1510
-  (0.1ms) ROLLBACK
1511
-  (0.1ms) BEGIN
1512
- -------------------------
1513
- MakerTest: test_overrides
1514
- -------------------------
1515
-  (0.2ms) SAVEPOINT active_record_1
1516
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 04:07:54.540121"], ["updated_at", "2016-12-11 04:07:54.540121"]]
1517
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 67], ["created_at", "2016-12-11 04:07:54.541238"], ["updated_at", "2016-12-11 04:07:54.541238"]]
1518
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1519
-  (0.1ms) SAVEPOINT active_record_1
1520
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 04:07:54.543120"], ["updated_at", "2016-12-11 04:07:54.543120"]]
1521
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 68], ["created_at", "2016-12-11 04:07:54.544000"], ["updated_at", "2016-12-11 04:07:54.544000"]]
1522
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1523
-  (0.1ms) SAVEPOINT active_record_1
1524
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 04:07:54.545770"], ["updated_at", "2016-12-11 04:07:54.545770"]]
1525
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 69], ["created_at", "2016-12-11 04:07:54.547949"], ["updated_at", "2016-12-11 04:07:54.547949"]]
1526
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1527
-  (0.1ms) SAVEPOINT active_record_1
1528
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:07:54.549794"], ["updated_at", "2016-12-11 04:07:54.549794"]]
1529
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 70], ["created_at", "2016-12-11 04:07:54.550576"], ["updated_at", "2016-12-11 04:07:54.550576"]]
1530
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1531
-  (0.1ms) ROLLBACK
1532
-  (0.1ms) BEGIN
1533
- ---------------------------
1534
- MakerTest: test_definitions
1535
- ---------------------------
1536
-  (0.1ms) ROLLBACK
1537
-  (0.1ms) BEGIN
1538
- ----------------------------
1539
- MakerTest: test_associations
1540
- ----------------------------
1541
-  (0.1ms) SAVEPOINT active_record_1
1542
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:54.553886"], ["updated_at", "2016-12-11 04:07:54.553886"]]
1543
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
-  (0.1ms) SAVEPOINT active_record_1
1545
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:54.555215"], ["updated_at", "2016-12-11 04:07:54.555215"]]
1546
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1547
-  (0.2ms) ROLLBACK
1548
-  (0.1ms) BEGIN
1549
- ---------------------------
1550
- MakerTest: test_inheritance
1551
- ---------------------------
1552
-  (0.1ms) SAVEPOINT active_record_1
1553
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:07:54.558224"], ["updated_at", "2016-12-11 04:07:54.558224"]]
1554
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 71], ["created_at", "2016-12-11 04:07:54.559185"], ["updated_at", "2016-12-11 04:07:54.559185"]]
1555
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1556
-  (0.2ms) ROLLBACK
1557
-  (0.1ms) BEGIN
1558
- ---------------------------
1559
- GeneratorTest: test_install
1560
- ---------------------------
1561
-  (0.3ms) ROLLBACK
1562
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1563
-  (0.2ms) BEGIN
1564
- ----------------------------
1565
- MakerTest: test_associations
1566
- ----------------------------
1567
-  (0.2ms) SAVEPOINT active_record_1
1568
- SQL (0.4ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:57.848784"], ["updated_at", "2016-12-11 04:07:57.848784"]]
1569
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1570
-  (0.1ms) SAVEPOINT active_record_1
1571
- SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:57.851874"], ["updated_at", "2016-12-11 04:07:57.851874"]]
1572
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1573
-  (0.2ms) ROLLBACK
1574
-  (0.2ms) BEGIN
1575
- -------------------------
1576
- MakerTest: test_dependent
1577
- -------------------------
1578
-  (0.1ms) SAVEPOINT active_record_1
1579
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:07:57.854915"], ["updated_at", "2016-12-11 04:07:57.854915"]]
1580
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 72], ["created_at", "2016-12-11 04:07:57.856050"], ["updated_at", "2016-12-11 04:07:57.856050"]]
1581
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1582
-  (0.1ms) ROLLBACK
1583
-  (0.1ms) BEGIN
1584
- -----------------------
1585
- MakerTest: test_aliases
1586
- -----------------------
1587
-  (0.1ms) ROLLBACK
1588
-  (0.1ms) BEGIN
1589
- ---------------------------
1590
- MakerTest: test_inheritance
1591
- ---------------------------
1592
-  (0.1ms) SAVEPOINT active_record_1
1593
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:57.859721"], ["updated_at", "2016-12-11 04:07:57.859721"]]
1594
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 73], ["created_at", "2016-12-11 04:07:57.860708"], ["updated_at", "2016-12-11 04:07:57.860708"]]
1595
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1596
-  (0.1ms) ROLLBACK
1597
-  (0.1ms) BEGIN
1598
- ---------------------------
1599
- MakerTest: test_definitions
1600
- ---------------------------
1601
-  (0.1ms) ROLLBACK
1602
-  (0.1ms) BEGIN
1603
- -------------------------
1604
- MakerTest: test_sequences
1605
- -------------------------
1606
-  (0.1ms) SAVEPOINT active_record_1
1607
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:07:57.864765"], ["updated_at", "2016-12-11 04:07:57.864765"]]
1608
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 74], ["created_at", "2016-12-11 04:07:57.865740"], ["updated_at", "2016-12-11 04:07:57.865740"]]
1609
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1610
-  (0.1ms) SAVEPOINT active_record_1
1611
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:07:57.867901"], ["updated_at", "2016-12-11 04:07:57.867901"]]
1612
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 75], ["created_at", "2016-12-11 04:07:57.870144"], ["updated_at", "2016-12-11 04:07:57.870144"]]
1613
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1614
-  (0.1ms) ROLLBACK
1615
-  (0.1ms) BEGIN
1616
- -------------------------
1617
- MakerTest: test_overrides
1618
- -------------------------
1619
-  (0.1ms) SAVEPOINT active_record_1
1620
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:07:57.873866"], ["updated_at", "2016-12-11 04:07:57.873866"]]
1621
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 76], ["created_at", "2016-12-11 04:07:57.874795"], ["updated_at", "2016-12-11 04:07:57.874795"]]
1622
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1623
-  (0.1ms) SAVEPOINT active_record_1
1624
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:07:57.876419"], ["updated_at", "2016-12-11 04:07:57.876419"]]
1625
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 77], ["created_at", "2016-12-11 04:07:57.877105"], ["updated_at", "2016-12-11 04:07:57.877105"]]
1626
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1627
-  (0.1ms) SAVEPOINT active_record_1
1628
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 04:07:57.878590"], ["updated_at", "2016-12-11 04:07:57.878590"]]
1629
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 78], ["created_at", "2016-12-11 04:07:57.879289"], ["updated_at", "2016-12-11 04:07:57.879289"]]
1630
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1631
-  (0.1ms) SAVEPOINT active_record_1
1632
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:07:57.880675"], ["updated_at", "2016-12-11 04:07:57.880675"]]
1633
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 79], ["created_at", "2016-12-11 04:07:57.881466"], ["updated_at", "2016-12-11 04:07:57.881466"]]
1634
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1635
-  (0.1ms) ROLLBACK
1636
-  (0.1ms) BEGIN
1637
- ---------------------------
1638
- GeneratorTest: test_install
1639
- ---------------------------
1640
-  (0.1ms) ROLLBACK
1641
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1642
-  (0.2ms) BEGIN
1643
- ---------------------------
1644
- GeneratorTest: test_install
1645
- ---------------------------
1646
-  (0.2ms) ROLLBACK
1647
-  (0.2ms) BEGIN
1648
- ----------------------------
1649
- MakerTest: test_associations
1650
- ----------------------------
1651
-  (0.2ms) SAVEPOINT active_record_1
1652
- SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:00.205525"], ["updated_at", "2016-12-11 04:08:00.205525"]]
1653
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1654
-  (0.1ms) SAVEPOINT active_record_1
1655
- SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:00.208615"], ["updated_at", "2016-12-11 04:08:00.208615"]]
1656
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1657
-  (0.2ms) ROLLBACK
1658
-  (0.1ms) BEGIN
1659
- -----------------------
1660
- MakerTest: test_aliases
1661
- -----------------------
1662
-  (0.1ms) ROLLBACK
1663
-  (0.1ms) BEGIN
1664
- -------------------------
1665
- MakerTest: test_dependent
1666
- -------------------------
1667
-  (0.1ms) SAVEPOINT active_record_1
1668
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:08:00.212229"], ["updated_at", "2016-12-11 04:08:00.212229"]]
1669
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 80], ["created_at", "2016-12-11 04:08:00.214196"], ["updated_at", "2016-12-11 04:08:00.214196"]]
1670
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1671
-  (0.1ms) ROLLBACK
1672
-  (0.1ms) BEGIN
1673
- ---------------------------
1674
- MakerTest: test_definitions
1675
- ---------------------------
1676
-  (0.1ms) ROLLBACK
1677
-  (0.1ms) BEGIN
1678
- -------------------------
1679
- MakerTest: test_sequences
1680
- -------------------------
1681
-  (0.1ms) SAVEPOINT active_record_1
1682
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:08:00.218078"], ["updated_at", "2016-12-11 04:08:00.218078"]]
1683
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 81], ["created_at", "2016-12-11 04:08:00.220174"], ["updated_at", "2016-12-11 04:08:00.220174"]]
1684
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1685
-  (0.1ms) SAVEPOINT active_record_1
1686
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:08:00.222717"], ["updated_at", "2016-12-11 04:08:00.222717"]]
1687
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 82], ["created_at", "2016-12-11 04:08:00.223536"], ["updated_at", "2016-12-11 04:08:00.223536"]]
1688
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1689
-  (0.2ms) ROLLBACK
1690
-  (0.1ms) BEGIN
1691
- -------------------------
1692
- MakerTest: test_overrides
1693
- -------------------------
1694
-  (0.1ms) SAVEPOINT active_record_1
1695
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 04:08:00.227102"], ["updated_at", "2016-12-11 04:08:00.227102"]]
1696
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 83], ["created_at", "2016-12-11 04:08:00.228045"], ["updated_at", "2016-12-11 04:08:00.228045"]]
1697
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1698
-  (0.1ms) SAVEPOINT active_record_1
1699
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:08:00.229639"], ["updated_at", "2016-12-11 04:08:00.229639"]]
1700
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 84], ["created_at", "2016-12-11 04:08:00.230328"], ["updated_at", "2016-12-11 04:08:00.230328"]]
1701
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1702
-  (0.1ms) SAVEPOINT active_record_1
1703
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:08:00.231865"], ["updated_at", "2016-12-11 04:08:00.231865"]]
1704
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 85], ["created_at", "2016-12-11 04:08:00.232614"], ["updated_at", "2016-12-11 04:08:00.232614"]]
1705
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1706
-  (0.1ms) SAVEPOINT active_record_1
1707
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:08:00.234241"], ["updated_at", "2016-12-11 04:08:00.234241"]]
1708
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 86], ["created_at", "2016-12-11 04:08:00.234993"], ["updated_at", "2016-12-11 04:08:00.234993"]]
1709
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1710
-  (0.1ms) ROLLBACK
1711
-  (0.1ms) BEGIN
1712
- ---------------------------
1713
- MakerTest: test_inheritance
1714
- ---------------------------
1715
-  (0.1ms) SAVEPOINT active_record_1
1716
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:08:00.237533"], ["updated_at", "2016-12-11 04:08:00.237533"]]
1717
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 87], ["created_at", "2016-12-11 04:08:00.238442"], ["updated_at", "2016-12-11 04:08:00.238442"]]
1718
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1719
-  (0.1ms) ROLLBACK
1720
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1721
-  (0.2ms) BEGIN
1722
- ---------------------------
1723
- GeneratorTest: test_install
1724
- ---------------------------
1725
-  (0.2ms) ROLLBACK
1726
-  (0.1ms) BEGIN
1727
- ---------------------------
1728
- MakerTest: test_inheritance
1729
- ---------------------------
1730
-  (0.2ms) SAVEPOINT active_record_1
1731
- SQL (0.4ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:08:02.427879"], ["updated_at", "2016-12-11 04:08:02.427879"]]
1732
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 88], ["created_at", "2016-12-11 04:08:02.430751"], ["updated_at", "2016-12-11 04:08:02.430751"]]
1733
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1734
-  (0.1ms) ROLLBACK
1735
-  (0.1ms) BEGIN
1736
- ---------------------------
1737
- MakerTest: test_definitions
1738
- ---------------------------
1739
-  (0.1ms) ROLLBACK
1740
-  (0.1ms) BEGIN
1741
- -------------------------
1742
- MakerTest: test_overrides
1743
- -------------------------
1744
-  (0.2ms) SAVEPOINT active_record_1
1745
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:08:02.435643"], ["updated_at", "2016-12-11 04:08:02.435643"]]
1746
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 89], ["created_at", "2016-12-11 04:08:02.437181"], ["updated_at", "2016-12-11 04:08:02.437181"]]
1747
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1748
-  (0.1ms) SAVEPOINT active_record_1
1749
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:08:02.439002"], ["updated_at", "2016-12-11 04:08:02.439002"]]
1750
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 90], ["created_at", "2016-12-11 04:08:02.439801"], ["updated_at", "2016-12-11 04:08:02.439801"]]
1751
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1752
-  (0.2ms) SAVEPOINT active_record_1
1753
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 04:08:02.442922"], ["updated_at", "2016-12-11 04:08:02.442922"]]
1754
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 91], ["created_at", "2016-12-11 04:08:02.444038"], ["updated_at", "2016-12-11 04:08:02.444038"]]
1755
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1756
-  (0.1ms) SAVEPOINT active_record_1
1757
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:08:02.445854"], ["updated_at", "2016-12-11 04:08:02.445854"]]
1758
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 92], ["created_at", "2016-12-11 04:08:02.446702"], ["updated_at", "2016-12-11 04:08:02.446702"]]
1759
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
-  (0.1ms) ROLLBACK
1761
-  (0.1ms) BEGIN
1762
- -------------------------
1763
- MakerTest: test_sequences
1764
- -------------------------
1765
-  (0.1ms) SAVEPOINT active_record_1
1766
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 04:08:02.449299"], ["updated_at", "2016-12-11 04:08:02.449299"]]
1767
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 93], ["created_at", "2016-12-11 04:08:02.450059"], ["updated_at", "2016-12-11 04:08:02.450059"]]
1768
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1769
-  (0.1ms) SAVEPOINT active_record_1
1770
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:08:02.451789"], ["updated_at", "2016-12-11 04:08:02.451789"]]
1771
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 94], ["created_at", "2016-12-11 04:08:02.452531"], ["updated_at", "2016-12-11 04:08:02.452531"]]
1772
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1773
-  (0.1ms) ROLLBACK
1774
-  (0.1ms) BEGIN
1775
- -------------------------
1776
- MakerTest: test_dependent
1777
- -------------------------
1778
-  (0.1ms) SAVEPOINT active_record_1
1779
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:08:02.454963"], ["updated_at", "2016-12-11 04:08:02.454963"]]
1780
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 95], ["created_at", "2016-12-11 04:08:02.455706"], ["updated_at", "2016-12-11 04:08:02.455706"]]
1781
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1782
-  (0.1ms) ROLLBACK
1783
-  (0.1ms) BEGIN
1784
- ----------------------------
1785
- MakerTest: test_associations
1786
- ----------------------------
1787
-  (0.1ms) SAVEPOINT active_record_1
1788
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:02.458122"], ["updated_at", "2016-12-11 04:08:02.458122"]]
1789
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1790
-  (0.1ms) SAVEPOINT active_record_1
1791
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:02.459353"], ["updated_at", "2016-12-11 04:08:02.459353"]]
1792
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1793
-  (0.1ms) ROLLBACK
1794
-  (0.1ms) BEGIN
1795
- -----------------------
1796
- MakerTest: test_aliases
1797
- -----------------------
1798
-  (0.1ms) ROLLBACK
1799
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1800
-  (0.2ms) BEGIN
1801
- ---------------------------
1802
- GeneratorTest: test_install
1803
- ---------------------------
1804
-  (0.2ms) ROLLBACK
1805
-  (0.1ms) BEGIN
1806
- ----------------------------
1807
- MakerTest: test_associations
1808
- ----------------------------
1809
-  (0.1ms) ROLLBACK
1810
-  (0.1ms) BEGIN
1811
- ---------------------------
1812
- MakerTest: test_inheritance
1813
- ---------------------------
1814
-  (0.1ms) ROLLBACK
1815
-  (0.2ms) BEGIN
1816
- -------------------------
1817
- MakerTest: test_sequences
1818
- -------------------------
1819
-  (0.2ms) ROLLBACK
1820
-  (0.1ms) BEGIN
1821
- -------------------------
1822
- MakerTest: test_dependent
1823
- -------------------------
1824
-  (0.1ms) ROLLBACK
1825
-  (0.1ms) BEGIN
1826
- -------------------------
1827
- MakerTest: test_overrides
1828
- -------------------------
1829
-  (0.1ms) ROLLBACK
1830
-  (0.1ms) BEGIN
1831
- ---------------------------
1832
- MakerTest: test_definitions
1833
- ---------------------------
1834
-  (0.1ms) ROLLBACK
1835
-  (0.1ms) BEGIN
1836
- -----------------------
1837
- MakerTest: test_aliases
1838
- -----------------------
1839
-  (0.1ms) ROLLBACK
1840
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1841
-  (0.2ms) BEGIN
1842
- ---------------------------
1843
- GeneratorTest: test_install
1844
- ---------------------------
1845
-  (0.2ms) ROLLBACK
1846
-  (0.1ms) BEGIN
1847
- -------------------------
1848
- MakerTest: test_sequences
1849
- -------------------------
1850
-  (0.2ms) SAVEPOINT active_record_1
1851
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:57:27.817613"], ["updated_at", "2016-12-11 04:57:27.817613"]]
1852
- SQL (0.4ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 96], ["created_at", "2016-12-11 04:57:27.821186"], ["updated_at", "2016-12-11 04:57:27.821186"]]
1853
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1854
-  (0.4ms) SAVEPOINT active_record_1
1855
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:57:27.826957"], ["updated_at", "2016-12-11 04:57:27.826957"]]
1856
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 97], ["created_at", "2016-12-11 04:57:27.828780"], ["updated_at", "2016-12-11 04:57:27.828780"]]
1857
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1858
-  (0.1ms) ROLLBACK
1859
-  (0.1ms) BEGIN
1860
- -----------------------
1861
- MakerTest: test_aliases
1862
- -----------------------
1863
-  (0.1ms) ROLLBACK
1864
-  (0.1ms) BEGIN
1865
- ---------------------------
1866
- MakerTest: test_inheritance
1867
- ---------------------------
1868
-  (1.3ms) ROLLBACK
1869
-  (0.1ms) BEGIN
1870
- ---------------------------
1871
- MakerTest: test_definitions
1872
- ---------------------------
1873
-  (0.1ms) ROLLBACK
1874
-  (0.1ms) BEGIN
1875
- -------------------------
1876
- MakerTest: test_dependent
1877
- -------------------------
1878
-  (0.1ms) SAVEPOINT active_record_1
1879
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:57:27.835254"], ["updated_at", "2016-12-11 04:57:27.835254"]]
1880
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 98], ["created_at", "2016-12-11 04:57:27.836209"], ["updated_at", "2016-12-11 04:57:27.836209"]]
1881
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1882
-  (0.1ms) ROLLBACK
1883
-  (0.1ms) BEGIN
1884
- ----------------------------
1885
- MakerTest: test_associations
1886
- ----------------------------
1887
-  (0.1ms) ROLLBACK
1888
-  (0.1ms) BEGIN
1889
- -------------------------
1890
- MakerTest: test_overrides
1891
- -------------------------
1892
-  (0.1ms) SAVEPOINT active_record_1
1893
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:57:27.840766"], ["updated_at", "2016-12-11 04:57:27.840766"]]
1894
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 99], ["created_at", "2016-12-11 04:57:27.841805"], ["updated_at", "2016-12-11 04:57:27.841805"]]
1895
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1896
-  (0.1ms) SAVEPOINT active_record_1
1897
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:57:27.843431"], ["updated_at", "2016-12-11 04:57:27.843431"]]
1898
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 100], ["created_at", "2016-12-11 04:57:27.844250"], ["updated_at", "2016-12-11 04:57:27.844250"]]
1899
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1900
-  (0.1ms) SAVEPOINT active_record_1
1901
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:57:27.845761"], ["updated_at", "2016-12-11 04:57:27.845761"]]
1902
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 101], ["created_at", "2016-12-11 04:57:27.846469"], ["updated_at", "2016-12-11 04:57:27.846469"]]
1903
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1904
-  (0.1ms) SAVEPOINT active_record_1
1905
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 04:57:27.847898"], ["updated_at", "2016-12-11 04:57:27.847898"]]
1906
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 102], ["created_at", "2016-12-11 04:57:27.848608"], ["updated_at", "2016-12-11 04:57:27.848608"]]
1907
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1908
-  (0.1ms) ROLLBACK
1909
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1910
-  (0.2ms) BEGIN
1911
- ---------------------------
1912
- GeneratorTest: test_install
1913
- ---------------------------
1914
-  (0.2ms) ROLLBACK
1915
-  (0.1ms) BEGIN
1916
- -------------------------
1917
- MakerTest: test_dependent
1918
- -------------------------
1919
-  (0.2ms) SAVEPOINT active_record_1
1920
- SQL (0.8ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 05:01:40.341102"], ["updated_at", "2016-12-11 05:01:40.341102"]]
1921
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 103], ["created_at", "2016-12-11 05:01:40.345731"], ["updated_at", "2016-12-11 05:01:40.345731"]]
1922
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1923
-  (0.1ms) ROLLBACK
1924
-  (0.1ms) BEGIN
1925
- ---------------------------
1926
- MakerTest: test_definitions
1927
- ---------------------------
1928
-  (0.1ms) ROLLBACK
1929
-  (0.1ms) BEGIN
1930
- -----------------------
1931
- MakerTest: test_aliases
1932
- -----------------------
1933
-  (0.1ms) ROLLBACK
1934
-  (0.1ms) BEGIN
1935
- -------------------------
1936
- MakerTest: test_sequences
1937
- -------------------------
1938
-  (0.1ms) SAVEPOINT active_record_1
1939
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:01:40.350693"], ["updated_at", "2016-12-11 05:01:40.350693"]]
1940
- SQL (0.4ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 104], ["created_at", "2016-12-11 05:01:40.353245"], ["updated_at", "2016-12-11 05:01:40.353245"]]
1941
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1942
-  (0.2ms) SAVEPOINT active_record_1
1943
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:01:40.356435"], ["updated_at", "2016-12-11 05:01:40.356435"]]
1944
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 105], ["created_at", "2016-12-11 05:01:40.357340"], ["updated_at", "2016-12-11 05:01:40.357340"]]
1945
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1946
-  (0.1ms) ROLLBACK
1947
-  (0.1ms) BEGIN
1948
- ----------------------------
1949
- MakerTest: test_associations
1950
- ----------------------------
1951
-  (0.1ms) ROLLBACK
1952
-  (0.1ms) BEGIN
1953
- ---------------------------
1954
- MakerTest: test_inheritance
1955
- ---------------------------
1956
-  (0.1ms) ROLLBACK
1957
-  (0.1ms) BEGIN
1958
- -------------------------
1959
- MakerTest: test_overrides
1960
- -------------------------
1961
-  (0.1ms) SAVEPOINT active_record_1
1962
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:01:40.363052"], ["updated_at", "2016-12-11 05:01:40.363052"]]
1963
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 106], ["created_at", "2016-12-11 05:01:40.363953"], ["updated_at", "2016-12-11 05:01:40.363953"]]
1964
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1965
-  (0.1ms) SAVEPOINT active_record_1
1966
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:01:40.365450"], ["updated_at", "2016-12-11 05:01:40.365450"]]
1967
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 107], ["created_at", "2016-12-11 05:01:40.366119"], ["updated_at", "2016-12-11 05:01:40.366119"]]
1968
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1969
-  (0.1ms) SAVEPOINT active_record_1
1970
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:01:40.367602"], ["updated_at", "2016-12-11 05:01:40.367602"]]
1971
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 108], ["created_at", "2016-12-11 05:01:40.368313"], ["updated_at", "2016-12-11 05:01:40.368313"]]
1972
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1973
-  (0.1ms) SAVEPOINT active_record_1
1974
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:01:40.370280"], ["updated_at", "2016-12-11 05:01:40.370280"]]
1975
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 109], ["created_at", "2016-12-11 05:01:40.371037"], ["updated_at", "2016-12-11 05:01:40.371037"]]
1976
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1977
-  (0.1ms) ROLLBACK
1978
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1979
-  (0.2ms) BEGIN
1980
- ---------------------------
1981
- GeneratorTest: test_install
1982
- ---------------------------
1983
-  (0.2ms) ROLLBACK
1984
-  (0.2ms) BEGIN
1985
- ----------------------------
1986
- MakerTest: test_associations
1987
- ----------------------------
1988
-  (0.2ms) ROLLBACK
1989
-  (0.1ms) BEGIN
1990
- ---------------------------
1991
- MakerTest: test_definitions
1992
- ---------------------------
1993
-  (0.1ms) ROLLBACK
1994
-  (0.1ms) BEGIN
1995
- -------------------------
1996
- MakerTest: test_dependent
1997
- -------------------------
1998
-  (0.1ms) SAVEPOINT active_record_1
1999
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:01:58.916417"], ["updated_at", "2016-12-11 05:01:58.916417"]]
2000
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 110], ["created_at", "2016-12-11 05:01:58.920652"], ["updated_at", "2016-12-11 05:01:58.920652"]]
2001
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2002
-  (0.1ms) ROLLBACK
2003
-  (0.1ms) BEGIN
2004
- ---------------------------
2005
- MakerTest: test_inheritance
2006
- ---------------------------
2007
-  (0.1ms) ROLLBACK
2008
-  (0.1ms) BEGIN
2009
- -------------------------
2010
- MakerTest: test_sequences
2011
- -------------------------
2012
-  (0.1ms) SAVEPOINT active_record_1
2013
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:01:58.925179"], ["updated_at", "2016-12-11 05:01:58.925179"]]
2014
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 111], ["created_at", "2016-12-11 05:01:58.926040"], ["updated_at", "2016-12-11 05:01:58.926040"]]
2015
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2016
-  (0.1ms) SAVEPOINT active_record_1
2017
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:01:58.928139"], ["updated_at", "2016-12-11 05:01:58.928139"]]
2018
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 112], ["created_at", "2016-12-11 05:01:58.928992"], ["updated_at", "2016-12-11 05:01:58.928992"]]
2019
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2020
-  (0.1ms) ROLLBACK
2021
-  (1.1ms) BEGIN
2022
- -------------------------
2023
- MakerTest: test_overrides
2024
- -------------------------
2025
-  (0.1ms) SAVEPOINT active_record_1
2026
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:01:58.933865"], ["updated_at", "2016-12-11 05:01:58.933865"]]
2027
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 113], ["created_at", "2016-12-11 05:01:58.934789"], ["updated_at", "2016-12-11 05:01:58.934789"]]
2028
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2029
-  (0.1ms) SAVEPOINT active_record_1
2030
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:01:58.936303"], ["updated_at", "2016-12-11 05:01:58.936303"]]
2031
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 114], ["created_at", "2016-12-11 05:01:58.937037"], ["updated_at", "2016-12-11 05:01:58.937037"]]
2032
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2033
-  (0.1ms) SAVEPOINT active_record_1
2034
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:01:58.938366"], ["updated_at", "2016-12-11 05:01:58.938366"]]
2035
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 115], ["created_at", "2016-12-11 05:01:58.939089"], ["updated_at", "2016-12-11 05:01:58.939089"]]
2036
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2037
-  (0.1ms) SAVEPOINT active_record_1
2038
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:01:58.940581"], ["updated_at", "2016-12-11 05:01:58.940581"]]
2039
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 116], ["created_at", "2016-12-11 05:01:58.941410"], ["updated_at", "2016-12-11 05:01:58.941410"]]
2040
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2041
-  (0.1ms) ROLLBACK
2042
-  (0.1ms) BEGIN
2043
- -----------------------
2044
- MakerTest: test_aliases
2045
- -----------------------
2046
-  (0.1ms) ROLLBACK
2047
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2048
-  (0.2ms) BEGIN
2049
- ----------------------------
2050
- MakerTest: test_associations
2051
- ----------------------------
2052
-  (0.2ms) ROLLBACK
2053
-  (0.1ms) BEGIN
2054
- -------------------------
2055
- MakerTest: test_dependent
2056
- -------------------------
2057
-  (0.2ms) SAVEPOINT active_record_1
2058
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:03:21.577261"], ["updated_at", "2016-12-11 05:03:21.577261"]]
2059
- SQL (0.5ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 117], ["created_at", "2016-12-11 05:03:21.580588"], ["updated_at", "2016-12-11 05:03:21.580588"]]
2060
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2061
-  (0.1ms) ROLLBACK
2062
-  (0.1ms) BEGIN
2063
- -------------------------
2064
- MakerTest: test_overrides
2065
- -------------------------
2066
-  (0.1ms) SAVEPOINT active_record_1
2067
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:03:21.585460"], ["updated_at", "2016-12-11 05:03:21.585460"]]
2068
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 118], ["created_at", "2016-12-11 05:03:21.586589"], ["updated_at", "2016-12-11 05:03:21.586589"]]
2069
-  (0.2ms) RELEASE SAVEPOINT active_record_1
2070
-  (0.1ms) SAVEPOINT active_record_1
2071
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 05:03:21.589700"], ["updated_at", "2016-12-11 05:03:21.589700"]]
2072
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 119], ["created_at", "2016-12-11 05:03:21.590641"], ["updated_at", "2016-12-11 05:03:21.590641"]]
2073
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2074
-  (0.1ms) SAVEPOINT active_record_1
2075
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 05:03:21.592518"], ["updated_at", "2016-12-11 05:03:21.592518"]]
2076
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 120], ["created_at", "2016-12-11 05:03:21.593379"], ["updated_at", "2016-12-11 05:03:21.593379"]]
2077
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2078
-  (0.1ms) SAVEPOINT active_record_1
2079
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:03:21.594932"], ["updated_at", "2016-12-11 05:03:21.594932"]]
2080
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 121], ["created_at", "2016-12-11 05:03:21.595654"], ["updated_at", "2016-12-11 05:03:21.595654"]]
2081
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2082
-  (0.1ms) ROLLBACK
2083
-  (0.1ms) BEGIN
2084
- ---------------------------
2085
- MakerTest: test_inheritance
2086
- ---------------------------
2087
-  (0.1ms) ROLLBACK
2088
-  (0.1ms) BEGIN
2089
- ---------------------------
2090
- MakerTest: test_definitions
2091
- ---------------------------
2092
-  (0.1ms) ROLLBACK
2093
-  (0.1ms) BEGIN
2094
- -----------------------
2095
- MakerTest: test_aliases
2096
- -----------------------
2097
-  (0.1ms) ROLLBACK
2098
-  (0.1ms) BEGIN
2099
- -------------------------
2100
- MakerTest: test_sequences
2101
- -------------------------
2102
-  (0.1ms) SAVEPOINT active_record_1
2103
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:03:21.600127"], ["updated_at", "2016-12-11 05:03:21.600127"]]
2104
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 122], ["created_at", "2016-12-11 05:03:21.600909"], ["updated_at", "2016-12-11 05:03:21.600909"]]
2105
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2106
-  (0.1ms) SAVEPOINT active_record_1
2107
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:03:21.602644"], ["updated_at", "2016-12-11 05:03:21.602644"]]
2108
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 123], ["created_at", "2016-12-11 05:03:21.603400"], ["updated_at", "2016-12-11 05:03:21.603400"]]
2109
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2110
-  (0.1ms) ROLLBACK
2111
-  (0.1ms) BEGIN
2112
- ---------------------------
2113
- GeneratorTest: test_install
2114
- ---------------------------
2115
-  (0.1ms) ROLLBACK
2116
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2117
-  (0.2ms) BEGIN
2118
- ---------------------------
2119
- GeneratorTest: test_install
2120
- ---------------------------
2121
-  (0.2ms) ROLLBACK
2122
-  (0.1ms) BEGIN
2123
- -------------------------
2124
- MakerTest: test_dependent
2125
- -------------------------
2126
-  (0.2ms) SAVEPOINT active_record_1
2127
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 05:03:32.748188"], ["updated_at", "2016-12-11 05:03:32.748188"]]
2128
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 124], ["created_at", "2016-12-11 05:03:32.751319"], ["updated_at", "2016-12-11 05:03:32.751319"]]
2129
-  (0.2ms) RELEASE SAVEPOINT active_record_1
2130
-  (0.2ms) ROLLBACK
2131
-  (0.1ms) BEGIN
2132
- ---------------------------
2133
- MakerTest: test_inheritance
2134
- ---------------------------
2135
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2136
-  (0.2ms) BEGIN
2137
- ---------------------------
2138
- GeneratorTest: test_install
2139
- ---------------------------
2140
-  (0.1ms) ROLLBACK
2141
-  (0.1ms) BEGIN
2142
- ---------------------------
2143
- MakerTest: test_inheritance
2144
- ---------------------------
2145
-  (0.2ms) ROLLBACK
2146
-  (0.1ms) BEGIN
2147
- -------------------------
2148
- MakerTest: test_overrides
2149
- -------------------------
2150
-  (0.2ms) SAVEPOINT active_record_1
2151
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:05:46.839660"], ["updated_at", "2016-12-11 05:05:46.839660"]]
2152
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 125], ["created_at", "2016-12-11 05:05:46.842376"], ["updated_at", "2016-12-11 05:05:46.842376"]]
2153
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2154
-  (0.1ms) SAVEPOINT active_record_1
2155
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:05:46.844281"], ["updated_at", "2016-12-11 05:05:46.844281"]]
2156
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 126], ["created_at", "2016-12-11 05:05:46.844975"], ["updated_at", "2016-12-11 05:05:46.844975"]]
2157
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2158
-  (0.1ms) SAVEPOINT active_record_1
2159
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 05:05:46.846447"], ["updated_at", "2016-12-11 05:05:46.846447"]]
2160
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 127], ["created_at", "2016-12-11 05:05:46.847222"], ["updated_at", "2016-12-11 05:05:46.847222"]]
2161
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2162
-  (0.1ms) SAVEPOINT active_record_1
2163
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:05:46.849971"], ["updated_at", "2016-12-11 05:05:46.849971"]]
2164
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 128], ["created_at", "2016-12-11 05:05:46.851064"], ["updated_at", "2016-12-11 05:05:46.851064"]]
2165
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2166
-  (0.1ms) ROLLBACK
2167
-  (0.1ms) BEGIN
2168
- ----------------------------
2169
- MakerTest: test_associations
2170
- ----------------------------
2171
-  (0.1ms) ROLLBACK
2172
-  (0.1ms) BEGIN
2173
- -------------------------
2174
- MakerTest: test_sequences
2175
- -------------------------
2176
-  (0.2ms) SAVEPOINT active_record_1
2177
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 05:05:46.856726"], ["updated_at", "2016-12-11 05:05:46.856726"]]
2178
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 129], ["created_at", "2016-12-11 05:05:46.857762"], ["updated_at", "2016-12-11 05:05:46.857762"]]
2179
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2180
-  (0.1ms) SAVEPOINT active_record_1
2181
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:05:46.859665"], ["updated_at", "2016-12-11 05:05:46.859665"]]
2182
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 130], ["created_at", "2016-12-11 05:05:46.860369"], ["updated_at", "2016-12-11 05:05:46.860369"]]
2183
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2184
-  (0.1ms) ROLLBACK
2185
-  (0.1ms) BEGIN
2186
- ---------------------------
2187
- MakerTest: test_definitions
2188
- ---------------------------
2189
-  (0.1ms) ROLLBACK
2190
-  (0.1ms) BEGIN
2191
- -------------------------
2192
- MakerTest: test_dependent
2193
- -------------------------
2194
-  (0.1ms) SAVEPOINT active_record_1
2195
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:05:46.863620"], ["updated_at", "2016-12-11 05:05:46.863620"]]
2196
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 131], ["created_at", "2016-12-11 05:05:46.864400"], ["updated_at", "2016-12-11 05:05:46.864400"]]
2197
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2198
-  (0.1ms) ROLLBACK
2199
-  (0.1ms) BEGIN
2200
- -----------------------
2201
- MakerTest: test_aliases
2202
- -----------------------
2203
-  (0.1ms) ROLLBACK
2204
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2205
-  (0.2ms) BEGIN
2206
- -----------------------
2207
- MakerTest: test_aliases
2208
- -----------------------
2209
-  (0.1ms) ROLLBACK
2210
-  (0.1ms) BEGIN
2211
- ----------------------------
2212
- MakerTest: test_associations
2213
- ----------------------------
2214
-  (0.2ms) ROLLBACK
2215
-  (0.1ms) BEGIN
2216
- -------------------------
2217
- MakerTest: test_sequences
2218
- -------------------------
2219
-  (0.2ms) SAVEPOINT active_record_1
2220
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:07:31.351717"], ["updated_at", "2016-12-11 05:07:31.351717"]]
2221
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 132], ["created_at", "2016-12-11 05:07:31.355287"], ["updated_at", "2016-12-11 05:07:31.355287"]]
2222
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2223
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2224
-  (0.3ms) BEGIN
2225
- ----------------------------
2226
- MakerTest: test_associations
2227
- ----------------------------
2228
-  (0.3ms) ROLLBACK
2229
-  (0.1ms) BEGIN
2230
- ---------------------------
2231
- MakerTest: test_definitions
2232
- ---------------------------
2233
-  (0.1ms) ROLLBACK
2234
-  (0.1ms) BEGIN
2235
- -----------------------
2236
- MakerTest: test_aliases
2237
- -----------------------
2238
-  (0.1ms) ROLLBACK
2239
-  (0.1ms) BEGIN
2240
- -------------------------
2241
- MakerTest: test_dependent
2242
- -------------------------
2243
-  (0.1ms) SAVEPOINT active_record_1
2244
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:07:49.694687"], ["updated_at", "2016-12-11 05:07:49.694687"]]
2245
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 133], ["created_at", "2016-12-11 05:07:49.697392"], ["updated_at", "2016-12-11 05:07:49.697392"]]
2246
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2247
-  (0.2ms) ROLLBACK
2248
-  (0.1ms) BEGIN
2249
- ---------------------------
2250
- MakerTest: test_inheritance
2251
- ---------------------------
2252
-  (0.1ms) ROLLBACK
2253
-  (0.1ms) BEGIN
2254
- -------------------------
2255
- MakerTest: test_overrides
2256
- -------------------------
2257
-  (0.1ms) SAVEPOINT active_record_1
2258
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 05:07:49.701927"], ["updated_at", "2016-12-11 05:07:49.701927"]]
2259
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 134], ["created_at", "2016-12-11 05:07:49.702814"], ["updated_at", "2016-12-11 05:07:49.702814"]]
2260
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2261
-  (0.1ms) SAVEPOINT active_record_1
2262
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 05:07:49.704372"], ["updated_at", "2016-12-11 05:07:49.704372"]]
2263
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 135], ["created_at", "2016-12-11 05:07:49.705088"], ["updated_at", "2016-12-11 05:07:49.705088"]]
2264
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2265
-  (0.2ms) SAVEPOINT active_record_1
2266
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:07:49.707204"], ["updated_at", "2016-12-11 05:07:49.707204"]]
2267
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 136], ["created_at", "2016-12-11 05:07:49.708754"], ["updated_at", "2016-12-11 05:07:49.708754"]]
2268
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2269
-  (0.1ms) SAVEPOINT active_record_1
2270
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 05:07:49.710764"], ["updated_at", "2016-12-11 05:07:49.710764"]]
2271
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 137], ["created_at", "2016-12-11 05:07:49.711593"], ["updated_at", "2016-12-11 05:07:49.711593"]]
2272
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2273
-  (0.1ms) ROLLBACK
2274
-  (0.2ms) BEGIN
2275
- -------------------------
2276
- MakerTest: test_sequences
2277
- -------------------------
2278
-  (0.2ms) SAVEPOINT active_record_1
2279
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:07:49.716544"], ["updated_at", "2016-12-11 05:07:49.716544"]]
2280
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 138], ["created_at", "2016-12-11 05:07:49.717954"], ["updated_at", "2016-12-11 05:07:49.717954"]]
2281
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2282
-  (0.1ms) SAVEPOINT active_record_1
2283
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:07:49.720025"], ["updated_at", "2016-12-11 05:07:49.720025"]]
2284
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 139], ["created_at", "2016-12-11 05:07:49.720860"], ["updated_at", "2016-12-11 05:07:49.720860"]]
2285
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2286
-  (0.1ms) ROLLBACK
2287
-  (0.2ms) BEGIN
2288
- ---------------------------
2289
- GeneratorTest: test_install
2290
- ---------------------------
2291
-  (0.2ms) ROLLBACK
2292
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2293
-  (0.2ms) BEGIN
2294
- ---------------------------
2295
- GeneratorTest: test_install
2296
- ---------------------------
2297
-  (0.2ms) ROLLBACK
2298
-  (0.1ms) BEGIN
2299
- -----------------------
2300
- MakerTest: test_aliases
2301
- -----------------------
2302
-  (0.1ms) ROLLBACK
2303
-  (0.1ms) BEGIN
2304
- ----------------------------
2305
- MakerTest: test_associations
2306
- ----------------------------
2307
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2308
-  (0.2ms) BEGIN
2309
- -------------------------
2310
- MakerTest: test_overrides
2311
- -------------------------
2312
-  (0.2ms) SAVEPOINT active_record_1
2313
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail5@example.com"], ["phone", 5], ["created_at", "2016-12-11 05:09:26.036863"], ["updated_at", "2016-12-11 05:09:26.036863"]]
2314
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 140], ["created_at", "2016-12-11 05:09:26.039773"], ["updated_at", "2016-12-11 05:09:26.039773"]]
2315
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2316
-  (0.1ms) SAVEPOINT active_record_1
2317
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:09:26.041922"], ["updated_at", "2016-12-11 05:09:26.041922"]]
2318
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 141], ["created_at", "2016-12-11 05:09:26.042707"], ["updated_at", "2016-12-11 05:09:26.042707"]]
2319
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2320
-  (0.1ms) SAVEPOINT active_record_1
2321
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:09:26.044385"], ["updated_at", "2016-12-11 05:09:26.044385"]]
2322
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 142], ["created_at", "2016-12-11 05:09:26.045142"], ["updated_at", "2016-12-11 05:09:26.045142"]]
2323
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2324
-  (0.1ms) SAVEPOINT active_record_1
2325
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 05:09:26.046677"], ["updated_at", "2016-12-11 05:09:26.046677"]]
2326
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 143], ["created_at", "2016-12-11 05:09:26.047426"], ["updated_at", "2016-12-11 05:09:26.047426"]]
2327
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2328
-  (0.2ms) ROLLBACK
2329
-  (0.2ms) BEGIN
2330
- ----------------------------
2331
- MakerTest: test_associations
2332
- ----------------------------
2333
-  (0.2ms) SAVEPOINT active_record_1
2334
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 05:09:26.051827"], ["updated_at", "2016-12-11 05:09:26.051827"]]
2335
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2336
-  (0.1ms) SAVEPOINT active_record_1
2337
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 05:09:26.053478"], ["updated_at", "2016-12-11 05:09:26.053478"]]
2338
-  (0.2ms) RELEASE SAVEPOINT active_record_1
2339
-  (0.1ms) ROLLBACK
2340
-  (0.1ms) BEGIN
2341
- -------------------------
2342
- MakerTest: test_dependent
2343
- -------------------------
2344
-  (0.1ms) SAVEPOINT active_record_1
2345
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:09:26.056938"], ["updated_at", "2016-12-11 05:09:26.056938"]]
2346
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 144], ["created_at", "2016-12-11 05:09:26.058767"], ["updated_at", "2016-12-11 05:09:26.058767"]]
2347
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2348
-  (0.1ms) ROLLBACK
2349
-  (0.1ms) BEGIN
2350
- ---------------------------
2351
- MakerTest: test_inheritance
2352
- ---------------------------
2353
-  (0.1ms) SAVEPOINT active_record_1
2354
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:09:26.061660"], ["updated_at", "2016-12-11 05:09:26.061660"]]
2355
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 145], ["created_at", "2016-12-11 05:09:26.062686"], ["updated_at", "2016-12-11 05:09:26.062686"]]
2356
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2357
-  (0.2ms) ROLLBACK
2358
-  (0.1ms) BEGIN
2359
- -------------------------
2360
- MakerTest: test_sequences
2361
- -------------------------
2362
-  (0.1ms) SAVEPOINT active_record_1
2363
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:09:26.065300"], ["updated_at", "2016-12-11 05:09:26.065300"]]
2364
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 146], ["created_at", "2016-12-11 05:09:26.066158"], ["updated_at", "2016-12-11 05:09:26.066158"]]
2365
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2366
-  (0.1ms) SAVEPOINT active_record_1
2367
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 05:09:26.068203"], ["updated_at", "2016-12-11 05:09:26.068203"]]
2368
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 147], ["created_at", "2016-12-11 05:09:26.068950"], ["updated_at", "2016-12-11 05:09:26.068950"]]
2369
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2370
-  (0.1ms) ROLLBACK
2371
-  (0.1ms) BEGIN
2372
- -----------------------
2373
- MakerTest: test_aliases
2374
- -----------------------
2375
-  (0.1ms) ROLLBACK
2376
-  (0.1ms) BEGIN
2377
- ---------------------------
2378
- MakerTest: test_definitions
2379
- ---------------------------
2380
-  (0.1ms) ROLLBACK
2381
-  (0.1ms) BEGIN
2382
- ---------------------------
2383
- GeneratorTest: test_install
2384
- ---------------------------
2385
-  (0.1ms) ROLLBACK
2386
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2387
-  (18.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2388
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2389
- Migrating to CreateUsers (20140613221835)
2390
-  (0.2ms) BEGIN
2391
-  (3.2ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2392
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
2393
-  (0.5ms) COMMIT
2394
- Migrating to CreatePosts (20140615180954)
2395
-  (0.2ms) BEGIN
2396
-  (1.5ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2397
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
2398
-  (0.3ms) COMMIT
2399
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2400
-  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2401
- FROM pg_constraint c
2402
- JOIN pg_class t1 ON c.conrelid = t1.oid
2403
- JOIN pg_class t2 ON c.confrelid = t2.oid
2404
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2405
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2406
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
2407
- WHERE c.contype = 'f'
2408
- AND t1.relname = 'posts'
2409
- AND t3.nspname = ANY (current_schemas(false))
2410
- ORDER BY c.conname
2411
- 
2412
-  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2413
- FROM pg_constraint c
2414
- JOIN pg_class t1 ON c.conrelid = t1.oid
2415
- JOIN pg_class t2 ON c.confrelid = t2.oid
2416
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2417
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2418
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
2419
- WHERE c.contype = 'f'
2420
- AND t1.relname = 'users'
2421
- AND t3.nspname = ANY (current_schemas(false))
2422
- ORDER BY c.conname
2423
-
2424
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2425
-  (0.2ms) BEGIN
2426
- ---------------------------
2427
- GeneratorTest: test_install
2428
- ---------------------------
2429
-  (0.3ms) ROLLBACK
2430
-  (0.1ms) BEGIN
2431
- ---------------------------
2432
- MakerTest: test_inheritance
2433
- ---------------------------
2434
-  (0.2ms) SAVEPOINT active_record_1
2435
- SQL (0.5ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-13 20:08:38.734546"], ["updated_at", "2016-12-13 20:08:38.734546"]]
2436
- SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 1], ["created_at", "2016-12-13 20:08:38.737715"], ["updated_at", "2016-12-13 20:08:38.737715"]]
2437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2438
-  (0.1ms) ROLLBACK
2439
-  (0.1ms) BEGIN
2440
- ----------------------------
2441
- MakerTest: test_associations
2442
- ----------------------------
2443
-  (0.1ms) SAVEPOINT active_record_1
2444
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:08:38.740855"], ["updated_at", "2016-12-13 20:08:38.740855"]]
2445
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2446
-  (0.1ms) SAVEPOINT active_record_1
2447
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:08:38.742113"], ["updated_at", "2016-12-13 20:08:38.742113"]]
2448
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2449
-  (0.1ms) ROLLBACK
2450
-  (0.1ms) BEGIN
2451
- -------------------------
2452
- MakerTest: test_dependent
2453
- -------------------------
2454
-  (0.1ms) SAVEPOINT active_record_1
2455
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-13 20:08:38.744923"], ["updated_at", "2016-12-13 20:08:38.744923"]]
2456
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 2], ["created_at", "2016-12-13 20:08:38.745890"], ["updated_at", "2016-12-13 20:08:38.745890"]]
2457
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2458
-  (0.1ms) ROLLBACK
2459
-  (0.1ms) BEGIN
2460
- -------------------------
2461
- MakerTest: test_sequences
2462
- -------------------------
2463
-  (0.1ms) SAVEPOINT active_record_1
2464
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-13 20:08:38.748280"], ["updated_at", "2016-12-13 20:08:38.748280"]]
2465
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 3], ["created_at", "2016-12-13 20:08:38.748984"], ["updated_at", "2016-12-13 20:08:38.748984"]]
2466
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2467
-  (0.1ms) SAVEPOINT active_record_1
2468
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-13 20:08:38.750713"], ["updated_at", "2016-12-13 20:08:38.750713"]]
2469
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 4], ["created_at", "2016-12-13 20:08:38.751519"], ["updated_at", "2016-12-13 20:08:38.751519"]]
2470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2471
-  (0.1ms) ROLLBACK
2472
-  (0.1ms) BEGIN
2473
- ---------------------------
2474
- MakerTest: test_definitions
2475
- ---------------------------
2476
-  (0.1ms) ROLLBACK
2477
-  (0.1ms) BEGIN
2478
- -------------------------
2479
- MakerTest: test_overrides
2480
- -------------------------
2481
-  (0.1ms) SAVEPOINT active_record_1
2482
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-13 20:08:38.755486"], ["updated_at", "2016-12-13 20:08:38.755486"]]
2483
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 5], ["created_at", "2016-12-13 20:08:38.756299"], ["updated_at", "2016-12-13 20:08:38.756299"]]
2484
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2485
-  (0.1ms) SAVEPOINT active_record_1
2486
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-13 20:08:38.757775"], ["updated_at", "2016-12-13 20:08:38.757775"]]
2487
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 6], ["created_at", "2016-12-13 20:08:38.758442"], ["updated_at", "2016-12-13 20:08:38.758442"]]
2488
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2489
-  (0.1ms) SAVEPOINT active_record_1
2490
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-13 20:08:38.759898"], ["updated_at", "2016-12-13 20:08:38.759898"]]
2491
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 7], ["created_at", "2016-12-13 20:08:38.760776"], ["updated_at", "2016-12-13 20:08:38.760776"]]
2492
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2493
-  (0.1ms) SAVEPOINT active_record_1
2494
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-13 20:08:38.762818"], ["updated_at", "2016-12-13 20:08:38.762818"]]
2495
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 8], ["created_at", "2016-12-13 20:08:38.763855"], ["updated_at", "2016-12-13 20:08:38.763855"]]
2496
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2497
-  (0.1ms) ROLLBACK
2498
-  (0.1ms) BEGIN
2499
- -----------------------
2500
- MakerTest: test_aliases
2501
- -----------------------
2502
-  (0.1ms) ROLLBACK
2503
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2504
-  (0.2ms) BEGIN
2505
- -------------------------
2506
- MakerTest: test_dependent
2507
- -------------------------
2508
-  (0.2ms) SAVEPOINT active_record_1
2509
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-13 20:10:05.988201"], ["updated_at", "2016-12-13 20:10:05.988201"]]
2510
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 9], ["created_at", "2016-12-13 20:10:05.991762"], ["updated_at", "2016-12-13 20:10:05.991762"]]
2511
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2512
-  (0.2ms) ROLLBACK
2513
-  (0.1ms) BEGIN
2514
- ---------------------------
2515
- MakerTest: test_inheritance
2516
- ---------------------------
2517
-  (0.1ms) SAVEPOINT active_record_1
2518
- SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-13 20:10:05.995081"], ["updated_at", "2016-12-13 20:10:05.995081"]]
2519
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 10], ["created_at", "2016-12-13 20:10:05.996034"], ["updated_at", "2016-12-13 20:10:05.996034"]]
2520
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2521
-  (0.1ms) ROLLBACK
2522
-  (0.1ms) BEGIN
2523
- -------------------------
2524
- MakerTest: test_overrides
2525
- -------------------------
2526
-  (0.3ms) SAVEPOINT active_record_1
2527
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-13 20:10:06.002288"], ["updated_at", "2016-12-13 20:10:06.002288"]]
2528
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 11], ["created_at", "2016-12-13 20:10:06.003315"], ["updated_at", "2016-12-13 20:10:06.003315"]]
2529
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2530
-  (0.1ms) SAVEPOINT active_record_1
2531
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-13 20:10:06.005074"], ["updated_at", "2016-12-13 20:10:06.005074"]]
2532
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 12], ["created_at", "2016-12-13 20:10:06.005999"], ["updated_at", "2016-12-13 20:10:06.005999"]]
2533
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2534
-  (0.2ms) SAVEPOINT active_record_1
2535
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-13 20:10:06.008955"], ["updated_at", "2016-12-13 20:10:06.008955"]]
2536
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 13], ["created_at", "2016-12-13 20:10:06.009971"], ["updated_at", "2016-12-13 20:10:06.009971"]]
2537
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2538
-  (0.1ms) SAVEPOINT active_record_1
2539
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-13 20:10:06.011496"], ["updated_at", "2016-12-13 20:10:06.011496"]]
2540
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 14], ["created_at", "2016-12-13 20:10:06.012234"], ["updated_at", "2016-12-13 20:10:06.012234"]]
2541
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2542
-  (0.1ms) ROLLBACK
2543
-  (0.1ms) BEGIN
2544
- ----------------------------
2545
- MakerTest: test_associations
2546
- ----------------------------
2547
-  (0.1ms) SAVEPOINT active_record_1
2548
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:10:06.014657"], ["updated_at", "2016-12-13 20:10:06.014657"]]
2549
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2550
-  (0.1ms) SAVEPOINT active_record_1
2551
- SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:10:06.015942"], ["updated_at", "2016-12-13 20:10:06.015942"]]
2552
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2553
-  (0.1ms) ROLLBACK
2554
-  (0.1ms) BEGIN
2555
- -------------------------
2556
- MakerTest: test_sequences
2557
- -------------------------
2558
-  (0.1ms) SAVEPOINT active_record_1
2559
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-13 20:10:06.018808"], ["updated_at", "2016-12-13 20:10:06.018808"]]
2560
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 15], ["created_at", "2016-12-13 20:10:06.019653"], ["updated_at", "2016-12-13 20:10:06.019653"]]
2561
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2562
-  (0.1ms) SAVEPOINT active_record_1
2563
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-13 20:10:06.021458"], ["updated_at", "2016-12-13 20:10:06.021458"]]
2564
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 16], ["created_at", "2016-12-13 20:10:06.022230"], ["updated_at", "2016-12-13 20:10:06.022230"]]
2565
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2566
-  (0.1ms) ROLLBACK
2567
-  (0.1ms) BEGIN
2568
- ---------------------------
2569
- MakerTest: test_definitions
2570
- ---------------------------
2571
-  (0.1ms) ROLLBACK
2572
-  (0.1ms) BEGIN
2573
- -----------------------
2574
- MakerTest: test_aliases
2575
- -----------------------
2576
-  (0.1ms) ROLLBACK
2577
-  (0.1ms) BEGIN
2578
- ---------------------------
2579
- GeneratorTest: test_install
2580
- ---------------------------
2581
-  (0.1ms) ROLLBACK
2582
-  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2583
-  (22.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2584
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2585
- Migrating to CreateUsers (20140613221835)
2586
-  (0.1ms) BEGIN
2587
-  (2.4ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2588
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
2589
-  (0.6ms) COMMIT
2590
- Migrating to CreatePosts (20140615180954)
2591
-  (0.2ms) BEGIN
2592
-  (1.4ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2593
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
2594
-  (0.3ms) COMMIT
2595
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2596
-  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2597
- FROM pg_constraint c
2598
- JOIN pg_class t1 ON c.conrelid = t1.oid
2599
- JOIN pg_class t2 ON c.confrelid = t2.oid
2600
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2601
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2602
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
2603
- WHERE c.contype = 'f'
2604
- AND t1.relname = 'posts'
2605
- AND t3.nspname = ANY (current_schemas(false))
2606
- ORDER BY c.conname
2607
- 
2608
-  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2609
- FROM pg_constraint c
2610
- JOIN pg_class t1 ON c.conrelid = t1.oid
2611
- JOIN pg_class t2 ON c.confrelid = t2.oid
2612
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2613
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2614
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
2615
- WHERE c.contype = 'f'
2616
- AND t1.relname = 'users'
2617
- AND t3.nspname = ANY (current_schemas(false))
2618
- ORDER BY c.conname
2619
-
2620
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2621
-  (0.2ms) BEGIN
2622
- ---------------------------
2623
- GeneratorTest: test_install
2624
- ---------------------------
2625
-  (0.1ms) ROLLBACK
2626
-  (0.1ms) BEGIN
2627
- -------------------------
2628
- MakerTest: test_dependent
2629
- -------------------------
2630
-  (0.2ms) SAVEPOINT active_record_1
2631
- SQL (5.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-14 05:32:45.934981"], ["updated_at", "2016-12-14 05:32:45.934981"]]
2632
- SQL (1.0ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 1], ["created_at", "2016-12-14 05:32:45.943024"], ["updated_at", "2016-12-14 05:32:45.943024"]]
2633
-  (0.2ms) RELEASE SAVEPOINT active_record_1
2634
-  (0.2ms) ROLLBACK
2635
-  (0.1ms) BEGIN
2636
- ---------------------------
2637
- MakerTest: test_definitions
2638
- ---------------------------
2639
-  (0.1ms) ROLLBACK
2640
-  (0.1ms) BEGIN
2641
- -----------------------
2642
- MakerTest: test_aliases
2643
- -----------------------
2644
-  (0.1ms) ROLLBACK
2645
-  (0.1ms) BEGIN
2646
- -------------------------
2647
- MakerTest: test_overrides
2648
- -------------------------
2649
-  (0.1ms) SAVEPOINT active_record_1
2650
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-14 05:32:45.950255"], ["updated_at", "2016-12-14 05:32:45.950255"]]
2651
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 2], ["created_at", "2016-12-14 05:32:45.951222"], ["updated_at", "2016-12-14 05:32:45.951222"]]
2652
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2653
-  (0.2ms) SAVEPOINT active_record_1
2654
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-14 05:32:45.954740"], ["updated_at", "2016-12-14 05:32:45.954740"]]
2655
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 3], ["created_at", "2016-12-14 05:32:45.955822"], ["updated_at", "2016-12-14 05:32:45.955822"]]
2656
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2657
-  (0.1ms) SAVEPOINT active_record_1
2658
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-14 05:32:45.957603"], ["updated_at", "2016-12-14 05:32:45.957603"]]
2659
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 4], ["created_at", "2016-12-14 05:32:45.958494"], ["updated_at", "2016-12-14 05:32:45.958494"]]
2660
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2661
-  (0.1ms) SAVEPOINT active_record_1
2662
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-14 05:32:45.960073"], ["updated_at", "2016-12-14 05:32:45.960073"]]
2663
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 5], ["created_at", "2016-12-14 05:32:45.960757"], ["updated_at", "2016-12-14 05:32:45.960757"]]
2664
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2665
-  (0.1ms) ROLLBACK
2666
-  (0.1ms) BEGIN
2667
- ---------------------------
2668
- MakerTest: test_inheritance
2669
- ---------------------------
2670
-  (0.1ms) SAVEPOINT active_record_1
2671
- SQL (0.1ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-14 05:32:45.963209"], ["updated_at", "2016-12-14 05:32:45.963209"]]
2672
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 6], ["created_at", "2016-12-14 05:32:45.964129"], ["updated_at", "2016-12-14 05:32:45.964129"]]
2673
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2674
-  (0.1ms) ROLLBACK
2675
-  (0.1ms) BEGIN
2676
- ----------------------------
2677
- MakerTest: test_associations
2678
- ----------------------------
2679
-  (0.1ms) SAVEPOINT active_record_1
2680
- SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-14 05:32:45.966437"], ["updated_at", "2016-12-14 05:32:45.966437"]]
2681
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2682
-  (0.1ms) SAVEPOINT active_record_1
2683
- SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-14 05:32:45.967580"], ["updated_at", "2016-12-14 05:32:45.967580"]]
2684
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2685
-  (0.1ms) ROLLBACK
2686
-  (0.2ms) BEGIN
2687
- -------------------------
2688
- MakerTest: test_sequences
2689
- -------------------------
2690
-  (0.1ms) SAVEPOINT active_record_1
2691
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-14 05:32:45.970351"], ["updated_at", "2016-12-14 05:32:45.970351"]]
2692
- SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 7], ["created_at", "2016-12-14 05:32:45.971147"], ["updated_at", "2016-12-14 05:32:45.971147"]]
2693
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2694
-  (0.2ms) SAVEPOINT active_record_1
2695
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-14 05:32:45.972914"], ["updated_at", "2016-12-14 05:32:45.972914"]]
2696
- SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 8], ["created_at", "2016-12-14 05:32:45.973665"], ["updated_at", "2016-12-14 05:32:45.973665"]]
2697
-  (0.1ms) RELEASE SAVEPOINT active_record_1
2698
-  (0.1ms) ROLLBACK