makers 0.2.0 → 4.0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +40 -29
  3. data/lib/generators/makers/{install_generator.rb → install/install_generator.rb} +1 -1
  4. data/lib/generators/makers/{templates → install/templates}/definitions.rb +0 -0
  5. data/lib/makers.rb +0 -1
  6. data/lib/makers/dsl/maker.rb +2 -2
  7. data/lib/makers/extensions/active_support/test_case.rb +1 -0
  8. data/lib/makers/proxy.rb +1 -1
  9. data/lib/makers/railtie.rb +10 -2
  10. data/lib/makers/version.rb +1 -1
  11. data/test/dummy/app/assets/javascripts/application.js +2 -2
  12. data/test/dummy/app/assets/stylesheets/application.css +1 -1
  13. data/test/dummy/app/models/post.rb +2 -0
  14. data/test/dummy/app/models/user.rb +2 -0
  15. data/test/dummy/bin/bundle +0 -0
  16. data/test/dummy/bin/rails +1 -1
  17. data/test/dummy/bin/rake +0 -0
  18. data/test/dummy/bin/setup +1 -1
  19. data/test/dummy/config.ru +1 -1
  20. data/test/dummy/config/initializers/cookies_serializer.rb +1 -1
  21. data/test/dummy/config/initializers/mime_types.rb +1 -1
  22. data/test/dummy/config/initializers/session_store.rb +1 -1
  23. data/test/dummy/config/secrets.yml +2 -2
  24. data/test/dummy/db/migrate/20140613221835_create_users.rb +2 -0
  25. data/test/dummy/db/migrate/20140615180954_create_posts.rb +2 -0
  26. data/test/dummy/public/404.html +57 -63
  27. data/test/dummy/public/422.html +57 -63
  28. data/test/dummy/public/500.html +56 -62
  29. data/test/generator_test.rb +1 -1
  30. data/test/{makers_test.rb → maker_test.rb} +1 -1
  31. metadata +6 -14
  32. data/test/dummy/app/models/group.rb +0 -2
  33. data/test/dummy/db/schema.rb +0 -57
  34. data/test/dummy/log/development.log +0 -176
  35. data/test/dummy/log/test.log +0 -1529
@@ -1,1529 +0,0 @@
1
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreateUsers (20140613221835)
5
-  (0.1ms) BEGIN
6
-  (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, "updated_at" timestamp) 
7
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
8
-  (0.6ms) COMMIT
9
- Migrating to CreatePosts (20140615180954)
10
-  (0.3ms) BEGIN
11
-  (1.9ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer, "created_at" timestamp, "updated_at" timestamp) 
12
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
13
-  (0.4ms) COMMIT
14
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
15
-  (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
16
- FROM pg_constraint c
17
- JOIN pg_class t1 ON c.conrelid = t1.oid
18
- JOIN pg_class t2 ON c.confrelid = t2.oid
19
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
20
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
21
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
22
- WHERE c.contype = 'f'
23
- AND t1.relname = 'posts'
24
- AND t3.nspname = ANY (current_schemas(false))
25
- ORDER BY c.conname
26
- 
27
-  (1.3ms) 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
28
- FROM pg_constraint c
29
- JOIN pg_class t1 ON c.conrelid = t1.oid
30
- JOIN pg_class t2 ON c.confrelid = t2.oid
31
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
32
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
33
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
34
- WHERE c.contype = 'f'
35
- AND t1.relname = 'users'
36
- AND t3.nspname = ANY (current_schemas(false))
37
- ORDER BY c.conname
38
-
39
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
-  (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
42
- FROM pg_constraint c
43
- JOIN pg_class t1 ON c.conrelid = t1.oid
44
- JOIN pg_class t2 ON c.confrelid = t2.oid
45
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
46
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
47
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
48
- WHERE c.contype = 'f'
49
- AND t1.relname = 'posts'
50
- AND t3.nspname = ANY (current_schemas(false))
51
- ORDER BY c.conname
52
- 
53
-  (1.3ms) 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
54
- FROM pg_constraint c
55
- JOIN pg_class t1 ON c.conrelid = t1.oid
56
- JOIN pg_class t2 ON c.confrelid = t2.oid
57
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
58
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
59
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
60
- WHERE c.contype = 'f'
61
- AND t1.relname = 'users'
62
- AND t3.nspname = ANY (current_schemas(false))
63
- ORDER BY c.conname
64
-
65
-  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
66
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
67
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
68
- Migrating to CreateUsers (20140613221835)
69
-  (0.1ms) BEGIN
70
-  (2.5ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
71
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
72
-  (0.5ms) COMMIT
73
- Migrating to CreatePosts (20140615180954)
74
-  (0.3ms) BEGIN
75
-  (1.8ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
76
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
77
-  (0.5ms) COMMIT
78
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
79
-  (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
80
- FROM pg_constraint c
81
- JOIN pg_class t1 ON c.conrelid = t1.oid
82
- JOIN pg_class t2 ON c.confrelid = t2.oid
83
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
84
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
85
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
86
- WHERE c.contype = 'f'
87
- AND t1.relname = 'posts'
88
- AND t3.nspname = ANY (current_schemas(false))
89
- ORDER BY c.conname
90
- 
91
-  (1.3ms) 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
92
- FROM pg_constraint c
93
- JOIN pg_class t1 ON c.conrelid = t1.oid
94
- JOIN pg_class t2 ON c.confrelid = t2.oid
95
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
96
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
97
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
98
- WHERE c.contype = 'f'
99
- AND t1.relname = 'users'
100
- AND t3.nspname = ANY (current_schemas(false))
101
- ORDER BY c.conname
102
-
103
- SQL (5.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
104
-  (9.0ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer)
105
-  (2.5ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
106
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
107
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
108
-  (0.3ms) SELECT version FROM "schema_migrations"
109
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140615180954')
110
-  (0.2ms) BEGIN
111
- -------------------------
112
- AliasesTest: test_aliases
113
- -------------------------
114
-  (0.2ms) ROLLBACK
115
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
116
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
117
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
118
-  (17.3ms) DROP TABLE "posts" CASCADE
119
-  (3.1ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
120
-  (1.7ms) DROP TABLE "users" CASCADE
121
-  (2.3ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
122
-  (0.3ms) SELECT version FROM "schema_migrations"
123
-  (0.2ms) BEGIN
124
- -------------------------
125
- AliasesTest: test_aliases
126
- -------------------------
127
-  (0.2ms) ROLLBACK
128
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
129
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
130
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
131
-  (10.1ms) DROP TABLE "posts" CASCADE
132
-  (2.7ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
133
-  (1.1ms) DROP TABLE "users" CASCADE
134
-  (2.0ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
135
-  (0.2ms) SELECT version FROM "schema_migrations"
136
-  (0.2ms) BEGIN
137
- -------------------------
138
- AliasesTest: test_aliases
139
- -------------------------
140
-  (0.1ms) ROLLBACK
141
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
142
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
143
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
144
-  (7.7ms) DROP TABLE "posts" CASCADE
145
-  (7.6ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
146
-  (1.0ms) DROP TABLE "users" CASCADE
147
-  (2.1ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
148
-  (0.2ms) SELECT version FROM "schema_migrations"
149
-  (0.2ms) BEGIN
150
- -------------------------
151
- AliasesTest: test_aliases
152
- -------------------------
153
-  (0.2ms) ROLLBACK
154
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
155
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
156
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
157
-  (8.1ms) DROP TABLE "posts" CASCADE
158
-  (8.0ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
159
-  (1.0ms) DROP TABLE "users" CASCADE
160
-  (2.3ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
161
-  (0.3ms) SELECT version FROM "schema_migrations"
162
-  (0.2ms) BEGIN
163
- --------------------------------
164
- MakersTest: test_create_instance
165
- --------------------------------
166
-  (0.2ms) ROLLBACK
167
-  (0.2ms) BEGIN
168
- -------------------------------
169
- MakersTest: test_build_instance
170
- -------------------------------
171
-  (0.1ms) ROLLBACK
172
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
174
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
175
-  (1.9ms) DROP TABLE "posts" CASCADE
176
-  (2.6ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
177
-  (1.0ms) DROP TABLE "users" CASCADE
178
-  (2.3ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
179
-  (0.2ms) SELECT version FROM "schema_migrations"
180
-  (0.4ms) BEGIN
181
- -------------------------------
182
- MakersTest: test_build_instance
183
- -------------------------------
184
-  (0.2ms) ROLLBACK
185
-  (0.1ms) BEGIN
186
- --------------------------------
187
- MakersTest: test_create_instance
188
- --------------------------------
189
-  (0.1ms) ROLLBACK
190
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
191
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
192
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
193
-  (1.8ms) DROP TABLE "posts" CASCADE
194
-  (2.6ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
195
-  (1.1ms) DROP TABLE "users" CASCADE
196
-  (2.4ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
197
-  (0.2ms) SELECT version FROM "schema_migrations"
198
-  (0.2ms) BEGIN
199
- -------------------------------
200
- MakersTest: test_build_instance
201
- -------------------------------
202
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
203
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
204
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
205
-  (7.9ms) DROP TABLE "posts" CASCADE
206
-  (8.3ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
207
-  (1.1ms) DROP TABLE "users" CASCADE
208
-  (2.0ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
209
-  (0.4ms) SELECT version FROM "schema_migrations"
210
-  (0.2ms) BEGIN
211
- -------------------------------
212
- MakersTest: test_build_instance
213
- -------------------------------
214
-  (0.2ms) ROLLBACK
215
-  (0.2ms) BEGIN
216
- --------------------------------
217
- MakersTest: test_create_instance
218
- --------------------------------
219
-  (0.1ms) SAVEPOINT active_record_1
220
- SQL (5.8ms) INSERT INTO "users" ("name", "email") VALUES ($1, $2) RETURNING "id" [["name", "#<Proc:0x007fde9e188cb8@/Users/Matt/Documents/Github/Makers/lib/makers/dsl/maker.rb:65 (lambda)>"], ["email", "#<Proc:0x007fde9e188bf0@/Users/Matt/Documents/Github/Makers/lib/makers/dsl/maker.rb:29 (lambda)>"]]
221
-  (0.1ms) RELEASE SAVEPOINT active_record_1
222
-  (0.1ms) ROLLBACK
223
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
226
-  (7.7ms) DROP TABLE "posts" CASCADE
227
-  (8.1ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
228
-  (1.0ms) DROP TABLE "users" CASCADE
229
-  (3.2ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
230
-  (0.5ms) SELECT version FROM "schema_migrations"
231
-  (0.2ms) BEGIN
232
- -----------------------------------
233
- AttributesTest: test_block_sequence
234
- -----------------------------------
235
-  (0.3ms) ROLLBACK
236
-  (0.2ms) BEGIN
237
- -------------------------------------
238
- AttributesTest: test_numeric_sequence
239
- -------------------------------------
240
-  (0.2ms) ROLLBACK
241
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
242
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
243
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
244
- Migrating to CreateUsers (20140613221835)
245
-  (0.2ms) BEGIN
246
-  (14.1ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
247
-  (0.1ms) ROLLBACK
248
-  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
249
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
250
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
251
- Migrating to CreateUsers (20140613221835)
252
-  (0.2ms) BEGIN
253
-  (2.4ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
254
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
255
-  (6.4ms) COMMIT
256
- Migrating to CreatePosts (20140615180954)
257
-  (11.5ms) BEGIN
258
-  (14.6ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
259
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
260
-  (0.5ms) COMMIT
261
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
262
-  (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
263
- FROM pg_constraint c
264
- JOIN pg_class t1 ON c.conrelid = t1.oid
265
- JOIN pg_class t2 ON c.confrelid = t2.oid
266
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
267
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
268
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
269
- WHERE c.contype = 'f'
270
- AND t1.relname = 'posts'
271
- AND t3.nspname = ANY (current_schemas(false))
272
- ORDER BY c.conname
273
- 
274
-  (1.3ms) 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
275
- FROM pg_constraint c
276
- JOIN pg_class t1 ON c.conrelid = t1.oid
277
- JOIN pg_class t2 ON c.confrelid = t2.oid
278
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
279
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
280
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
281
- WHERE c.contype = 'f'
282
- AND t1.relname = 'users'
283
- AND t3.nspname = ANY (current_schemas(false))
284
- ORDER BY c.conname
285
-
286
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
287
-  (0.2ms) BEGIN
288
- ---------------------------------------
289
- InheritanceTest: test_return_attributes
290
- ---------------------------------------
291
-  (0.2ms) ROLLBACK
292
-  (0.1ms) BEGIN
293
- ------------------------------------
294
- InheritanceTest: test_build_instance
295
- ------------------------------------
296
-  (0.2ms) ROLLBACK
297
-  (0.1ms) BEGIN
298
- -------------------------------------
299
- InheritanceTest: test_create_instance
300
- -------------------------------------
301
-  (0.2ms) SAVEPOINT active_record_1
302
- SQL (0.5ms) INSERT INTO "users" DEFAULT VALUES RETURNING "id"
303
-  (0.1ms) RELEASE SAVEPOINT active_record_1
304
-  (0.2ms) ROLLBACK
305
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
306
-  (0.2ms) BEGIN
307
- -------------------------------------
308
- InheritanceTest: test_create_instance
309
- -------------------------------------
310
-  (0.2ms) ROLLBACK
311
-  (0.2ms) BEGIN
312
- ------------------------------------
313
- InheritanceTest: test_build_instance
314
- ------------------------------------
315
-  (0.1ms) ROLLBACK
316
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
317
-  (0.1ms) BEGIN
318
- ------------------------------------
319
- InheritanceTest: test_build_instance
320
- ------------------------------------
321
-  (0.1ms) ROLLBACK
322
-  (0.1ms) BEGIN
323
- -------------------------------------
324
- InheritanceTest: test_create_instance
325
- -------------------------------------
326
-  (0.1ms) SAVEPOINT active_record_1
327
- SQL (0.4ms) INSERT INTO "users" DEFAULT VALUES RETURNING "id"
328
-  (0.1ms) RELEASE SAVEPOINT active_record_1
329
-  (0.2ms) ROLLBACK
330
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
-  (0.3ms) BEGIN
332
- ------------------------------------
333
- InheritanceTest: test_build_instance
334
- ------------------------------------
335
-  (0.3ms) ROLLBACK
336
-  (0.2ms) BEGIN
337
- -------------------------------------
338
- InheritanceTest: test_create_instance
339
- -------------------------------------
340
-  (0.1ms) SAVEPOINT active_record_1
341
- SQL (0.8ms) INSERT INTO "users" DEFAULT VALUES RETURNING "id"
342
-  (0.2ms) RELEASE SAVEPOINT active_record_1
343
-  (0.2ms) ROLLBACK
344
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
345
-  (0.2ms) BEGIN
346
- ------------------------------------
347
- InheritanceTest: test_build_instance
348
- ------------------------------------
349
-  (0.2ms) ROLLBACK
350
-  (0.2ms) BEGIN
351
- -------------------------------------
352
- InheritanceTest: test_create_instance
353
- -------------------------------------
354
-  (0.1ms) SAVEPOINT active_record_1
355
- SQL (0.4ms) INSERT INTO "users" DEFAULT VALUES RETURNING "id"
356
-  (0.1ms) RELEASE SAVEPOINT active_record_1
357
-  (0.2ms) ROLLBACK
358
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
359
-  (0.2ms) BEGIN
360
- -------------------------------------
361
- InheritanceTest: test_create_instance
362
- -------------------------------------
363
-  (0.1ms) SAVEPOINT active_record_1
364
- SQL (0.5ms) INSERT INTO "users" DEFAULT VALUES RETURNING "id"
365
-  (0.1ms) RELEASE SAVEPOINT active_record_1
366
-  (0.2ms) ROLLBACK
367
-  (0.1ms) BEGIN
368
- ------------------------------------
369
- InheritanceTest: test_build_instance
370
- ------------------------------------
371
-  (0.1ms) ROLLBACK
372
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
373
-  (0.2ms) BEGIN
374
- ------------------------------------
375
- InheritanceTest: test_build_instance
376
- ------------------------------------
377
-  (0.2ms) ROLLBACK
378
-  (0.1ms) BEGIN
379
- -------------------------------------
380
- InheritanceTest: test_create_instance
381
- -------------------------------------
382
-  (0.1ms) SAVEPOINT active_record_1
383
- SQL (0.6ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail2@example.com"], ["age", 9]]
384
-  (0.1ms) RELEASE SAVEPOINT active_record_1
385
-  (0.2ms) ROLLBACK
386
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
387
-  (0.2ms) BEGIN
388
- ------------------------------------
389
- InheritanceTest: test_build_instance
390
- ------------------------------------
391
-  (0.2ms) ROLLBACK
392
-  (0.1ms) BEGIN
393
- -------------------------------------
394
- InheritanceTest: test_create_instance
395
- -------------------------------------
396
-  (0.1ms) SAVEPOINT active_record_1
397
- SQL (0.4ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail2@example.com"], ["age", 9]]
398
-  (0.2ms) RELEASE SAVEPOINT active_record_1
399
-  (0.2ms) ROLLBACK
400
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
401
-  (0.2ms) BEGIN
402
- ------------------------------------
403
- InheritanceTest: test_build_instance
404
- ------------------------------------
405
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
406
-  (0.2ms) BEGIN
407
- -------------------------------------
408
- InheritanceTest: test_create_instance
409
- -------------------------------------
410
-  (0.2ms) SAVEPOINT active_record_1
411
- SQL (0.5ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail1@example.com"], ["age", 9]]
412
-  (0.1ms) RELEASE SAVEPOINT active_record_1
413
-  (0.2ms) ROLLBACK
414
-  (0.2ms) BEGIN
415
- ------------------------------------
416
- InheritanceTest: test_build_instance
417
- ------------------------------------
418
-  (1.2ms) ROLLBACK
419
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
420
-  (0.2ms) BEGIN
421
- --------------------------
422
- ListsTest: test_build_list
423
- --------------------------
424
-  (0.1ms) ROLLBACK
425
-  (0.3ms) BEGIN
426
- ---------------------------
427
- ListsTest: test_create_list
428
- ---------------------------
429
-  (0.1ms) SAVEPOINT active_record_1
430
- SQL (0.4ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail4@example.com"], ["age", 4]]
431
-  (0.2ms) RELEASE SAVEPOINT active_record_1
432
-  (0.2ms) SAVEPOINT active_record_1
433
- SQL (0.2ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail5@example.com"], ["age", 5]]
434
-  (0.1ms) RELEASE SAVEPOINT active_record_1
435
-  (0.1ms) SAVEPOINT active_record_1
436
- SQL (0.2ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "name"], ["email", "mail6@example.com"], ["age", 6]]
437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
438
-  (0.2ms) ROLLBACK
439
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
440
-  (0.2ms) BEGIN
441
- -----------------------------------
442
- OverridesTest: test_create_instance
443
- -----------------------------------
444
-  (0.1ms) SAVEPOINT active_record_1
445
- SQL (0.4ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "other"], ["email", "mail1@example.com"], ["age", 1]]
446
-  (0.2ms) RELEASE SAVEPOINT active_record_1
447
-  (0.1ms) SAVEPOINT active_record_1
448
- SQL (0.2ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "other"], ["email", "mail2@example.com"], ["age", 2]]
449
-  (0.1ms) RELEASE SAVEPOINT active_record_1
450
-  (0.1ms) SAVEPOINT active_record_1
451
- SQL (0.2ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "other"], ["email", "mail3@example.com"], ["age", 3]]
452
-  (0.2ms) RELEASE SAVEPOINT active_record_1
453
-  (0.2ms) SAVEPOINT active_record_1
454
- SQL (0.2ms) INSERT INTO "users" ("name", "email", "age") VALUES ($1, $2, $3) RETURNING "id" [["name", "other"], ["email", "mail4@example.com"], ["age", 4]]
455
-  (0.1ms) RELEASE SAVEPOINT active_record_1
456
-  (0.2ms) ROLLBACK
457
-  (0.2ms) BEGIN
458
- ----------------------------------
459
- OverridesTest: test_build_instance
460
- ----------------------------------
461
-  (0.2ms) ROLLBACK
462
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
463
-  (0.2ms) BEGIN
464
- -------------------------------------------
465
- AssociationsTest: test_has_many_association
466
- -------------------------------------------
467
-  (0.2ms) ROLLBACK
468
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
-  (0.3ms) BEGIN
470
- -------------------------------------------
471
- AssociationsTest: test_has_many_association
472
- -------------------------------------------
473
-  (0.2ms) ROLLBACK
474
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
475
-  (0.2ms) BEGIN
476
- -------------------------------------------
477
- AssociationsTest: test_has_many_association
478
- -------------------------------------------
479
-  (0.2ms) ROLLBACK
480
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
481
-  (0.2ms) BEGIN
482
- -------------------------------------------
483
- AssociationsTest: test_has_many_association
484
- -------------------------------------------
485
-  (0.2ms) ROLLBACK
486
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
-  (0.2ms) BEGIN
488
- -------------------------------------------
489
- AssociationsTest: test_has_many_association
490
- -------------------------------------------
491
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
492
-  (0.2ms) BEGIN
493
- -------------------------------------------
494
- AssociationsTest: test_has_many_association
495
- -------------------------------------------
496
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
497
-  (0.2ms) BEGIN
498
- -------------------------------------------
499
- AssociationsTest: test_has_many_association
500
- -------------------------------------------
501
-  (0.2ms) SAVEPOINT active_record_1
502
- SQL (2.4ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
503
-  (0.2ms) RELEASE SAVEPOINT active_record_1
504
-  (0.1ms) SAVEPOINT active_record_1
505
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
506
-  (0.1ms) RELEASE SAVEPOINT active_record_1
507
-  (0.2ms) ROLLBACK
508
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
509
-  (0.2ms) BEGIN
510
- -------------------------
511
- AliasesTest: test_aliases
512
- -------------------------
513
-  (0.2ms) ROLLBACK
514
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
515
-  (0.2ms) BEGIN
516
- -------------------------------------------
517
- AssociationsTest: test_has_many_association
518
- -------------------------------------------
519
-  (0.2ms) SAVEPOINT active_record_1
520
- SQL (0.6ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
521
-  (0.2ms) RELEASE SAVEPOINT active_record_1
522
-  (0.1ms) SAVEPOINT active_record_1
523
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
524
-  (0.1ms) RELEASE SAVEPOINT active_record_1
525
-  (0.2ms) ROLLBACK
526
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
527
-  (0.2ms) BEGIN
528
- -----------------------------------
529
- AttributesTest: test_block_sequence
530
- -----------------------------------
531
-  (0.2ms) SAVEPOINT active_record_1
532
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
533
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 16]]
534
-  (0.2ms) RELEASE SAVEPOINT active_record_1
535
-  (0.1ms) ROLLBACK
536
-  (0.1ms) BEGIN
537
- -------------------------------------
538
- AttributesTest: test_numeric_sequence
539
- -------------------------------------
540
-  (0.1ms) ROLLBACK
541
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
542
-  (0.2ms) BEGIN
543
- -----------------------------------
544
- AttributesTest: test_block_sequence
545
- -----------------------------------
546
-  (0.2ms) SAVEPOINT active_record_1
547
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
548
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 17]]
549
-  (0.1ms) RELEASE SAVEPOINT active_record_1
550
-  (0.2ms) ROLLBACK
551
-  (0.1ms) BEGIN
552
- -------------------------------------
553
- AttributesTest: test_numeric_sequence
554
- -------------------------------------
555
-  (0.1ms) ROLLBACK
556
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
557
-  (0.2ms) BEGIN
558
- -----------------------------------
559
- AttributesTest: test_block_sequence
560
- -----------------------------------
561
-  (0.2ms) SAVEPOINT active_record_1
562
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
563
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 18]]
564
-  (0.2ms) RELEASE SAVEPOINT active_record_1
565
-  (0.2ms) ROLLBACK
566
-  (0.1ms) BEGIN
567
- -------------------------------------
568
- AttributesTest: test_numeric_sequence
569
- -------------------------------------
570
-  (0.2ms) ROLLBACK
571
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
572
-  (0.2ms) BEGIN
573
- -----------------------------------
574
- AttributesTest: test_block_sequence
575
- -----------------------------------
576
-  (0.2ms) SAVEPOINT active_record_1
577
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
578
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 19]]
579
-  (0.2ms) RELEASE SAVEPOINT active_record_1
580
-  (0.2ms) ROLLBACK
581
-  (0.2ms) BEGIN
582
- -------------------------------------
583
- AttributesTest: test_numeric_sequence
584
- -------------------------------------
585
-  (0.2ms) ROLLBACK
586
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
-  (0.2ms) BEGIN
588
- ------------------------------------
589
- GeneratorsTest: test_file_generation
590
- ------------------------------------
591
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
592
-  (0.2ms) BEGIN
593
- ------------------------------------
594
- GeneratorsTest: test_file_generation
595
- ------------------------------------
596
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
-  (0.2ms) BEGIN
598
- ------------------------------------
599
- GeneratorsTest: test_file_generation
600
- ------------------------------------
601
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
602
-  (0.3ms) BEGIN
603
- ------------------------------------
604
- GeneratorsTest: test_file_generation
605
- ------------------------------------
606
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
607
-  (0.2ms) BEGIN
608
- ----------------------------
609
- MakersTest: test_inheritance
610
- ----------------------------
611
-  (0.2ms) SAVEPOINT active_record_1
612
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["age", 9]]
613
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 20]]
614
-  (0.2ms) RELEASE SAVEPOINT active_record_1
615
-  (0.2ms) ROLLBACK
616
-  (0.1ms) BEGIN
617
- -----------------------------
618
- MakersTest: test_associations
619
- -----------------------------
620
-  (0.1ms) SAVEPOINT active_record_1
621
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
622
-  (0.1ms) RELEASE SAVEPOINT active_record_1
623
-  (0.1ms) SAVEPOINT active_record_1
624
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
625
-  (0.1ms) RELEASE SAVEPOINT active_record_1
626
-  (0.2ms) ROLLBACK
627
-  (0.1ms) BEGIN
628
- ----------------------------
629
- MakersTest: test_definitions
630
- ----------------------------
631
-  (0.2ms) ROLLBACK
632
-  (0.1ms) BEGIN
633
- --------------------------
634
- MakersTest: test_overrides
635
- --------------------------
636
-  (0.2ms) SAVEPOINT active_record_1
637
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
638
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 21]]
639
-  (0.1ms) RELEASE SAVEPOINT active_record_1
640
-  (0.1ms) SAVEPOINT active_record_1
641
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
642
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 22]]
643
-  (0.1ms) RELEASE SAVEPOINT active_record_1
644
-  (0.1ms) SAVEPOINT active_record_1
645
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
646
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 23]]
647
-  (0.2ms) RELEASE SAVEPOINT active_record_1
648
-  (0.1ms) SAVEPOINT active_record_1
649
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
650
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 24]]
651
-  (0.2ms) RELEASE SAVEPOINT active_record_1
652
-  (0.1ms) ROLLBACK
653
-  (0.1ms) BEGIN
654
- --------------------------
655
- MakersTest: test_dependent
656
- --------------------------
657
-  (0.1ms) SAVEPOINT active_record_1
658
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
659
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 25]]
660
-  (0.2ms) RELEASE SAVEPOINT active_record_1
661
-  (0.2ms) ROLLBACK
662
-  (0.1ms) BEGIN
663
- --------------------------
664
- MakersTest: test_sequences
665
- --------------------------
666
-  (0.1ms) ROLLBACK
667
-  (0.1ms) BEGIN
668
- ------------------------
669
- MakersTest: test_aliases
670
- ------------------------
671
-  (0.1ms) ROLLBACK
672
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
-  (0.2ms) BEGIN
674
- ----------------------------
675
- MakersTest: test_inheritance
676
- ----------------------------
677
-  (0.2ms) SAVEPOINT active_record_1
678
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["age", 9]]
679
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 26]]
680
-  (0.2ms) RELEASE SAVEPOINT active_record_1
681
-  (0.2ms) ROLLBACK
682
-  (0.2ms) BEGIN
683
- --------------------------
684
- MakersTest: test_overrides
685
- --------------------------
686
-  (0.2ms) SAVEPOINT active_record_1
687
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7]]
688
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 27]]
689
-  (0.2ms) RELEASE SAVEPOINT active_record_1
690
-  (0.2ms) SAVEPOINT active_record_1
691
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8]]
692
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 28]]
693
-  (0.2ms) RELEASE SAVEPOINT active_record_1
694
-  (0.2ms) SAVEPOINT active_record_1
695
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
696
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 29]]
697
-  (0.2ms) RELEASE SAVEPOINT active_record_1
698
-  (0.1ms) SAVEPOINT active_record_1
699
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
700
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 30]]
701
-  (0.2ms) RELEASE SAVEPOINT active_record_1
702
-  (0.2ms) ROLLBACK
703
-  (0.1ms) BEGIN
704
- ------------------------
705
- MakersTest: test_aliases
706
- ------------------------
707
-  (0.1ms) ROLLBACK
708
-  (0.1ms) BEGIN
709
- --------------------------
710
- MakersTest: test_sequences
711
- --------------------------
712
-  (0.1ms) SAVEPOINT active_record_1
713
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
714
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 31]]
715
-  (0.1ms) RELEASE SAVEPOINT active_record_1
716
-  (0.1ms) SAVEPOINT active_record_1
717
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
718
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 32]]
719
-  (0.1ms) RELEASE SAVEPOINT active_record_1
720
-  (0.1ms) ROLLBACK
721
-  (0.1ms) BEGIN
722
- -----------------------------
723
- MakersTest: test_associations
724
- -----------------------------
725
-  (0.2ms) SAVEPOINT active_record_1
726
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
727
-  (0.1ms) RELEASE SAVEPOINT active_record_1
728
-  (0.1ms) SAVEPOINT active_record_1
729
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
730
-  (0.1ms) RELEASE SAVEPOINT active_record_1
731
-  (0.1ms) ROLLBACK
732
-  (0.1ms) BEGIN
733
- --------------------------
734
- MakersTest: test_dependent
735
- --------------------------
736
-  (0.1ms) SAVEPOINT active_record_1
737
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
738
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 33]]
739
-  (0.2ms) RELEASE SAVEPOINT active_record_1
740
-  (0.2ms) ROLLBACK
741
-  (0.1ms) BEGIN
742
- ----------------------------
743
- MakersTest: test_definitions
744
- ----------------------------
745
-  (0.2ms) ROLLBACK
746
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
-  (0.4ms) BEGIN
748
- -----------------------------------
749
- GeneratorTest: test_file_generation
750
- -----------------------------------
751
-  (0.2ms) ROLLBACK
752
-  (0.1ms) BEGIN
753
- -----------------------------
754
- MakersTest: test_associations
755
- -----------------------------
756
-  (0.2ms) SAVEPOINT active_record_1
757
- SQL (0.4ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
758
-  (0.1ms) RELEASE SAVEPOINT active_record_1
759
-  (0.1ms) SAVEPOINT active_record_1
760
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
761
-  (0.1ms) RELEASE SAVEPOINT active_record_1
762
-  (0.2ms) ROLLBACK
763
-  (0.1ms) BEGIN
764
- ------------------------
765
- MakersTest: test_aliases
766
- ------------------------
767
-  (0.1ms) ROLLBACK
768
-  (0.1ms) BEGIN
769
- --------------------------
770
- MakersTest: test_sequences
771
- --------------------------
772
-  (0.1ms) SAVEPOINT active_record_1
773
- SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4]]
774
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 34]]
775
-  (0.2ms) RELEASE SAVEPOINT active_record_1
776
-  (0.1ms) SAVEPOINT active_record_1
777
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6]]
778
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 35]]
779
-  (0.2ms) RELEASE SAVEPOINT active_record_1
780
-  (0.2ms) ROLLBACK
781
-  (0.1ms) BEGIN
782
- ----------------------------
783
- MakersTest: test_definitions
784
- ----------------------------
785
-  (0.1ms) ROLLBACK
786
-  (0.1ms) BEGIN
787
- ----------------------------
788
- MakersTest: test_inheritance
789
- ----------------------------
790
-  (0.1ms) SAVEPOINT active_record_1
791
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["age", 9]]
792
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 36]]
793
-  (0.1ms) RELEASE SAVEPOINT active_record_1
794
-  (0.1ms) ROLLBACK
795
-  (0.1ms) BEGIN
796
- --------------------------
797
- MakersTest: test_dependent
798
- --------------------------
799
-  (0.2ms) SAVEPOINT active_record_1
800
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
801
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 37]]
802
-  (0.2ms) RELEASE SAVEPOINT active_record_1
803
-  (0.1ms) ROLLBACK
804
-  (0.1ms) BEGIN
805
- --------------------------
806
- MakersTest: test_overrides
807
- --------------------------
808
-  (0.1ms) SAVEPOINT active_record_1
809
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15]]
810
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 38]]
811
-  (0.2ms) RELEASE SAVEPOINT active_record_1
812
-  (0.1ms) SAVEPOINT active_record_1
813
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
814
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 39]]
815
-  (0.2ms) RELEASE SAVEPOINT active_record_1
816
-  (0.1ms) SAVEPOINT active_record_1
817
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17]]
818
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 40]]
819
-  (0.2ms) RELEASE SAVEPOINT active_record_1
820
-  (0.1ms) SAVEPOINT active_record_1
821
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
822
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 41]]
823
-  (0.1ms) RELEASE SAVEPOINT active_record_1
824
-  (0.1ms) ROLLBACK
825
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
826
-  (0.2ms) BEGIN
827
- ----------------------------
828
- MakersTest: test_inheritance
829
- ----------------------------
830
-  (0.2ms) SAVEPOINT active_record_1
831
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["age", 9]]
832
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 42]]
833
-  (0.1ms) RELEASE SAVEPOINT active_record_1
834
-  (0.2ms) ROLLBACK
835
-  (0.2ms) BEGIN
836
- --------------------------
837
- MakersTest: test_overrides
838
- --------------------------
839
-  (0.1ms) SAVEPOINT active_record_1
840
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7]]
841
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 43]]
842
-  (0.2ms) RELEASE SAVEPOINT active_record_1
843
-  (0.2ms) SAVEPOINT active_record_1
844
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8]]
845
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 44]]
846
-  (0.2ms) RELEASE SAVEPOINT active_record_1
847
-  (0.1ms) SAVEPOINT active_record_1
848
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
849
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 45]]
850
-  (0.1ms) RELEASE SAVEPOINT active_record_1
851
-  (0.1ms) SAVEPOINT active_record_1
852
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
853
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 46]]
854
-  (0.2ms) RELEASE SAVEPOINT active_record_1
855
-  (0.2ms) ROLLBACK
856
-  (0.1ms) BEGIN
857
- ------------------------
858
- MakersTest: test_aliases
859
- ------------------------
860
-  (0.1ms) ROLLBACK
861
-  (0.1ms) BEGIN
862
- -----------------------------
863
- MakersTest: test_associations
864
- -----------------------------
865
-  (0.1ms) SAVEPOINT active_record_1
866
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
867
-  (0.1ms) RELEASE SAVEPOINT active_record_1
868
-  (0.1ms) SAVEPOINT active_record_1
869
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
870
-  (0.1ms) RELEASE SAVEPOINT active_record_1
871
-  (0.1ms) ROLLBACK
872
-  (0.1ms) BEGIN
873
- ----------------------------
874
- MakersTest: test_definitions
875
- ----------------------------
876
-  (0.1ms) ROLLBACK
877
-  (0.1ms) BEGIN
878
- --------------------------
879
- MakersTest: test_dependent
880
- --------------------------
881
-  (0.1ms) SAVEPOINT active_record_1
882
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
883
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 47]]
884
-  (0.2ms) RELEASE SAVEPOINT active_record_1
885
-  (0.2ms) ROLLBACK
886
-  (0.1ms) BEGIN
887
- --------------------------
888
- MakersTest: test_sequences
889
- --------------------------
890
-  (0.1ms) SAVEPOINT active_record_1
891
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
892
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 48]]
893
-  (0.1ms) RELEASE SAVEPOINT active_record_1
894
-  (0.1ms) SAVEPOINT active_record_1
895
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
896
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 49]]
897
-  (0.2ms) RELEASE SAVEPOINT active_record_1
898
-  (0.1ms) ROLLBACK
899
-  (0.1ms) BEGIN
900
- -----------------------------------
901
- GeneratorTest: test_file_generation
902
- -----------------------------------
903
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
904
-  (0.2ms) BEGIN
905
- -----------------------------
906
- MakersTest: test_associations
907
- -----------------------------
908
-  (0.2ms) SAVEPOINT active_record_1
909
- SQL (0.4ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
910
-  (0.1ms) RELEASE SAVEPOINT active_record_1
911
-  (0.1ms) SAVEPOINT active_record_1
912
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
913
-  (0.1ms) RELEASE SAVEPOINT active_record_1
914
-  (0.2ms) ROLLBACK
915
-  (0.1ms) BEGIN
916
- ----------------------------
917
- MakersTest: test_inheritance
918
- ----------------------------
919
-  (0.1ms) SAVEPOINT active_record_1
920
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["age", 9]]
921
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 50]]
922
-  (0.1ms) RELEASE SAVEPOINT active_record_1
923
-  (0.1ms) ROLLBACK
924
-  (0.1ms) BEGIN
925
- --------------------------
926
- MakersTest: test_overrides
927
- --------------------------
928
-  (0.1ms) SAVEPOINT active_record_1
929
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
930
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 51]]
931
-  (0.1ms) RELEASE SAVEPOINT active_record_1
932
-  (0.1ms) SAVEPOINT active_record_1
933
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
934
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 52]]
935
-  (0.1ms) RELEASE SAVEPOINT active_record_1
936
-  (0.1ms) SAVEPOINT active_record_1
937
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
938
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 53]]
939
-  (0.1ms) RELEASE SAVEPOINT active_record_1
940
-  (0.1ms) SAVEPOINT active_record_1
941
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
942
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 54]]
943
-  (0.1ms) RELEASE SAVEPOINT active_record_1
944
-  (0.2ms) ROLLBACK
945
-  (0.1ms) BEGIN
946
- ----------------------------
947
- MakersTest: test_definitions
948
- ----------------------------
949
-  (0.1ms) ROLLBACK
950
-  (0.1ms) BEGIN
951
- --------------------------
952
- MakersTest: test_sequences
953
- --------------------------
954
-  (0.1ms) SAVEPOINT active_record_1
955
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
956
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 55]]
957
-  (0.1ms) RELEASE SAVEPOINT active_record_1
958
-  (0.1ms) SAVEPOINT active_record_1
959
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
960
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 56]]
961
-  (0.1ms) RELEASE SAVEPOINT active_record_1
962
-  (0.1ms) ROLLBACK
963
-  (0.1ms) BEGIN
964
- ------------------------
965
- MakersTest: test_aliases
966
- ------------------------
967
-  (0.1ms) ROLLBACK
968
-  (0.1ms) BEGIN
969
- --------------------------
970
- MakersTest: test_dependent
971
- --------------------------
972
-  (0.1ms) SAVEPOINT active_record_1
973
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
974
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 57]]
975
-  (0.1ms) RELEASE SAVEPOINT active_record_1
976
-  (0.2ms) ROLLBACK
977
-  (0.2ms) BEGIN
978
- -----------------------------------
979
- GeneratorTest: test_file_generation
980
- -----------------------------------
981
-  (0.3ms) ROLLBACK
982
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
983
-  (0.2ms) BEGIN
984
- -----------------------------------
985
- GeneratorTest: test_file_generation
986
- -----------------------------------
987
-  (0.3ms) ROLLBACK
988
-  (0.1ms) BEGIN
989
- ----------------------------
990
- MakersTest: test_definitions
991
- ----------------------------
992
-  (0.1ms) ROLLBACK
993
-  (0.1ms) BEGIN
994
- -----------------------------
995
- MakersTest: test_associations
996
- -----------------------------
997
-  (0.2ms) SAVEPOINT active_record_1
998
- SQL (0.6ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
999
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1000
-  (0.2ms) SAVEPOINT active_record_1
1001
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1002
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1003
-  (0.2ms) ROLLBACK
1004
-  (0.1ms) BEGIN
1005
- --------------------------
1006
- MakersTest: test_dependent
1007
- --------------------------
1008
-  (0.1ms) SAVEPOINT active_record_1
1009
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4]]
1010
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 58]]
1011
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1012
-  (0.1ms) ROLLBACK
1013
-  (0.2ms) BEGIN
1014
- ----------------------------
1015
- MakersTest: test_inheritance
1016
- ----------------------------
1017
-  (0.2ms) SAVEPOINT active_record_1
1018
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["age", 9]]
1019
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 59]]
1020
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1021
-  (0.2ms) ROLLBACK
1022
-  (0.1ms) BEGIN
1023
- --------------------------
1024
- MakersTest: test_overrides
1025
- --------------------------
1026
-  (0.1ms) SAVEPOINT active_record_1
1027
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
1028
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 60]]
1029
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1030
-  (0.1ms) SAVEPOINT active_record_1
1031
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
1032
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 61]]
1033
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1034
-  (0.1ms) SAVEPOINT active_record_1
1035
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13]]
1036
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 62]]
1037
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1038
-  (0.1ms) SAVEPOINT active_record_1
1039
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
1040
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 63]]
1041
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1042
-  (0.1ms) ROLLBACK
1043
-  (0.1ms) BEGIN
1044
- --------------------------
1045
- MakersTest: test_sequences
1046
- --------------------------
1047
-  (0.1ms) SAVEPOINT active_record_1
1048
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
1049
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 64]]
1050
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1051
-  (0.1ms) SAVEPOINT active_record_1
1052
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
1053
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 65]]
1054
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1055
-  (0.1ms) ROLLBACK
1056
-  (0.1ms) BEGIN
1057
- ------------------------
1058
- MakersTest: test_aliases
1059
- ------------------------
1060
-  (0.1ms) ROLLBACK
1061
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1062
-  (0.3ms) BEGIN
1063
- -----------------------------------
1064
- GeneratorTest: test_file_generation
1065
- -----------------------------------
1066
-  (0.3ms) ROLLBACK
1067
-  (0.1ms) BEGIN
1068
- ----------------------------
1069
- MakersTest: test_definitions
1070
- ----------------------------
1071
-  (0.1ms) ROLLBACK
1072
-  (0.1ms) BEGIN
1073
- --------------------------
1074
- MakersTest: test_sequences
1075
- --------------------------
1076
-  (0.3ms) SAVEPOINT active_record_1
1077
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
1078
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 66]]
1079
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1080
-  (0.2ms) SAVEPOINT active_record_1
1081
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4]]
1082
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 67]]
1083
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1084
-  (0.2ms) ROLLBACK
1085
-  (0.1ms) BEGIN
1086
- ------------------------
1087
- MakersTest: test_aliases
1088
- ------------------------
1089
-  (0.1ms) ROLLBACK
1090
-  (0.1ms) BEGIN
1091
- --------------------------
1092
- MakersTest: test_overrides
1093
- --------------------------
1094
-  (0.1ms) SAVEPOINT active_record_1
1095
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
1096
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 68]]
1097
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1098
-  (0.1ms) SAVEPOINT active_record_1
1099
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
1100
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 69]]
1101
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1102
-  (0.2ms) SAVEPOINT active_record_1
1103
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
1104
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 70]]
1105
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1106
-  (0.1ms) SAVEPOINT active_record_1
1107
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
1108
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 71]]
1109
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1110
-  (0.1ms) ROLLBACK
1111
-  (0.1ms) BEGIN
1112
- --------------------------
1113
- MakersTest: test_dependent
1114
- --------------------------
1115
-  (0.1ms) SAVEPOINT active_record_1
1116
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
1117
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 72]]
1118
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1119
-  (0.1ms) ROLLBACK
1120
-  (0.1ms) BEGIN
1121
- -----------------------------
1122
- MakersTest: test_associations
1123
- -----------------------------
1124
-  (0.1ms) SAVEPOINT active_record_1
1125
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1126
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1127
-  (0.1ms) SAVEPOINT active_record_1
1128
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1129
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1130
-  (0.1ms) ROLLBACK
1131
-  (0.1ms) BEGIN
1132
- ----------------------------
1133
- MakersTest: test_inheritance
1134
- ----------------------------
1135
-  (0.1ms) SAVEPOINT active_record_1
1136
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["age", 9]]
1137
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 73]]
1138
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1139
-  (0.1ms) ROLLBACK
1140
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1141
-  (0.3ms) BEGIN
1142
- ------------------------
1143
- MakersTest: test_aliases
1144
- ------------------------
1145
-  (0.2ms) ROLLBACK
1146
-  (0.1ms) BEGIN
1147
- -----------------------------
1148
- MakersTest: test_associations
1149
- -----------------------------
1150
-  (0.2ms) SAVEPOINT active_record_1
1151
- SQL (0.4ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1152
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1153
-  (0.1ms) SAVEPOINT active_record_1
1154
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1155
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1156
-  (0.2ms) ROLLBACK
1157
-  (0.1ms) BEGIN
1158
- --------------------------
1159
- MakersTest: test_dependent
1160
- --------------------------
1161
-  (0.2ms) SAVEPOINT active_record_1
1162
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4]]
1163
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 74]]
1164
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
-  (0.2ms) ROLLBACK
1166
-  (0.1ms) BEGIN
1167
- ----------------------------
1168
- MakersTest: test_inheritance
1169
- ----------------------------
1170
-  (0.1ms) SAVEPOINT active_record_1
1171
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["age", 9]]
1172
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 75]]
1173
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1174
-  (0.1ms) ROLLBACK
1175
-  (0.1ms) BEGIN
1176
- --------------------------
1177
- MakersTest: test_sequences
1178
- --------------------------
1179
-  (0.2ms) SAVEPOINT active_record_1
1180
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8]]
1181
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 76]]
1182
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1183
-  (0.1ms) SAVEPOINT active_record_1
1184
- SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
1185
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 77]]
1186
-  (0.4ms) RELEASE SAVEPOINT active_record_1
1187
-  (0.1ms) ROLLBACK
1188
-  (0.1ms) BEGIN
1189
- --------------------------
1190
- MakersTest: test_overrides
1191
- --------------------------
1192
-  (0.1ms) SAVEPOINT active_record_1
1193
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15]]
1194
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 78]]
1195
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1196
-  (0.1ms) SAVEPOINT active_record_1
1197
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
1198
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 79]]
1199
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1200
-  (0.1ms) SAVEPOINT active_record_1
1201
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17]]
1202
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 80]]
1203
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1204
-  (0.1ms) SAVEPOINT active_record_1
1205
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
1206
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 81]]
1207
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1208
-  (0.1ms) ROLLBACK
1209
-  (0.1ms) BEGIN
1210
- ----------------------------
1211
- MakersTest: test_definitions
1212
- ----------------------------
1213
-  (0.1ms) ROLLBACK
1214
-  (0.1ms) BEGIN
1215
- -----------------------------------
1216
- GeneratorTest: test_file_generation
1217
- -----------------------------------
1218
-  (0.6ms) ROLLBACK
1219
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1220
-  (0.2ms) BEGIN
1221
- ---------------------------
1222
- GeneratorTest: test_install
1223
- ---------------------------
1224
-  (0.2ms) ROLLBACK
1225
-  (0.1ms) BEGIN
1226
- --------------------------
1227
- MakersTest: test_dependent
1228
- --------------------------
1229
-  (0.3ms) SAVEPOINT active_record_1
1230
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
1231
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 82]]
1232
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1233
-  (0.2ms) ROLLBACK
1234
-  (0.1ms) BEGIN
1235
- ----------------------------
1236
- MakersTest: test_inheritance
1237
- ----------------------------
1238
-  (0.1ms) SAVEPOINT active_record_1
1239
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["age", 9]]
1240
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 83]]
1241
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1242
-  (0.1ms) ROLLBACK
1243
-  (0.1ms) BEGIN
1244
- --------------------------
1245
- MakersTest: test_overrides
1246
- --------------------------
1247
-  (0.1ms) SAVEPOINT active_record_1
1248
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
1249
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 84]]
1250
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1251
-  (0.1ms) SAVEPOINT active_record_1
1252
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
1253
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 85]]
1254
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1255
-  (0.1ms) SAVEPOINT active_record_1
1256
- SQL (6.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
1257
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 86]]
1258
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1259
-  (0.1ms) SAVEPOINT active_record_1
1260
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
1261
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 87]]
1262
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1263
-  (0.2ms) ROLLBACK
1264
-  (0.1ms) BEGIN
1265
- -----------------------------
1266
- MakersTest: test_associations
1267
- -----------------------------
1268
-  (0.1ms) SAVEPOINT active_record_1
1269
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1270
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1271
-  (0.1ms) SAVEPOINT active_record_1
1272
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1273
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1274
-  (0.1ms) ROLLBACK
1275
-  (0.1ms) BEGIN
1276
- ----------------------------
1277
- MakersTest: test_definitions
1278
- ----------------------------
1279
-  (0.1ms) ROLLBACK
1280
-  (0.2ms) BEGIN
1281
- ------------------------
1282
- MakersTest: test_aliases
1283
- ------------------------
1284
-  (0.1ms) ROLLBACK
1285
-  (0.1ms) BEGIN
1286
- --------------------------
1287
- MakersTest: test_sequences
1288
- --------------------------
1289
-  (0.1ms) SAVEPOINT active_record_1
1290
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
1291
- SQL (0.1ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 88]]
1292
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1293
-  (0.2ms) SAVEPOINT active_record_1
1294
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
1295
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 89]]
1296
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1297
-  (0.1ms) ROLLBACK
1298
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1299
-  (0.3ms) BEGIN
1300
- --------------------------
1301
- MakersTest: test_sequences
1302
- --------------------------
1303
-  (0.2ms) SAVEPOINT active_record_1
1304
- SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
1305
- SQL (0.3ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 90]]
1306
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1307
-  (0.1ms) SAVEPOINT active_record_1
1308
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4]]
1309
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 91]]
1310
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1311
-  (0.2ms) ROLLBACK
1312
-  (0.1ms) BEGIN
1313
- -----------------------------
1314
- MakersTest: test_associations
1315
- -----------------------------
1316
-  (0.1ms) SAVEPOINT active_record_1
1317
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1318
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1319
-  (0.1ms) SAVEPOINT active_record_1
1320
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1321
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1322
-  (0.2ms) ROLLBACK
1323
-  (0.1ms) BEGIN
1324
- ----------------------------
1325
- MakersTest: test_definitions
1326
- ----------------------------
1327
-  (0.1ms) ROLLBACK
1328
-  (0.1ms) BEGIN
1329
- --------------------------
1330
- MakersTest: test_dependent
1331
- --------------------------
1332
-  (0.1ms) SAVEPOINT active_record_1
1333
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8]]
1334
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 92]]
1335
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1336
-  (0.1ms) ROLLBACK
1337
-  (0.1ms) BEGIN
1338
- ----------------------------
1339
- MakersTest: test_inheritance
1340
- ----------------------------
1341
-  (0.1ms) SAVEPOINT active_record_1
1342
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["age", 9]]
1343
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 93]]
1344
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1345
-  (0.1ms) ROLLBACK
1346
-  (0.1ms) BEGIN
1347
- ------------------------
1348
- MakersTest: test_aliases
1349
- ------------------------
1350
-  (0.1ms) ROLLBACK
1351
-  (0.1ms) BEGIN
1352
- --------------------------
1353
- MakersTest: test_overrides
1354
- --------------------------
1355
-  (0.2ms) SAVEPOINT active_record_1
1356
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15]]
1357
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 94]]
1358
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1359
-  (0.1ms) SAVEPOINT active_record_1
1360
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
1361
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 95]]
1362
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1363
-  (0.1ms) SAVEPOINT active_record_1
1364
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17]]
1365
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 96]]
1366
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1367
-  (0.2ms) SAVEPOINT active_record_1
1368
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18]]
1369
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 97]]
1370
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1371
-  (0.1ms) ROLLBACK
1372
-  (0.1ms) BEGIN
1373
- ---------------------------
1374
- GeneratorTest: test_install
1375
- ---------------------------
1376
-  (0.2ms) ROLLBACK
1377
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1378
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1379
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1380
- Migrating to CreateUsers (20140613221835)
1381
-  (0.2ms) BEGIN
1382
-  (7.1ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
1383
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
1384
-  (0.6ms) COMMIT
1385
- Migrating to CreatePosts (20140615180954)
1386
-  (0.2ms) BEGIN
1387
-  (2.5ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer) 
1388
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
1389
-  (0.3ms) COMMIT
1390
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1391
-  (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
1392
- FROM pg_constraint c
1393
- JOIN pg_class t1 ON c.conrelid = t1.oid
1394
- JOIN pg_class t2 ON c.confrelid = t2.oid
1395
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1396
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1397
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1398
- WHERE c.contype = 'f'
1399
- AND t1.relname = 'exchanges'
1400
- AND t3.nspname = ANY (current_schemas(false))
1401
- ORDER BY c.conname
1402
- 
1403
-  (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
1404
- FROM pg_constraint c
1405
- JOIN pg_class t1 ON c.conrelid = t1.oid
1406
- JOIN pg_class t2 ON c.confrelid = t2.oid
1407
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1408
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1409
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1410
- WHERE c.contype = 'f'
1411
- AND t1.relname = 'plans'
1412
- AND t3.nspname = ANY (current_schemas(false))
1413
- ORDER BY c.conname
1414
-
1415
-  (1.6ms) 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
1416
- FROM pg_constraint c
1417
- JOIN pg_class t1 ON c.conrelid = t1.oid
1418
- JOIN pg_class t2 ON c.confrelid = t2.oid
1419
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1420
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1421
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1422
- WHERE c.contype = 'f'
1423
- AND t1.relname = 'posts'
1424
- AND t3.nspname = ANY (current_schemas(false))
1425
- ORDER BY c.conname
1426
- 
1427
-  (1.3ms) 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
1428
- FROM pg_constraint c
1429
- JOIN pg_class t1 ON c.conrelid = t1.oid
1430
- JOIN pg_class t2 ON c.confrelid = t2.oid
1431
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1432
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1433
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1434
- WHERE c.contype = 'f'
1435
- AND t1.relname = 'products'
1436
- AND t3.nspname = ANY (current_schemas(false))
1437
- ORDER BY c.conname
1438
-
1439
-  (1.2ms) 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
1440
- FROM pg_constraint c
1441
- JOIN pg_class t1 ON c.conrelid = t1.oid
1442
- JOIN pg_class t2 ON c.confrelid = t2.oid
1443
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1444
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1445
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
1446
- WHERE c.contype = 'f'
1447
- AND t1.relname = 'users'
1448
- AND t3.nspname = ANY (current_schemas(false))
1449
- ORDER BY c.conname
1450
- 
1451
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1452
-  (0.3ms) BEGIN
1453
- --------------------------
1454
- MakersTest: test_dependent
1455
- --------------------------
1456
-  (0.2ms) SAVEPOINT active_record_1
1457
- SQL (6.8ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2]]
1458
- SQL (6.4ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 1]]
1459
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1460
-  (0.1ms) ROLLBACK
1461
-  (0.1ms) BEGIN
1462
- -----------------------------
1463
- MakersTest: test_associations
1464
- -----------------------------
1465
-  (0.1ms) SAVEPOINT active_record_1
1466
- SQL (0.2ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1467
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1468
-  (0.1ms) SAVEPOINT active_record_1
1469
- SQL (0.1ms) INSERT INTO "posts" DEFAULT VALUES RETURNING "id"
1470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1471
-  (0.1ms) ROLLBACK
1472
-  (0.1ms) BEGIN
1473
- --------------------------
1474
- MakersTest: test_overrides
1475
- --------------------------
1476
-  (0.3ms) SAVEPOINT active_record_1
1477
- SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9]]
1478
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 2]]
1479
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1480
-  (0.1ms) SAVEPOINT active_record_1
1481
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10]]
1482
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 3]]
1483
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1484
-  (0.1ms) SAVEPOINT active_record_1
1485
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11]]
1486
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 4]]
1487
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1488
-  (0.1ms) SAVEPOINT active_record_1
1489
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12]]
1490
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 5]]
1491
-  (0.2ms) RELEASE SAVEPOINT active_record_1
1492
-  (0.1ms) ROLLBACK
1493
-  (0.1ms) BEGIN
1494
- --------------------------
1495
- MakersTest: test_sequences
1496
- --------------------------
1497
-  (0.1ms) SAVEPOINT active_record_1
1498
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14]]
1499
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 6]]
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") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16]]
1503
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 7]]
1504
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1505
-  (0.1ms) ROLLBACK
1506
-  (0.1ms) BEGIN
1507
- ----------------------------
1508
- MakersTest: test_inheritance
1509
- ----------------------------
1510
-  (0.1ms) SAVEPOINT active_record_1
1511
- SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "age") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["age", 9]]
1512
- SQL (0.2ms) INSERT INTO "posts" ("user_id") VALUES ($1) RETURNING "id" [["user_id", 8]]
1513
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1514
-  (0.1ms) ROLLBACK
1515
-  (0.1ms) BEGIN
1516
- ----------------------------
1517
- MakersTest: test_definitions
1518
- ----------------------------
1519
-  (0.1ms) ROLLBACK
1520
-  (0.1ms) BEGIN
1521
- ------------------------
1522
- MakersTest: test_aliases
1523
- ------------------------
1524
-  (0.1ms) ROLLBACK
1525
-  (0.1ms) BEGIN
1526
- ---------------------------
1527
- GeneratorTest: test_install
1528
- ---------------------------
1529
-  (0.1ms) ROLLBACK