makers 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +1 -1
  3. data/README.md +64 -70
  4. data/Rakefile +1 -14
  5. data/lib/generators/makers/install_generator.rb +20 -0
  6. data/lib/generators/makers/templates/definitions.rb +2 -0
  7. data/lib/makers.rb +8 -35
  8. data/lib/makers/definitions.rb +18 -27
  9. data/lib/makers/dsl/maker.rb +74 -0
  10. data/lib/makers/extensions/active_support/test_case.rb +15 -0
  11. data/lib/makers/maker.rb +32 -81
  12. data/lib/makers/proxy.rb +3 -42
  13. data/lib/makers/railtie.rb +10 -21
  14. data/lib/makers/version.rb +1 -1
  15. data/test/dummy/Rakefile +0 -1
  16. data/test/dummy/app/views/layouts/application.html.erb +9 -11
  17. data/test/dummy/bin/bundle +1 -0
  18. data/test/dummy/bin/rails +1 -0
  19. data/test/dummy/bin/rake +1 -0
  20. data/test/dummy/bin/setup +30 -0
  21. data/test/dummy/config/application.rb +3 -0
  22. data/test/dummy/config/database.yml +4 -22
  23. data/test/dummy/config/database.yml.travis +3 -0
  24. data/test/dummy/config/environments/development.rb +6 -2
  25. data/test/dummy/config/environments/production.rb +16 -24
  26. data/test/dummy/config/environments/test.rb +7 -12
  27. data/test/dummy/config/initializers/assets.rb +11 -0
  28. data/test/dummy/config/secrets.yml +1 -1
  29. data/test/dummy/db/migrate/20140613221835_create_users.rb +0 -2
  30. data/test/dummy/db/migrate/20140615180954_create_posts.rb +0 -3
  31. data/test/dummy/db/schema.rb +38 -14
  32. data/test/dummy/log/development.log +176 -0
  33. data/test/dummy/log/test.log +1529 -0
  34. data/test/dummy/test/makers.rb +20 -0
  35. data/test/generator_test.rb +18 -0
  36. data/test/makers_test.rb +66 -0
  37. data/test/test_helper.rb +5 -18
  38. metadata +31 -48
  39. data/lib/generators/makers/model/model_generator.rb +0 -15
  40. data/lib/generators/makers/model/templates/maker.rb +0 -2
  41. data/lib/makers/callbacks.rb +0 -23
  42. data/lib/makers/configuration.rb +0 -10
  43. data/lib/makers/fetcher.rb +0 -18
  44. data/lib/makers/methods.rb +0 -11
  45. data/lib/makers/sequence.rb +0 -19
  46. data/test/aliases_test.rb +0 -20
  47. data/test/associations_test.rb +0 -50
  48. data/test/attributes_test.rb +0 -26
  49. data/test/callbacks_test.rb +0 -38
  50. data/test/clean_test.rb +0 -18
  51. data/test/dependent_test.rb +0 -30
  52. data/test/dummy/README.rdoc +0 -28
  53. data/test/dummy/test/makers/people.rb +0 -2
  54. data/test/dummy/test/makers/users.rb +0 -3
  55. data/test/fabricators_test.rb +0 -33
  56. data/test/generators_test.rb +0 -13
  57. data/test/inheritance_test.rb +0 -49
  58. data/test/lists_test.rb +0 -33
  59. data/test/load_test.rb +0 -13
  60. data/test/merges_test.rb +0 -31
@@ -1,4 +1,4 @@
1
- Dummy::Application.configure do
1
+ Rails.application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb.
3
3
 
4
4
  # The test environment is used exclusively to run your application's
@@ -12,16 +12,12 @@ Dummy::Application.configure do
12
12
  # preloads Rails for running tests, you may have to set it to true.
13
13
  config.eager_load = false
14
14
 
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
17
- config.serve_static_files = false
18
- else
19
- config.serve_static_assets = false
20
- end
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
21
17
  config.static_cache_control = 'public, max-age=3600'
22
18
 
23
19
  # Show full error reports and disable caching.
24
- config.consider_all_requests_local = true
20
+ config.consider_all_requests_local = true
25
21
  config.action_controller.perform_caching = false
26
22
 
27
23
  # Raise exceptions instead of rendering exception templates.
@@ -35,13 +31,12 @@ Dummy::Application.configure do
35
31
  # ActionMailer::Base.deliveries array.
36
32
  config.action_mailer.delivery_method = :test
37
33
 
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
38
37
  # Print deprecation notices to the stderr.
39
38
  config.active_support.deprecation = :stderr
40
39
 
41
40
  # Raises error for missing translations
42
41
  # config.action_view.raise_on_missing_translations = true
43
-
44
- if Rails::VERSION::MAJOR == 4 && Rails::VERSION::MINOR >= 2
45
- config.active_support.test_order = :random
46
- end
47
42
  end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -19,4 +19,4 @@ test:
19
19
  # Do not keep production secrets in the repository,
20
20
  # instead read values from the environment.
21
21
  production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
22
+ secret_key_base: <%= ENV['SECRET_KEY_BASE'] %>
@@ -6,8 +6,6 @@ class CreateUsers < ActiveRecord::Migration
6
6
  t.string :email
7
7
  t.integer :age
8
8
  t.integer :phone
9
-
10
- t.timestamps
11
9
  end
12
10
  end
13
11
  end
@@ -1,10 +1,7 @@
1
1
  class CreatePosts < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :posts do |t|
4
- t.string :content
5
4
  t.integer :user_id
6
-
7
- t.timestamps
8
5
  end
9
6
  end
10
7
  end
@@ -11,23 +11,47 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140615180954) do
14
+ ActiveRecord::Schema.define(version: 20161115150024) do
15
15
 
16
- create_table "posts", force: true do |t|
17
- t.string "content"
18
- t.integer "user_id"
19
- t.datetime "created_at"
20
- t.datetime "updated_at"
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "exchanges", force: :cascade do |t|
20
+ t.string "service", limit: 30
21
+ t.string "from", limit: 3
22
+ t.string "to", limit: 3
23
+ t.decimal "rate", precision: 24, scale: 12
24
+ t.datetime "created_at", null: false
25
+ t.datetime "updated_at", null: false
26
+ end
27
+
28
+ add_index "exchanges", ["from", "to"], name: "index_exchanges_on_from_and_to", using: :btree
29
+
30
+ create_table "plans", force: :cascade do |t|
31
+ t.decimal "monthly_price", precision: 24, scale: 6
32
+ t.decimal "annually_price", precision: 24, scale: 6
33
+ t.string "currency", limit: 3
34
+ t.datetime "created_at", null: false
35
+ t.datetime "updated_at", null: false
36
+ end
37
+
38
+ create_table "posts", force: :cascade do |t|
39
+ t.integer "user_id"
40
+ end
41
+
42
+ create_table "products", force: :cascade do |t|
43
+ t.decimal "price", precision: 24, scale: 6
44
+ t.string "price_currency", limit: 3
45
+ t.datetime "created_at", null: false
46
+ t.datetime "updated_at", null: false
21
47
  end
22
48
 
23
- create_table "users", force: true do |t|
24
- t.string "username"
25
- t.string "name"
26
- t.string "email"
27
- t.integer "age"
28
- t.integer "phone"
29
- t.datetime "created_at"
30
- t.datetime "updated_at"
49
+ create_table "users", force: :cascade do |t|
50
+ t.string "username"
51
+ t.string "name"
52
+ t.string "email"
53
+ t.integer "age"
54
+ t.integer "phone"
31
55
  end
32
56
 
33
57
  end
@@ -0,0 +1,176 @@
1
+  (26.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
+  (1.3ms) 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.2ms) BEGIN
6
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/Matt/Documents/Github/Makers/test/dummy/db/migrate/20140613221835_create_users.rb:10)
7
+  (20.8ms) 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) 
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
9
+  (6.3ms) COMMIT
10
+ Migrating to CreatePosts (20140615180954)
11
+  (6.0ms) BEGIN
12
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/Matt/Documents/Github/Makers/test/dummy/db/migrate/20140615180954_create_posts.rb:7)
13
+  (12.8ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer, "created_at" timestamp, "updated_at" timestamp) 
14
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
15
+  (0.5ms) COMMIT
16
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+  (1.9ms) 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
18
+ FROM pg_constraint c
19
+ JOIN pg_class t1 ON c.conrelid = t1.oid
20
+ JOIN pg_class t2 ON c.confrelid = t2.oid
21
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
22
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
23
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
24
+ WHERE c.contype = 'f'
25
+ AND t1.relname = 'posts'
26
+ AND t3.nspname = ANY (current_schemas(false))
27
+ ORDER BY c.conname
28
+ 
29
+  (1.5ms) 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
30
+ FROM pg_constraint c
31
+ JOIN pg_class t1 ON c.conrelid = t1.oid
32
+ JOIN pg_class t2 ON c.confrelid = t2.oid
33
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
34
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
35
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
36
+ WHERE c.contype = 'f'
37
+ AND t1.relname = 'users'
38
+ AND t3.nspname = ANY (current_schemas(false))
39
+ ORDER BY c.conname
40
+
41
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
42
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
43
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
+ Migrating to CreateUsers (20140613221835)
45
+  (0.2ms) BEGIN
46
+  (2.5ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
47
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
48
+  (0.5ms) COMMIT
49
+ Migrating to CreatePosts (20140615180954)
50
+  (0.2ms) BEGIN
51
+  (1.9ms) CREATE TABLE "posts" ("id" serial primary key, "content" character varying, "user_id" integer) 
52
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
53
+  (0.4ms) COMMIT
54
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
+  (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
56
+ FROM pg_constraint c
57
+ JOIN pg_class t1 ON c.conrelid = t1.oid
58
+ JOIN pg_class t2 ON c.confrelid = t2.oid
59
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
60
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
61
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
62
+ WHERE c.contype = 'f'
63
+ AND t1.relname = 'posts'
64
+ AND t3.nspname = ANY (current_schemas(false))
65
+ ORDER BY c.conname
66
+ 
67
+  (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
68
+ FROM pg_constraint c
69
+ JOIN pg_class t1 ON c.conrelid = t1.oid
70
+ JOIN pg_class t2 ON c.confrelid = t2.oid
71
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
72
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
73
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
74
+ WHERE c.contype = 'f'
75
+ AND t1.relname = 'users'
76
+ AND t3.nspname = ANY (current_schemas(false))
77
+ ORDER BY c.conname
78
+
79
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
80
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
+  (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
82
+ FROM pg_constraint c
83
+ JOIN pg_class t1 ON c.conrelid = t1.oid
84
+ JOIN pg_class t2 ON c.confrelid = t2.oid
85
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
86
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
87
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
88
+ WHERE c.contype = 'f'
89
+ AND t1.relname = 'posts'
90
+ AND t3.nspname = ANY (current_schemas(false))
91
+ ORDER BY c.conname
92
+ 
93
+  (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
94
+ FROM pg_constraint c
95
+ JOIN pg_class t1 ON c.conrelid = t1.oid
96
+ JOIN pg_class t2 ON c.confrelid = t2.oid
97
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
98
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
99
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
100
+ WHERE c.contype = 'f'
101
+ AND t1.relname = 'users'
102
+ AND t3.nspname = ANY (current_schemas(false))
103
+ ORDER BY c.conname
104
+
105
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
106
+ Migrating to CreateUsers (20140613221835)
107
+  (0.2ms) BEGIN
108
+  (25.3ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer) 
109
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
110
+  (12.7ms) COMMIT
111
+ Migrating to CreatePosts (20140615180954)
112
+  (6.0ms) BEGIN
113
+  (7.1ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer) 
114
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
115
+  (6.1ms) COMMIT
116
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
117
+  (1.9ms) 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
118
+ FROM pg_constraint c
119
+ JOIN pg_class t1 ON c.conrelid = t1.oid
120
+ JOIN pg_class t2 ON c.confrelid = t2.oid
121
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
122
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
123
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
124
+ WHERE c.contype = 'f'
125
+ AND t1.relname = 'exchanges'
126
+ AND t3.nspname = ANY (current_schemas(false))
127
+ ORDER BY c.conname
128
+ 
129
+  (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
130
+ FROM pg_constraint c
131
+ JOIN pg_class t1 ON c.conrelid = t1.oid
132
+ JOIN pg_class t2 ON c.confrelid = t2.oid
133
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
134
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
135
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
136
+ WHERE c.contype = 'f'
137
+ AND t1.relname = 'plans'
138
+ AND t3.nspname = ANY (current_schemas(false))
139
+ ORDER BY c.conname
140
+
141
+  (1.5ms) 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
142
+ FROM pg_constraint c
143
+ JOIN pg_class t1 ON c.conrelid = t1.oid
144
+ JOIN pg_class t2 ON c.confrelid = t2.oid
145
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
146
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
147
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
148
+ WHERE c.contype = 'f'
149
+ AND t1.relname = 'posts'
150
+ AND t3.nspname = ANY (current_schemas(false))
151
+ ORDER BY c.conname
152
+ 
153
+  (1.5ms) 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
154
+ FROM pg_constraint c
155
+ JOIN pg_class t1 ON c.conrelid = t1.oid
156
+ JOIN pg_class t2 ON c.confrelid = t2.oid
157
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
158
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
159
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
160
+ WHERE c.contype = 'f'
161
+ AND t1.relname = 'products'
162
+ AND t3.nspname = ANY (current_schemas(false))
163
+ ORDER BY c.conname
164
+
165
+  (2.5ms) 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
166
+ FROM pg_constraint c
167
+ JOIN pg_class t1 ON c.conrelid = t1.oid
168
+ JOIN pg_class t2 ON c.confrelid = t2.oid
169
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
170
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
171
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
172
+ WHERE c.contype = 'f'
173
+ AND t1.relname = 'users'
174
+ AND t3.nspname = ANY (current_schemas(false))
175
+ ORDER BY c.conname
176
+ 
@@ -0,0 +1,1529 @@
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