makers 4.0.0.2 → 4.0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5e1da1e20157ec9b830eeeef7e4ffcd49ee2746
4
- data.tar.gz: 737649645fa7d6d32c4a84b90fcb1d231f2368a2
3
+ metadata.gz: d63b716cbeb94ba95cf3ecac9134b7d4e81cfc05
4
+ data.tar.gz: cffd0a4730637d27a5b0e0a92e2a9d19be70726d
5
5
  SHA512:
6
- metadata.gz: 0083815ef6282d38ca93264cc3f1a731d4e093154892a48dc08256a0c6532af8b53bd2b5501bcde161204c9fb61b7b994d110c6bb14e3bb66cca270ab9c507e7
7
- data.tar.gz: 1a60286c38a04de2757b71843238c8d2ce1089a3c85250b076d347a2cf9ac95238f3cde7f4cee82b9d820b1c69af9bc722c5fc2bc8d2b52fab4c226475bc8d1e
6
+ metadata.gz: 4e67d185e4160cc66d68212e4b12d88546e7636fffcb107569482054e9e13e27a99f5f0361f1295deb190123c644fd2126e388712fc57274ef733d914850908c
7
+ data.tar.gz: 427f127b051d1fe49b07c5d2fad10a0a0d9bcab02c13ae214c89905d9c0e49cc73503594f458f13939e12c7b79d6fe4690708d209c01acb8298b87ebc0a3317e
data/README.md CHANGED
@@ -148,6 +148,12 @@ build :user, 2, name: 'other'
148
148
  create :category, 5, title: 'other'
149
149
  ```
150
150
 
151
+ ## Contributing
152
+
153
+ Any issue, pull request, comment of any kind is more than welcome!
154
+
155
+ I will mainly ensure compatibility to PostgreSQL, AWS, Redis, Elasticsearch, FreeBSD and Memcached. 
156
+
151
157
  ## Credits
152
158
 
153
159
  This gem is maintained and funded by [mmontossi](https://github.com/mmontossi).
@@ -2,7 +2,7 @@ require 'rails/generators'
2
2
 
3
3
  module Makers
4
4
  module Generators
5
- class InstallGenerator < ::Rails::Generators::Base
5
+ class InstallGenerator < Rails::Generators::Base
6
6
 
7
7
  source_root File.expand_path('../templates', __FILE__)
8
8
 
@@ -1,9 +1,11 @@
1
1
  require 'makers/dsl/maker'
2
+ require 'makers/dsl/trait'
2
3
  require 'makers/extensions/active_support/test_case'
3
4
  require 'makers/definitions'
4
5
  require 'makers/maker'
5
6
  require 'makers/proxy'
6
7
  require 'makers/railtie'
8
+ require 'makers/traits'
7
9
  require 'makers/version'
8
10
 
9
11
  module Makers
@@ -13,6 +15,10 @@ module Makers
13
15
  @definitions ||= Definitions.new
14
16
  end
15
17
 
18
+ def traits
19
+ @traits ||= Traits.new
20
+ end
21
+
16
22
  def define(&block)
17
23
  Proxy.new &block
18
24
  end
@@ -1,21 +1,21 @@
1
1
  module Makers
2
2
  class Definitions
3
3
 
4
- def find(name)
5
- if registry.has_key?(name)
6
- registry[name]
4
+ def find(id)
5
+ if registry.has_key?(id)
6
+ registry[id]
7
7
  else
8
- raise "Definition #{name} not found"
8
+ raise "Definition #{id} not found"
9
9
  end
10
10
  end
11
11
 
12
- def add(names, *args)
12
+ def add(ids, *args)
13
13
  maker = Maker.new(*args)
14
- names.each do |name|
15
- if registry.has_key?(name)
16
- raise "Maker #{name} already registered"
14
+ ids.each do |id|
15
+ if registry.has_key?(id)
16
+ raise "Maker #{id} already registered"
17
17
  else
18
- registry[name] = maker
18
+ registry[id] = maker
19
19
  end
20
20
  end
21
21
  end
@@ -3,17 +3,24 @@ module Makers
3
3
  class Maker
4
4
 
5
5
  def initialize(name, options={}, &block)
6
+ class_name = options[:class_name] ||= name.to_s.classify
7
+ @model = class_name.constantize
6
8
  @name = name
7
- @options = options.reverse_merge(class_name: name.to_s.classify)
8
- @class = @options[:class_name].constantize
9
9
  @assignments = {}
10
10
  @associations = {}
11
11
  @sequences = {}
12
+ @options = options
12
13
  if block_given?
13
14
  instance_eval &block
14
15
  end
16
+ Array(options[:traits]).each do |id|
17
+ block = Makers.traits.find(id)
18
+ instance_eval &block
19
+ end
15
20
  Makers.definitions.add(
16
- [@name] + Array(@options[:aliases]),
21
+ [name] + Array(options[:aliases]),
22
+ @name,
23
+ @model,
17
24
  @assignments,
18
25
  @associations,
19
26
  @sequences,
@@ -22,9 +29,9 @@ module Makers
22
29
  end
23
30
 
24
31
  def maker(name, overrides={}, &block)
25
- byebug unless @options.is_a?(Hash)
26
32
  options = @options.dup
27
33
  options.delete :aliases
34
+ options.delete :traits
28
35
  options.merge! overrides
29
36
  options.merge! parent: @name
30
37
  Dsl::Maker.new name, options, &block
@@ -49,8 +56,8 @@ module Makers
49
56
  options = args.extract_options!
50
57
  lookup = (options[:maker] || name)
51
58
  action = (options[:strategy] || :build)
52
- reflection = @class.reflections[name.to_s]
53
- class_name = @class.name
59
+ reflection = @model.reflections[name.to_s]
60
+ class_name = @model.name
54
61
  case reflection.macro
55
62
  when :belongs_to,:has_one
56
63
  @assignments[name] = -> {
@@ -71,7 +78,7 @@ module Makers
71
78
  end
72
79
 
73
80
  def method_missing(name, *args, &block)
74
- if @class.reflections.has_key?(name.to_s)
81
+ if @model.reflections.has_key?(name.to_s)
75
82
  association name, *args
76
83
  elsif block_given?
77
84
  @assignments[name] = block
@@ -0,0 +1,11 @@
1
+ module Makers
2
+ module Dsl
3
+ class Trait
4
+
5
+ def initialize(name, &block)
6
+ Makers.traits.add name, block
7
+ end
8
+
9
+ end
10
+ end
11
+ end
@@ -1,10 +1,12 @@
1
1
  module Makers
2
2
  class Maker
3
3
 
4
- attr_reader :assignments, :associations, :sequences, :options
4
+ attr_reader :name, :model, :assignments, :associations, :sequences, :options
5
5
  attr_accessor :disabled_association
6
6
 
7
- def initialize(assignments, associations, sequences, options)
7
+ def initialize(name, model, assignments, associations, sequences, options)
8
+ @name = name
9
+ @model = model
8
10
  @assignments = assignments
9
11
  @associations = associations
10
12
  @sequences = sequences
@@ -28,7 +30,7 @@ module Makers
28
30
  end
29
31
 
30
32
  def attributes
31
- all = assignments
33
+ all = assignments.dup
32
34
  if options.has_key?(:parent)
33
35
  all.reverse_merge! Makers.definitions.find(options[:parent]).assignments
34
36
  end
@@ -53,7 +55,7 @@ module Makers
53
55
  private
54
56
 
55
57
  def build_one(overrides={})
56
- instance = options[:class_name].constantize.new
58
+ instance = model.new
57
59
  attributes.merge(overrides).each do |name, value|
58
60
  instance.send "#{name}=", value
59
61
  end
@@ -9,5 +9,9 @@ module Makers
9
9
  Dsl::Maker.new *args, &block
10
10
  end
11
11
 
12
+ def trait(*args, &block)
13
+ Dsl::Trait.new *args, &block
14
+ end
15
+
12
16
  end
13
17
  end
@@ -1,20 +1,12 @@
1
1
  module Makers
2
2
  class Railtie < Rails::Railtie
3
3
 
4
- initializer 'makers.extensions' do
5
- ActiveSupport::TestCase.include(
6
- Makers::Extensions::ActiveSupport::TestCase
7
- )
8
- end
9
-
10
- initializer 'makers.replace_fixtures' do
11
- config.app_generators.test_framework(
12
- config.app_generators.options[:rails][:test_framework],
13
- fixture: false
14
- )
15
- end
4
+ config.app_generators.test_framework(
5
+ config.app_generators.options[:rails][:test_framework],
6
+ fixture: false
7
+ )
16
8
 
17
- config.after_initialize do
9
+ config.before_initialize do
18
10
  if Dir.exist?(Rails.root.join('spec'))
19
11
  directory = 'spec'
20
12
  else
@@ -26,5 +18,11 @@ module Makers
26
18
  end
27
19
  end
28
20
 
21
+ initializer 'makers.active_support' do
22
+ ActiveSupport::TestCase.include(
23
+ Makers::Extensions::ActiveSupport::TestCase
24
+ )
25
+ end
26
+
29
27
  end
30
28
  end
@@ -0,0 +1,27 @@
1
+ module Makers
2
+ class Traits
3
+
4
+ def find(id)
5
+ if registry.has_key?(id)
6
+ registry[id]
7
+ else
8
+ raise "Trait #{id} not found"
9
+ end
10
+ end
11
+
12
+ def add(id, block)
13
+ if registry.has_key?(id)
14
+ raise "Trait #{id} already registered"
15
+ else
16
+ registry[id] = block
17
+ end
18
+ end
19
+
20
+ private
21
+
22
+ def registry
23
+ @registry ||= {}
24
+ end
25
+
26
+ end
27
+ end
@@ -1,5 +1,5 @@
1
1
  module Makers
2
2
 
3
- VERSION = '4.0.0.2'
3
+ VERSION = '4.0.0.3'
4
4
 
5
5
  end
@@ -1,7 +1,10 @@
1
- development:
1
+ default: &default
2
2
  adapter: postgresql
3
+
4
+ development:
5
+ <<: *default
3
6
  database: makers_development
4
7
 
5
8
  test:
6
- adapter: postgresql
9
+ <<: *default
7
10
  database: makers_test
@@ -18,10 +18,8 @@ ActiveRecord::Schema.define(version: 20140615180954) do
18
18
 
19
19
  create_table "posts", force: :cascade do |t|
20
20
  t.integer "user_id"
21
- t.integer "mentionable_id"
22
- t.string "mentionable_type"
23
- t.datetime "created_at", null: false
24
- t.datetime "updated_at", null: false
21
+ t.datetime "created_at", null: false
22
+ t.datetime "updated_at", null: false
25
23
  end
26
24
 
27
25
  create_table "users", force: :cascade do |t|
@@ -31,6 +31,82 @@ JOIN pg_class t2 ON c.confrelid = t2.oid
31
31
  JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
32
32
  JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
33
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
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
40
+  (22.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+ Migrating to CreateUsers (20140613221835)
43
+  (0.1ms) BEGIN
44
+  (2.8ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
45
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
46
+  (0.5ms) COMMIT
47
+ Migrating to CreatePosts (20140615180954)
48
+  (6.3ms) BEGIN
49
+  (7.4ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
50
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
51
+  (5.8ms) COMMIT
52
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+  (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
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 = 'posts'
62
+ AND t3.nspname = ANY (current_schemas(false))
63
+ ORDER BY c.conname
64
+ 
65
+  (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
66
+ FROM pg_constraint c
67
+ JOIN pg_class t1 ON c.conrelid = t1.oid
68
+ JOIN pg_class t2 ON c.confrelid = t2.oid
69
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
70
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
71
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
72
+ WHERE c.contype = 'f'
73
+ AND t1.relname = 'users'
74
+ AND t3.nspname = ANY (current_schemas(false))
75
+ ORDER BY c.conname
76
+
77
+  (19.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
78
+  (17.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
79
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
80
+ Migrating to CreateUsers (20140613221835)
81
+  (0.2ms) BEGIN
82
+  (14.0ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
83
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
84
+  (12.6ms) COMMIT
85
+ Migrating to CreatePosts (20140615180954)
86
+  (6.1ms) BEGIN
87
+  (8.7ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
88
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
89
+  (10.6ms) COMMIT
90
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+  (2.0ms) 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 = 'posts'
100
+ AND t3.nspname = ANY (current_schemas(false))
101
+ ORDER BY c.conname
102
+ 
103
+  (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
104
+ FROM pg_constraint c
105
+ JOIN pg_class t1 ON c.conrelid = t1.oid
106
+ JOIN pg_class t2 ON c.confrelid = t2.oid
107
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
108
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
109
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
34
110
  WHERE c.contype = 'f'
35
111
  AND t1.relname = 'users'
36
112
  AND t3.nspname = ANY (current_schemas(false))
@@ -999,3 +999,1621 @@ MakerTest: test_overrides
999
999
  SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 32], ["created_at", "2016-12-07 20:21:57.533299"], ["updated_at", "2016-12-07 20:21:57.533299"]]
1000
1000
   (0.1ms) RELEASE SAVEPOINT active_record_1
1001
1001
   (0.1ms) ROLLBACK
1002
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1003
+  (0.2ms) BEGIN
1004
+ ---------------------------
1005
+ GeneratorTest: test_install
1006
+ ---------------------------
1007
+  (0.2ms) ROLLBACK
1008
+  (0.1ms) BEGIN
1009
+ -------------------------
1010
+ MakerTest: test_sequences
1011
+ -------------------------
1012
+  (0.2ms) SAVEPOINT active_record_1
1013
+ SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-09 15:58:35.478816"], ["updated_at", "2016-12-09 15:58:35.478816"]]
1014
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 33], ["created_at", "2016-12-09 15:58:35.482429"], ["updated_at", "2016-12-09 15:58:35.482429"]]
1015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1016
+  (0.2ms) SAVEPOINT active_record_1
1017
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-09 15:58:35.485206"], ["updated_at", "2016-12-09 15:58:35.485206"]]
1018
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 34], ["created_at", "2016-12-09 15:58:35.486615"], ["updated_at", "2016-12-09 15:58:35.486615"]]
1019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1020
+  (0.2ms) ROLLBACK
1021
+  (0.1ms) BEGIN
1022
+ ----------------------------
1023
+ MakerTest: test_associations
1024
+ ----------------------------
1025
+  (0.1ms) SAVEPOINT active_record_1
1026
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-09 15:58:35.489635"], ["updated_at", "2016-12-09 15:58:35.489635"]]
1027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1028
+  (0.1ms) SAVEPOINT active_record_1
1029
+ SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-09 15:58:35.491096"], ["updated_at", "2016-12-09 15:58:35.491096"]]
1030
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1031
+  (0.2ms) ROLLBACK
1032
+  (0.1ms) BEGIN
1033
+ -------------------------
1034
+ MakerTest: test_dependent
1035
+ -------------------------
1036
+  (0.1ms) SAVEPOINT active_record_1
1037
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-09 15:58:35.495451"], ["updated_at", "2016-12-09 15:58:35.495451"]]
1038
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 35], ["created_at", "2016-12-09 15:58:35.496230"], ["updated_at", "2016-12-09 15:58:35.496230"]]
1039
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1040
+  (0.1ms) ROLLBACK
1041
+  (0.1ms) BEGIN
1042
+ -------------------------
1043
+ MakerTest: test_overrides
1044
+ -------------------------
1045
+  (0.1ms) SAVEPOINT active_record_1
1046
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-09 15:58:35.499545"], ["updated_at", "2016-12-09 15:58:35.499545"]]
1047
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 36], ["created_at", "2016-12-09 15:58:35.500326"], ["updated_at", "2016-12-09 15:58:35.500326"]]
1048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1049
+  (0.1ms) SAVEPOINT active_record_1
1050
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-09 15:58:35.501770"], ["updated_at", "2016-12-09 15:58:35.501770"]]
1051
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 37], ["created_at", "2016-12-09 15:58:35.502443"], ["updated_at", "2016-12-09 15:58:35.502443"]]
1052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1053
+  (0.1ms) SAVEPOINT active_record_1
1054
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-09 15:58:35.503904"], ["updated_at", "2016-12-09 15:58:35.503904"]]
1055
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 38], ["created_at", "2016-12-09 15:58:35.504572"], ["updated_at", "2016-12-09 15:58:35.504572"]]
1056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1057
+  (0.1ms) SAVEPOINT active_record_1
1058
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-09 15:58:35.506010"], ["updated_at", "2016-12-09 15:58:35.506010"]]
1059
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 39], ["created_at", "2016-12-09 15:58:35.506740"], ["updated_at", "2016-12-09 15:58:35.506740"]]
1060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.1ms) ROLLBACK
1062
+  (0.1ms) BEGIN
1063
+ ---------------------------
1064
+ MakerTest: test_inheritance
1065
+ ---------------------------
1066
+  (0.1ms) SAVEPOINT active_record_1
1067
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-09 15:58:35.509385"], ["updated_at", "2016-12-09 15:58:35.509385"]]
1068
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 40], ["created_at", "2016-12-09 15:58:35.510331"], ["updated_at", "2016-12-09 15:58:35.510331"]]
1069
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1070
+  (0.1ms) ROLLBACK
1071
+  (0.1ms) BEGIN
1072
+ ---------------------------
1073
+ MakerTest: test_definitions
1074
+ ---------------------------
1075
+  (0.1ms) ROLLBACK
1076
+  (0.1ms) BEGIN
1077
+ -----------------------
1078
+ MakerTest: test_aliases
1079
+ -----------------------
1080
+  (0.1ms) ROLLBACK
1081
+ ActiveRecord::SchemaMigration Load (26.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1082
+  (0.2ms) BEGIN
1083
+ -----------------------
1084
+ MakerTest: test_aliases
1085
+ -----------------------
1086
+  (0.1ms) ROLLBACK
1087
+  (0.1ms) BEGIN
1088
+ ----------------------------
1089
+ MakerTest: test_associations
1090
+ ----------------------------
1091
+  (0.1ms) ROLLBACK
1092
+  (0.1ms) BEGIN
1093
+ ---------------------------
1094
+ MakerTest: test_definitions
1095
+ ---------------------------
1096
+  (0.1ms) ROLLBACK
1097
+  (0.1ms) BEGIN
1098
+ -------------------------
1099
+ MakerTest: test_overrides
1100
+ -------------------------
1101
+  (0.1ms) ROLLBACK
1102
+  (0.1ms) BEGIN
1103
+ -------------------------
1104
+ MakerTest: test_sequences
1105
+ -------------------------
1106
+  (0.1ms) ROLLBACK
1107
+  (0.1ms) BEGIN
1108
+ -------------------------
1109
+ MakerTest: test_dependent
1110
+ -------------------------
1111
+  (0.1ms) ROLLBACK
1112
+  (0.1ms) BEGIN
1113
+ ---------------------------
1114
+ MakerTest: test_inheritance
1115
+ ---------------------------
1116
+  (0.1ms) ROLLBACK
1117
+  (0.1ms) BEGIN
1118
+ ---------------------------
1119
+ GeneratorTest: test_install
1120
+ ---------------------------
1121
+  (0.1ms) ROLLBACK
1122
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1123
+  (0.3ms) BEGIN
1124
+ -------------------------
1125
+ MakerTest: test_sequences
1126
+ -------------------------
1127
+  (0.2ms) ROLLBACK
1128
+  (0.1ms) BEGIN
1129
+ ---------------------------
1130
+ MakerTest: test_definitions
1131
+ ---------------------------
1132
+  (0.1ms) ROLLBACK
1133
+  (0.1ms) BEGIN
1134
+ -----------------------
1135
+ MakerTest: test_aliases
1136
+ -----------------------
1137
+  (0.1ms) ROLLBACK
1138
+  (0.1ms) BEGIN
1139
+ -------------------------
1140
+ MakerTest: test_dependent
1141
+ -------------------------
1142
+  (0.2ms) ROLLBACK
1143
+  (0.1ms) BEGIN
1144
+ -------------------------
1145
+ MakerTest: test_overrides
1146
+ -------------------------
1147
+  (0.2ms) ROLLBACK
1148
+  (0.1ms) BEGIN
1149
+ ---------------------------
1150
+ MakerTest: test_inheritance
1151
+ ---------------------------
1152
+  (0.2ms) ROLLBACK
1153
+  (0.1ms) BEGIN
1154
+ ----------------------------
1155
+ MakerTest: test_associations
1156
+ ----------------------------
1157
+  (0.2ms) ROLLBACK
1158
+  (0.1ms) BEGIN
1159
+ ---------------------------
1160
+ GeneratorTest: test_install
1161
+ ---------------------------
1162
+  (0.2ms) ROLLBACK
1163
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1164
+  (0.2ms) BEGIN
1165
+ -----------------------
1166
+ MakerTest: test_aliases
1167
+ -----------------------
1168
+  (0.1ms) ROLLBACK
1169
+  (0.1ms) BEGIN
1170
+ -------------------------
1171
+ MakerTest: test_sequences
1172
+ -------------------------
1173
+  (0.2ms) ROLLBACK
1174
+  (0.1ms) BEGIN
1175
+ ---------------------------
1176
+ MakerTest: test_definitions
1177
+ ---------------------------
1178
+  (0.1ms) ROLLBACK
1179
+  (0.1ms) BEGIN
1180
+ ---------------------------
1181
+ MakerTest: test_inheritance
1182
+ ---------------------------
1183
+  (0.1ms) ROLLBACK
1184
+  (0.1ms) BEGIN
1185
+ -------------------------
1186
+ MakerTest: test_dependent
1187
+ -------------------------
1188
+  (0.1ms) ROLLBACK
1189
+  (0.1ms) BEGIN
1190
+ -------------------------
1191
+ MakerTest: test_overrides
1192
+ -------------------------
1193
+  (0.1ms) ROLLBACK
1194
+  (0.1ms) BEGIN
1195
+ ----------------------------
1196
+ MakerTest: test_associations
1197
+ ----------------------------
1198
+  (0.1ms) ROLLBACK
1199
+  (0.1ms) BEGIN
1200
+ ---------------------------
1201
+ GeneratorTest: test_install
1202
+ ---------------------------
1203
+  (0.1ms) ROLLBACK
1204
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1205
+  (0.3ms) BEGIN
1206
+ ---------------------------
1207
+ MakerTest: test_inheritance
1208
+ ---------------------------
1209
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1210
+  (0.2ms) BEGIN
1211
+ ---------------------------
1212
+ GeneratorTest: test_install
1213
+ ---------------------------
1214
+  (0.2ms) ROLLBACK
1215
+  (0.1ms) BEGIN
1216
+ ----------------------------
1217
+ MakerTest: test_associations
1218
+ ----------------------------
1219
+  (0.2ms) ROLLBACK
1220
+  (0.1ms) BEGIN
1221
+ -------------------------
1222
+ MakerTest: test_sequences
1223
+ -------------------------
1224
+  (0.2ms) ROLLBACK
1225
+  (0.1ms) BEGIN
1226
+ -------------------------
1227
+ MakerTest: test_dependent
1228
+ -------------------------
1229
+  (0.2ms) ROLLBACK
1230
+  (0.1ms) BEGIN
1231
+ -----------------------
1232
+ MakerTest: test_aliases
1233
+ -----------------------
1234
+  (0.1ms) ROLLBACK
1235
+  (0.1ms) BEGIN
1236
+ ---------------------------
1237
+ MakerTest: test_inheritance
1238
+ ---------------------------
1239
+  (0.2ms) ROLLBACK
1240
+  (0.1ms) BEGIN
1241
+ -------------------------
1242
+ MakerTest: test_overrides
1243
+ -------------------------
1244
+  (0.2ms) ROLLBACK
1245
+  (0.1ms) BEGIN
1246
+ ---------------------------
1247
+ MakerTest: test_definitions
1248
+ ---------------------------
1249
+  (0.1ms) ROLLBACK
1250
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1251
+  (0.2ms) BEGIN
1252
+ ---------------------------
1253
+ GeneratorTest: test_install
1254
+ ---------------------------
1255
+  (0.1ms) ROLLBACK
1256
+  (0.1ms) BEGIN
1257
+ -------------------------
1258
+ MakerTest: test_dependent
1259
+ -------------------------
1260
+  (0.2ms) SAVEPOINT active_record_1
1261
+ SQL (19.0ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 03:45:55.370751"], ["updated_at", "2016-12-11 03:45:55.370751"]]
1262
+ SQL (4.9ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 41], ["created_at", "2016-12-11 03:45:55.393212"], ["updated_at", "2016-12-11 03:45:55.393212"]]
1263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1264
+  (0.1ms) ROLLBACK
1265
+  (0.1ms) BEGIN
1266
+ ---------------------------
1267
+ MakerTest: test_inheritance
1268
+ ---------------------------
1269
+  (0.1ms) SAVEPOINT active_record_1
1270
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 03:45:55.401480"], ["updated_at", "2016-12-11 03:45:55.401480"]]
1271
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 42], ["created_at", "2016-12-11 03:45:55.402529"], ["updated_at", "2016-12-11 03:45:55.402529"]]
1272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1273
+  (0.2ms) ROLLBACK
1274
+  (0.1ms) BEGIN
1275
+ ---------------------------
1276
+ MakerTest: test_definitions
1277
+ ---------------------------
1278
+  (0.1ms) ROLLBACK
1279
+  (0.1ms) BEGIN
1280
+ -------------------------
1281
+ MakerTest: test_sequences
1282
+ -------------------------
1283
+  (0.1ms) SAVEPOINT active_record_1
1284
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 03:45:55.405904"], ["updated_at", "2016-12-11 03:45:55.405904"]]
1285
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 43], ["created_at", "2016-12-11 03:45:55.406678"], ["updated_at", "2016-12-11 03:45:55.406678"]]
1286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1287
+  (0.1ms) SAVEPOINT active_record_1
1288
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 03:45:55.408536"], ["updated_at", "2016-12-11 03:45:55.408536"]]
1289
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 44], ["created_at", "2016-12-11 03:45:55.409277"], ["updated_at", "2016-12-11 03:45:55.409277"]]
1290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1291
+  (0.1ms) ROLLBACK
1292
+  (0.1ms) BEGIN
1293
+ ----------------------------
1294
+ MakerTest: test_associations
1295
+ ----------------------------
1296
+  (0.1ms) SAVEPOINT active_record_1
1297
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:45:55.411738"], ["updated_at", "2016-12-11 03:45:55.411738"]]
1298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1299
+  (0.1ms) SAVEPOINT active_record_1
1300
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:45:55.412961"], ["updated_at", "2016-12-11 03:45:55.412961"]]
1301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
+  (0.1ms) ROLLBACK
1303
+  (0.1ms) BEGIN
1304
+ -----------------------
1305
+ MakerTest: test_aliases
1306
+ -----------------------
1307
+  (0.1ms) ROLLBACK
1308
+  (0.1ms) BEGIN
1309
+ -------------------------
1310
+ MakerTest: test_overrides
1311
+ -------------------------
1312
+  (0.1ms) SAVEPOINT active_record_1
1313
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 03:45:55.416695"], ["updated_at", "2016-12-11 03:45:55.416695"]]
1314
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 45], ["created_at", "2016-12-11 03:45:55.417524"], ["updated_at", "2016-12-11 03:45:55.417524"]]
1315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1316
+  (0.1ms) SAVEPOINT active_record_1
1317
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 03:45:55.419679"], ["updated_at", "2016-12-11 03:45:55.419679"]]
1318
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 46], ["created_at", "2016-12-11 03:45:55.420639"], ["updated_at", "2016-12-11 03:45:55.420639"]]
1319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1320
+  (0.1ms) SAVEPOINT active_record_1
1321
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 03:45:55.422183"], ["updated_at", "2016-12-11 03:45:55.422183"]]
1322
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 47], ["created_at", "2016-12-11 03:45:55.422914"], ["updated_at", "2016-12-11 03:45:55.422914"]]
1323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1324
+  (0.1ms) SAVEPOINT active_record_1
1325
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 03:45:55.424432"], ["updated_at", "2016-12-11 03:45:55.424432"]]
1326
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 48], ["created_at", "2016-12-11 03:45:55.425228"], ["updated_at", "2016-12-11 03:45:55.425228"]]
1327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1328
+  (0.1ms) ROLLBACK
1329
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1330
+  (0.2ms) BEGIN
1331
+ -------------------------
1332
+ MakerTest: test_dependent
1333
+ -------------------------
1334
+  (0.2ms) SAVEPOINT active_record_1
1335
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 03:48:32.525844"], ["updated_at", "2016-12-11 03:48:32.525844"]]
1336
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 49], ["created_at", "2016-12-11 03:48:32.529339"], ["updated_at", "2016-12-11 03:48:32.529339"]]
1337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1338
+  (0.2ms) ROLLBACK
1339
+  (0.1ms) BEGIN
1340
+ ---------------------------
1341
+ MakerTest: test_definitions
1342
+ ---------------------------
1343
+  (0.1ms) ROLLBACK
1344
+  (0.1ms) BEGIN
1345
+ -------------------------
1346
+ MakerTest: test_overrides
1347
+ -------------------------
1348
+  (0.1ms) SAVEPOINT active_record_1
1349
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 03:48:32.533912"], ["updated_at", "2016-12-11 03:48:32.533912"]]
1350
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 50], ["created_at", "2016-12-11 03:48:32.534690"], ["updated_at", "2016-12-11 03:48:32.534690"]]
1351
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1352
+  (0.1ms) SAVEPOINT active_record_1
1353
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 03:48:32.536968"], ["updated_at", "2016-12-11 03:48:32.536968"]]
1354
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 51], ["created_at", "2016-12-11 03:48:32.538338"], ["updated_at", "2016-12-11 03:48:32.538338"]]
1355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1356
+  (0.1ms) SAVEPOINT active_record_1
1357
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 03:48:32.540093"], ["updated_at", "2016-12-11 03:48:32.540093"]]
1358
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 52], ["created_at", "2016-12-11 03:48:32.540912"], ["updated_at", "2016-12-11 03:48:32.540912"]]
1359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1360
+  (0.1ms) SAVEPOINT active_record_1
1361
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 03:48:32.542425"], ["updated_at", "2016-12-11 03:48:32.542425"]]
1362
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 53], ["created_at", "2016-12-11 03:48:32.543178"], ["updated_at", "2016-12-11 03:48:32.543178"]]
1363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1364
+  (0.1ms) ROLLBACK
1365
+  (0.1ms) BEGIN
1366
+ ----------------------------
1367
+ MakerTest: test_associations
1368
+ ----------------------------
1369
+  (0.1ms) SAVEPOINT active_record_1
1370
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:48:32.545785"], ["updated_at", "2016-12-11 03:48:32.545785"]]
1371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1372
+  (0.2ms) SAVEPOINT active_record_1
1373
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 03:48:32.548566"], ["updated_at", "2016-12-11 03:48:32.548566"]]
1374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1375
+  (0.1ms) ROLLBACK
1376
+  (0.1ms) BEGIN
1377
+ -------------------------
1378
+ MakerTest: test_sequences
1379
+ -------------------------
1380
+  (0.1ms) SAVEPOINT active_record_1
1381
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 03:48:32.551718"], ["updated_at", "2016-12-11 03:48:32.551718"]]
1382
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 54], ["created_at", "2016-12-11 03:48:32.552471"], ["updated_at", "2016-12-11 03:48:32.552471"]]
1383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1384
+  (0.1ms) SAVEPOINT active_record_1
1385
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 03:48:32.554210"], ["updated_at", "2016-12-11 03:48:32.554210"]]
1386
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 55], ["created_at", "2016-12-11 03:48:32.554874"], ["updated_at", "2016-12-11 03:48:32.554874"]]
1387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1388
+  (0.1ms) ROLLBACK
1389
+  (0.1ms) BEGIN
1390
+ -----------------------
1391
+ MakerTest: test_aliases
1392
+ -----------------------
1393
+  (0.1ms) ROLLBACK
1394
+  (0.1ms) BEGIN
1395
+ ---------------------------
1396
+ MakerTest: test_inheritance
1397
+ ---------------------------
1398
+  (0.1ms) SAVEPOINT active_record_1
1399
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 03:48:32.557990"], ["updated_at", "2016-12-11 03:48:32.557990"]]
1400
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 56], ["created_at", "2016-12-11 03:48:32.559049"], ["updated_at", "2016-12-11 03:48:32.559049"]]
1401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1402
+  (0.1ms) ROLLBACK
1403
+  (0.1ms) BEGIN
1404
+ ---------------------------
1405
+ GeneratorTest: test_install
1406
+ ---------------------------
1407
+  (0.1ms) ROLLBACK
1408
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1409
+  (0.2ms) BEGIN
1410
+ -------------------------
1411
+ MakerTest: test_overrides
1412
+ -------------------------
1413
+  (0.2ms) SAVEPOINT active_record_1
1414
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail5@example.com"], ["phone", 5], ["created_at", "2016-12-11 04:07:31.687476"], ["updated_at", "2016-12-11 04:07:31.687476"]]
1415
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 57], ["created_at", "2016-12-11 04:07:31.691213"], ["updated_at", "2016-12-11 04:07:31.691213"]]
1416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1417
+  (0.1ms) SAVEPOINT active_record_1
1418
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:31.693308"], ["updated_at", "2016-12-11 04:07:31.693308"]]
1419
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 58], ["created_at", "2016-12-11 04:07:31.694033"], ["updated_at", "2016-12-11 04:07:31.694033"]]
1420
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1421
+  (0.1ms) SAVEPOINT active_record_1
1422
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:07:31.696136"], ["updated_at", "2016-12-11 04:07:31.696136"]]
1423
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 59], ["created_at", "2016-12-11 04:07:31.697810"], ["updated_at", "2016-12-11 04:07:31.697810"]]
1424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1425
+  (0.1ms) SAVEPOINT active_record_1
1426
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:07:31.699681"], ["updated_at", "2016-12-11 04:07:31.699681"]]
1427
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 60], ["created_at", "2016-12-11 04:07:31.700523"], ["updated_at", "2016-12-11 04:07:31.700523"]]
1428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1429
+  (0.2ms) ROLLBACK
1430
+  (0.1ms) BEGIN
1431
+ -------------------------
1432
+ MakerTest: test_sequences
1433
+ -------------------------
1434
+  (0.1ms) SAVEPOINT active_record_1
1435
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:07:31.703266"], ["updated_at", "2016-12-11 04:07:31.703266"]]
1436
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 61], ["created_at", "2016-12-11 04:07:31.704086"], ["updated_at", "2016-12-11 04:07:31.704086"]]
1437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1438
+  (0.1ms) ROLLBACK
1439
+  (0.1ms) BEGIN
1440
+ ----------------------------
1441
+ MakerTest: test_associations
1442
+ ----------------------------
1443
+  (0.2ms) SAVEPOINT active_record_1
1444
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:31.708151"], ["updated_at", "2016-12-11 04:07:31.708151"]]
1445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1446
+  (0.1ms) SAVEPOINT active_record_1
1447
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:31.709667"], ["updated_at", "2016-12-11 04:07:31.709667"]]
1448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1449
+  (0.1ms) ROLLBACK
1450
+  (0.1ms) BEGIN
1451
+ ---------------------------
1452
+ MakerTest: test_inheritance
1453
+ ---------------------------
1454
+  (0.1ms) SAVEPOINT active_record_1
1455
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:07:31.712547"], ["updated_at", "2016-12-11 04:07:31.712547"]]
1456
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 62], ["created_at", "2016-12-11 04:07:31.713454"], ["updated_at", "2016-12-11 04:07:31.713454"]]
1457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1458
+  (0.1ms) ROLLBACK
1459
+  (0.1ms) BEGIN
1460
+ ---------------------------
1461
+ MakerTest: test_definitions
1462
+ ---------------------------
1463
+  (0.1ms) ROLLBACK
1464
+  (0.1ms) BEGIN
1465
+ -------------------------
1466
+ MakerTest: test_dependent
1467
+ -------------------------
1468
+  (0.1ms) SAVEPOINT active_record_1
1469
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:07:31.716253"], ["updated_at", "2016-12-11 04:07:31.716253"]]
1470
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 63], ["created_at", "2016-12-11 04:07:31.716962"], ["updated_at", "2016-12-11 04:07:31.716962"]]
1471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1472
+  (0.1ms) ROLLBACK
1473
+  (0.1ms) BEGIN
1474
+ -----------------------
1475
+ MakerTest: test_aliases
1476
+ -----------------------
1477
+  (0.1ms) ROLLBACK
1478
+  (0.1ms) BEGIN
1479
+ ---------------------------
1480
+ GeneratorTest: test_install
1481
+ ---------------------------
1482
+  (0.1ms) ROLLBACK
1483
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1484
+  (0.2ms) BEGIN
1485
+ -------------------------
1486
+ MakerTest: test_dependent
1487
+ -------------------------
1488
+  (0.2ms) SAVEPOINT active_record_1
1489
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:07:54.523877"], ["updated_at", "2016-12-11 04:07:54.523877"]]
1490
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 64], ["created_at", "2016-12-11 04:07:54.526791"], ["updated_at", "2016-12-11 04:07:54.526791"]]
1491
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1492
+  (0.2ms) ROLLBACK
1493
+  (0.1ms) BEGIN
1494
+ -------------------------
1495
+ MakerTest: test_sequences
1496
+ -------------------------
1497
+  (0.1ms) SAVEPOINT active_record_1
1498
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:07:54.530010"], ["updated_at", "2016-12-11 04:07:54.530010"]]
1499
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 65], ["created_at", "2016-12-11 04:07:54.530800"], ["updated_at", "2016-12-11 04:07:54.530800"]]
1500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1501
+  (0.1ms) SAVEPOINT active_record_1
1502
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:54.532746"], ["updated_at", "2016-12-11 04:07:54.532746"]]
1503
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 66], ["created_at", "2016-12-11 04:07:54.534662"], ["updated_at", "2016-12-11 04:07:54.534662"]]
1504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1505
+  (0.2ms) ROLLBACK
1506
+  (0.1ms) BEGIN
1507
+ -----------------------
1508
+ MakerTest: test_aliases
1509
+ -----------------------
1510
+  (0.1ms) ROLLBACK
1511
+  (0.1ms) BEGIN
1512
+ -------------------------
1513
+ MakerTest: test_overrides
1514
+ -------------------------
1515
+  (0.2ms) SAVEPOINT active_record_1
1516
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 04:07:54.540121"], ["updated_at", "2016-12-11 04:07:54.540121"]]
1517
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 67], ["created_at", "2016-12-11 04:07:54.541238"], ["updated_at", "2016-12-11 04:07:54.541238"]]
1518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1519
+  (0.1ms) SAVEPOINT active_record_1
1520
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 04:07:54.543120"], ["updated_at", "2016-12-11 04:07:54.543120"]]
1521
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 68], ["created_at", "2016-12-11 04:07:54.544000"], ["updated_at", "2016-12-11 04:07:54.544000"]]
1522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1523
+  (0.1ms) SAVEPOINT active_record_1
1524
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 04:07:54.545770"], ["updated_at", "2016-12-11 04:07:54.545770"]]
1525
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 69], ["created_at", "2016-12-11 04:07:54.547949"], ["updated_at", "2016-12-11 04:07:54.547949"]]
1526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1527
+  (0.1ms) SAVEPOINT active_record_1
1528
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:07:54.549794"], ["updated_at", "2016-12-11 04:07:54.549794"]]
1529
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 70], ["created_at", "2016-12-11 04:07:54.550576"], ["updated_at", "2016-12-11 04:07:54.550576"]]
1530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1531
+  (0.1ms) ROLLBACK
1532
+  (0.1ms) BEGIN
1533
+ ---------------------------
1534
+ MakerTest: test_definitions
1535
+ ---------------------------
1536
+  (0.1ms) ROLLBACK
1537
+  (0.1ms) BEGIN
1538
+ ----------------------------
1539
+ MakerTest: test_associations
1540
+ ----------------------------
1541
+  (0.1ms) SAVEPOINT active_record_1
1542
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:54.553886"], ["updated_at", "2016-12-11 04:07:54.553886"]]
1543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
+  (0.1ms) SAVEPOINT active_record_1
1545
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:54.555215"], ["updated_at", "2016-12-11 04:07:54.555215"]]
1546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1547
+  (0.2ms) ROLLBACK
1548
+  (0.1ms) BEGIN
1549
+ ---------------------------
1550
+ MakerTest: test_inheritance
1551
+ ---------------------------
1552
+  (0.1ms) SAVEPOINT active_record_1
1553
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:07:54.558224"], ["updated_at", "2016-12-11 04:07:54.558224"]]
1554
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 71], ["created_at", "2016-12-11 04:07:54.559185"], ["updated_at", "2016-12-11 04:07:54.559185"]]
1555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1556
+  (0.2ms) ROLLBACK
1557
+  (0.1ms) BEGIN
1558
+ ---------------------------
1559
+ GeneratorTest: test_install
1560
+ ---------------------------
1561
+  (0.3ms) ROLLBACK
1562
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1563
+  (0.2ms) BEGIN
1564
+ ----------------------------
1565
+ MakerTest: test_associations
1566
+ ----------------------------
1567
+  (0.2ms) SAVEPOINT active_record_1
1568
+ SQL (0.4ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:57.848784"], ["updated_at", "2016-12-11 04:07:57.848784"]]
1569
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1570
+  (0.1ms) SAVEPOINT active_record_1
1571
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:07:57.851874"], ["updated_at", "2016-12-11 04:07:57.851874"]]
1572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1573
+  (0.2ms) ROLLBACK
1574
+  (0.2ms) BEGIN
1575
+ -------------------------
1576
+ MakerTest: test_dependent
1577
+ -------------------------
1578
+  (0.1ms) SAVEPOINT active_record_1
1579
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:07:57.854915"], ["updated_at", "2016-12-11 04:07:57.854915"]]
1580
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 72], ["created_at", "2016-12-11 04:07:57.856050"], ["updated_at", "2016-12-11 04:07:57.856050"]]
1581
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1582
+  (0.1ms) ROLLBACK
1583
+  (0.1ms) BEGIN
1584
+ -----------------------
1585
+ MakerTest: test_aliases
1586
+ -----------------------
1587
+  (0.1ms) ROLLBACK
1588
+  (0.1ms) BEGIN
1589
+ ---------------------------
1590
+ MakerTest: test_inheritance
1591
+ ---------------------------
1592
+  (0.1ms) SAVEPOINT active_record_1
1593
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:07:57.859721"], ["updated_at", "2016-12-11 04:07:57.859721"]]
1594
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 73], ["created_at", "2016-12-11 04:07:57.860708"], ["updated_at", "2016-12-11 04:07:57.860708"]]
1595
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1596
+  (0.1ms) ROLLBACK
1597
+  (0.1ms) BEGIN
1598
+ ---------------------------
1599
+ MakerTest: test_definitions
1600
+ ---------------------------
1601
+  (0.1ms) ROLLBACK
1602
+  (0.1ms) BEGIN
1603
+ -------------------------
1604
+ MakerTest: test_sequences
1605
+ -------------------------
1606
+  (0.1ms) SAVEPOINT active_record_1
1607
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:07:57.864765"], ["updated_at", "2016-12-11 04:07:57.864765"]]
1608
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 74], ["created_at", "2016-12-11 04:07:57.865740"], ["updated_at", "2016-12-11 04:07:57.865740"]]
1609
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1610
+  (0.1ms) SAVEPOINT active_record_1
1611
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:07:57.867901"], ["updated_at", "2016-12-11 04:07:57.867901"]]
1612
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 75], ["created_at", "2016-12-11 04:07:57.870144"], ["updated_at", "2016-12-11 04:07:57.870144"]]
1613
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1614
+  (0.1ms) ROLLBACK
1615
+  (0.1ms) BEGIN
1616
+ -------------------------
1617
+ MakerTest: test_overrides
1618
+ -------------------------
1619
+  (0.1ms) SAVEPOINT active_record_1
1620
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:07:57.873866"], ["updated_at", "2016-12-11 04:07:57.873866"]]
1621
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 76], ["created_at", "2016-12-11 04:07:57.874795"], ["updated_at", "2016-12-11 04:07:57.874795"]]
1622
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1623
+  (0.1ms) SAVEPOINT active_record_1
1624
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:07:57.876419"], ["updated_at", "2016-12-11 04:07:57.876419"]]
1625
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 77], ["created_at", "2016-12-11 04:07:57.877105"], ["updated_at", "2016-12-11 04:07:57.877105"]]
1626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1627
+  (0.1ms) SAVEPOINT active_record_1
1628
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 04:07:57.878590"], ["updated_at", "2016-12-11 04:07:57.878590"]]
1629
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 78], ["created_at", "2016-12-11 04:07:57.879289"], ["updated_at", "2016-12-11 04:07:57.879289"]]
1630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1631
+  (0.1ms) SAVEPOINT active_record_1
1632
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:07:57.880675"], ["updated_at", "2016-12-11 04:07:57.880675"]]
1633
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 79], ["created_at", "2016-12-11 04:07:57.881466"], ["updated_at", "2016-12-11 04:07:57.881466"]]
1634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1635
+  (0.1ms) ROLLBACK
1636
+  (0.1ms) BEGIN
1637
+ ---------------------------
1638
+ GeneratorTest: test_install
1639
+ ---------------------------
1640
+  (0.1ms) ROLLBACK
1641
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1642
+  (0.2ms) BEGIN
1643
+ ---------------------------
1644
+ GeneratorTest: test_install
1645
+ ---------------------------
1646
+  (0.2ms) ROLLBACK
1647
+  (0.2ms) BEGIN
1648
+ ----------------------------
1649
+ MakerTest: test_associations
1650
+ ----------------------------
1651
+  (0.2ms) SAVEPOINT active_record_1
1652
+ SQL (0.3ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:00.205525"], ["updated_at", "2016-12-11 04:08:00.205525"]]
1653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1654
+  (0.1ms) SAVEPOINT active_record_1
1655
+ SQL (0.1ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:00.208615"], ["updated_at", "2016-12-11 04:08:00.208615"]]
1656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1657
+  (0.2ms) ROLLBACK
1658
+  (0.1ms) BEGIN
1659
+ -----------------------
1660
+ MakerTest: test_aliases
1661
+ -----------------------
1662
+  (0.1ms) ROLLBACK
1663
+  (0.1ms) BEGIN
1664
+ -------------------------
1665
+ MakerTest: test_dependent
1666
+ -------------------------
1667
+  (0.1ms) SAVEPOINT active_record_1
1668
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:08:00.212229"], ["updated_at", "2016-12-11 04:08:00.212229"]]
1669
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 80], ["created_at", "2016-12-11 04:08:00.214196"], ["updated_at", "2016-12-11 04:08:00.214196"]]
1670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1671
+  (0.1ms) ROLLBACK
1672
+  (0.1ms) BEGIN
1673
+ ---------------------------
1674
+ MakerTest: test_definitions
1675
+ ---------------------------
1676
+  (0.1ms) ROLLBACK
1677
+  (0.1ms) BEGIN
1678
+ -------------------------
1679
+ MakerTest: test_sequences
1680
+ -------------------------
1681
+  (0.1ms) SAVEPOINT active_record_1
1682
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 04:08:00.218078"], ["updated_at", "2016-12-11 04:08:00.218078"]]
1683
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 81], ["created_at", "2016-12-11 04:08:00.220174"], ["updated_at", "2016-12-11 04:08:00.220174"]]
1684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1685
+  (0.1ms) SAVEPOINT active_record_1
1686
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:08:00.222717"], ["updated_at", "2016-12-11 04:08:00.222717"]]
1687
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 82], ["created_at", "2016-12-11 04:08:00.223536"], ["updated_at", "2016-12-11 04:08:00.223536"]]
1688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1689
+  (0.2ms) ROLLBACK
1690
+  (0.1ms) BEGIN
1691
+ -------------------------
1692
+ MakerTest: test_overrides
1693
+ -------------------------
1694
+  (0.1ms) SAVEPOINT active_record_1
1695
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 04:08:00.227102"], ["updated_at", "2016-12-11 04:08:00.227102"]]
1696
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 83], ["created_at", "2016-12-11 04:08:00.228045"], ["updated_at", "2016-12-11 04:08:00.228045"]]
1697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1698
+  (0.1ms) SAVEPOINT active_record_1
1699
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:08:00.229639"], ["updated_at", "2016-12-11 04:08:00.229639"]]
1700
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 84], ["created_at", "2016-12-11 04:08:00.230328"], ["updated_at", "2016-12-11 04:08:00.230328"]]
1701
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1702
+  (0.1ms) SAVEPOINT active_record_1
1703
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:08:00.231865"], ["updated_at", "2016-12-11 04:08:00.231865"]]
1704
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 85], ["created_at", "2016-12-11 04:08:00.232614"], ["updated_at", "2016-12-11 04:08:00.232614"]]
1705
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1706
+  (0.1ms) SAVEPOINT active_record_1
1707
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:08:00.234241"], ["updated_at", "2016-12-11 04:08:00.234241"]]
1708
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 86], ["created_at", "2016-12-11 04:08:00.234993"], ["updated_at", "2016-12-11 04:08:00.234993"]]
1709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1710
+  (0.1ms) ROLLBACK
1711
+  (0.1ms) BEGIN
1712
+ ---------------------------
1713
+ MakerTest: test_inheritance
1714
+ ---------------------------
1715
+  (0.1ms) SAVEPOINT active_record_1
1716
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 04:08:00.237533"], ["updated_at", "2016-12-11 04:08:00.237533"]]
1717
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 87], ["created_at", "2016-12-11 04:08:00.238442"], ["updated_at", "2016-12-11 04:08:00.238442"]]
1718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1719
+  (0.1ms) ROLLBACK
1720
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1721
+  (0.2ms) BEGIN
1722
+ ---------------------------
1723
+ GeneratorTest: test_install
1724
+ ---------------------------
1725
+  (0.2ms) ROLLBACK
1726
+  (0.1ms) BEGIN
1727
+ ---------------------------
1728
+ MakerTest: test_inheritance
1729
+ ---------------------------
1730
+  (0.2ms) SAVEPOINT active_record_1
1731
+ SQL (0.4ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:08:02.427879"], ["updated_at", "2016-12-11 04:08:02.427879"]]
1732
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 88], ["created_at", "2016-12-11 04:08:02.430751"], ["updated_at", "2016-12-11 04:08:02.430751"]]
1733
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1734
+  (0.1ms) ROLLBACK
1735
+  (0.1ms) BEGIN
1736
+ ---------------------------
1737
+ MakerTest: test_definitions
1738
+ ---------------------------
1739
+  (0.1ms) ROLLBACK
1740
+  (0.1ms) BEGIN
1741
+ -------------------------
1742
+ MakerTest: test_overrides
1743
+ -------------------------
1744
+  (0.2ms) SAVEPOINT active_record_1
1745
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:08:02.435643"], ["updated_at", "2016-12-11 04:08:02.435643"]]
1746
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 89], ["created_at", "2016-12-11 04:08:02.437181"], ["updated_at", "2016-12-11 04:08:02.437181"]]
1747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1748
+  (0.1ms) SAVEPOINT active_record_1
1749
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 04:08:02.439002"], ["updated_at", "2016-12-11 04:08:02.439002"]]
1750
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 90], ["created_at", "2016-12-11 04:08:02.439801"], ["updated_at", "2016-12-11 04:08:02.439801"]]
1751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1752
+  (0.2ms) SAVEPOINT active_record_1
1753
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 04:08:02.442922"], ["updated_at", "2016-12-11 04:08:02.442922"]]
1754
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 91], ["created_at", "2016-12-11 04:08:02.444038"], ["updated_at", "2016-12-11 04:08:02.444038"]]
1755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1756
+  (0.1ms) SAVEPOINT active_record_1
1757
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 04:08:02.445854"], ["updated_at", "2016-12-11 04:08:02.445854"]]
1758
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 92], ["created_at", "2016-12-11 04:08:02.446702"], ["updated_at", "2016-12-11 04:08:02.446702"]]
1759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
+  (0.1ms) ROLLBACK
1761
+  (0.1ms) BEGIN
1762
+ -------------------------
1763
+ MakerTest: test_sequences
1764
+ -------------------------
1765
+  (0.1ms) SAVEPOINT active_record_1
1766
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 04:08:02.449299"], ["updated_at", "2016-12-11 04:08:02.449299"]]
1767
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 93], ["created_at", "2016-12-11 04:08:02.450059"], ["updated_at", "2016-12-11 04:08:02.450059"]]
1768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1769
+  (0.1ms) SAVEPOINT active_record_1
1770
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:08:02.451789"], ["updated_at", "2016-12-11 04:08:02.451789"]]
1771
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 94], ["created_at", "2016-12-11 04:08:02.452531"], ["updated_at", "2016-12-11 04:08:02.452531"]]
1772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1773
+  (0.1ms) ROLLBACK
1774
+  (0.1ms) BEGIN
1775
+ -------------------------
1776
+ MakerTest: test_dependent
1777
+ -------------------------
1778
+  (0.1ms) SAVEPOINT active_record_1
1779
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:08:02.454963"], ["updated_at", "2016-12-11 04:08:02.454963"]]
1780
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 95], ["created_at", "2016-12-11 04:08:02.455706"], ["updated_at", "2016-12-11 04:08:02.455706"]]
1781
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1782
+  (0.1ms) ROLLBACK
1783
+  (0.1ms) BEGIN
1784
+ ----------------------------
1785
+ MakerTest: test_associations
1786
+ ----------------------------
1787
+  (0.1ms) SAVEPOINT active_record_1
1788
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:02.458122"], ["updated_at", "2016-12-11 04:08:02.458122"]]
1789
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1790
+  (0.1ms) SAVEPOINT active_record_1
1791
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 04:08:02.459353"], ["updated_at", "2016-12-11 04:08:02.459353"]]
1792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1793
+  (0.1ms) ROLLBACK
1794
+  (0.1ms) BEGIN
1795
+ -----------------------
1796
+ MakerTest: test_aliases
1797
+ -----------------------
1798
+  (0.1ms) ROLLBACK
1799
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1800
+  (0.2ms) BEGIN
1801
+ ---------------------------
1802
+ GeneratorTest: test_install
1803
+ ---------------------------
1804
+  (0.2ms) ROLLBACK
1805
+  (0.1ms) BEGIN
1806
+ ----------------------------
1807
+ MakerTest: test_associations
1808
+ ----------------------------
1809
+  (0.1ms) ROLLBACK
1810
+  (0.1ms) BEGIN
1811
+ ---------------------------
1812
+ MakerTest: test_inheritance
1813
+ ---------------------------
1814
+  (0.1ms) ROLLBACK
1815
+  (0.2ms) BEGIN
1816
+ -------------------------
1817
+ MakerTest: test_sequences
1818
+ -------------------------
1819
+  (0.2ms) ROLLBACK
1820
+  (0.1ms) BEGIN
1821
+ -------------------------
1822
+ MakerTest: test_dependent
1823
+ -------------------------
1824
+  (0.1ms) ROLLBACK
1825
+  (0.1ms) BEGIN
1826
+ -------------------------
1827
+ MakerTest: test_overrides
1828
+ -------------------------
1829
+  (0.1ms) ROLLBACK
1830
+  (0.1ms) BEGIN
1831
+ ---------------------------
1832
+ MakerTest: test_definitions
1833
+ ---------------------------
1834
+  (0.1ms) ROLLBACK
1835
+  (0.1ms) BEGIN
1836
+ -----------------------
1837
+ MakerTest: test_aliases
1838
+ -----------------------
1839
+  (0.1ms) ROLLBACK
1840
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1841
+  (0.2ms) BEGIN
1842
+ ---------------------------
1843
+ GeneratorTest: test_install
1844
+ ---------------------------
1845
+  (0.2ms) ROLLBACK
1846
+  (0.1ms) BEGIN
1847
+ -------------------------
1848
+ MakerTest: test_sequences
1849
+ -------------------------
1850
+  (0.2ms) SAVEPOINT active_record_1
1851
+ SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 04:57:27.817613"], ["updated_at", "2016-12-11 04:57:27.817613"]]
1852
+ SQL (0.4ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 96], ["created_at", "2016-12-11 04:57:27.821186"], ["updated_at", "2016-12-11 04:57:27.821186"]]
1853
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1854
+  (0.4ms) SAVEPOINT active_record_1
1855
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 04:57:27.826957"], ["updated_at", "2016-12-11 04:57:27.826957"]]
1856
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 97], ["created_at", "2016-12-11 04:57:27.828780"], ["updated_at", "2016-12-11 04:57:27.828780"]]
1857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1858
+  (0.1ms) ROLLBACK
1859
+  (0.1ms) BEGIN
1860
+ -----------------------
1861
+ MakerTest: test_aliases
1862
+ -----------------------
1863
+  (0.1ms) ROLLBACK
1864
+  (0.1ms) BEGIN
1865
+ ---------------------------
1866
+ MakerTest: test_inheritance
1867
+ ---------------------------
1868
+  (1.3ms) ROLLBACK
1869
+  (0.1ms) BEGIN
1870
+ ---------------------------
1871
+ MakerTest: test_definitions
1872
+ ---------------------------
1873
+  (0.1ms) ROLLBACK
1874
+  (0.1ms) BEGIN
1875
+ -------------------------
1876
+ MakerTest: test_dependent
1877
+ -------------------------
1878
+  (0.1ms) SAVEPOINT active_record_1
1879
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 04:57:27.835254"], ["updated_at", "2016-12-11 04:57:27.835254"]]
1880
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 98], ["created_at", "2016-12-11 04:57:27.836209"], ["updated_at", "2016-12-11 04:57:27.836209"]]
1881
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1882
+  (0.1ms) ROLLBACK
1883
+  (0.1ms) BEGIN
1884
+ ----------------------------
1885
+ MakerTest: test_associations
1886
+ ----------------------------
1887
+  (0.1ms) ROLLBACK
1888
+  (0.1ms) BEGIN
1889
+ -------------------------
1890
+ MakerTest: test_overrides
1891
+ -------------------------
1892
+  (0.1ms) SAVEPOINT active_record_1
1893
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 04:57:27.840766"], ["updated_at", "2016-12-11 04:57:27.840766"]]
1894
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 99], ["created_at", "2016-12-11 04:57:27.841805"], ["updated_at", "2016-12-11 04:57:27.841805"]]
1895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1896
+  (0.1ms) SAVEPOINT active_record_1
1897
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 04:57:27.843431"], ["updated_at", "2016-12-11 04:57:27.843431"]]
1898
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 100], ["created_at", "2016-12-11 04:57:27.844250"], ["updated_at", "2016-12-11 04:57:27.844250"]]
1899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1900
+  (0.1ms) SAVEPOINT active_record_1
1901
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 04:57:27.845761"], ["updated_at", "2016-12-11 04:57:27.845761"]]
1902
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 101], ["created_at", "2016-12-11 04:57:27.846469"], ["updated_at", "2016-12-11 04:57:27.846469"]]
1903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1904
+  (0.1ms) SAVEPOINT active_record_1
1905
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 04:57:27.847898"], ["updated_at", "2016-12-11 04:57:27.847898"]]
1906
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 102], ["created_at", "2016-12-11 04:57:27.848608"], ["updated_at", "2016-12-11 04:57:27.848608"]]
1907
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1908
+  (0.1ms) ROLLBACK
1909
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1910
+  (0.2ms) BEGIN
1911
+ ---------------------------
1912
+ GeneratorTest: test_install
1913
+ ---------------------------
1914
+  (0.2ms) ROLLBACK
1915
+  (0.1ms) BEGIN
1916
+ -------------------------
1917
+ MakerTest: test_dependent
1918
+ -------------------------
1919
+  (0.2ms) SAVEPOINT active_record_1
1920
+ SQL (0.8ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 05:01:40.341102"], ["updated_at", "2016-12-11 05:01:40.341102"]]
1921
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 103], ["created_at", "2016-12-11 05:01:40.345731"], ["updated_at", "2016-12-11 05:01:40.345731"]]
1922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1923
+  (0.1ms) ROLLBACK
1924
+  (0.1ms) BEGIN
1925
+ ---------------------------
1926
+ MakerTest: test_definitions
1927
+ ---------------------------
1928
+  (0.1ms) ROLLBACK
1929
+  (0.1ms) BEGIN
1930
+ -----------------------
1931
+ MakerTest: test_aliases
1932
+ -----------------------
1933
+  (0.1ms) ROLLBACK
1934
+  (0.1ms) BEGIN
1935
+ -------------------------
1936
+ MakerTest: test_sequences
1937
+ -------------------------
1938
+  (0.1ms) SAVEPOINT active_record_1
1939
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:01:40.350693"], ["updated_at", "2016-12-11 05:01:40.350693"]]
1940
+ SQL (0.4ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 104], ["created_at", "2016-12-11 05:01:40.353245"], ["updated_at", "2016-12-11 05:01:40.353245"]]
1941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1942
+  (0.2ms) SAVEPOINT active_record_1
1943
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:01:40.356435"], ["updated_at", "2016-12-11 05:01:40.356435"]]
1944
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 105], ["created_at", "2016-12-11 05:01:40.357340"], ["updated_at", "2016-12-11 05:01:40.357340"]]
1945
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1946
+  (0.1ms) ROLLBACK
1947
+  (0.1ms) BEGIN
1948
+ ----------------------------
1949
+ MakerTest: test_associations
1950
+ ----------------------------
1951
+  (0.1ms) ROLLBACK
1952
+  (0.1ms) BEGIN
1953
+ ---------------------------
1954
+ MakerTest: test_inheritance
1955
+ ---------------------------
1956
+  (0.1ms) ROLLBACK
1957
+  (0.1ms) BEGIN
1958
+ -------------------------
1959
+ MakerTest: test_overrides
1960
+ -------------------------
1961
+  (0.1ms) SAVEPOINT active_record_1
1962
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:01:40.363052"], ["updated_at", "2016-12-11 05:01:40.363052"]]
1963
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 106], ["created_at", "2016-12-11 05:01:40.363953"], ["updated_at", "2016-12-11 05:01:40.363953"]]
1964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1965
+  (0.1ms) SAVEPOINT active_record_1
1966
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:01:40.365450"], ["updated_at", "2016-12-11 05:01:40.365450"]]
1967
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 107], ["created_at", "2016-12-11 05:01:40.366119"], ["updated_at", "2016-12-11 05:01:40.366119"]]
1968
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1969
+  (0.1ms) SAVEPOINT active_record_1
1970
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:01:40.367602"], ["updated_at", "2016-12-11 05:01:40.367602"]]
1971
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 108], ["created_at", "2016-12-11 05:01:40.368313"], ["updated_at", "2016-12-11 05:01:40.368313"]]
1972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1973
+  (0.1ms) SAVEPOINT active_record_1
1974
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:01:40.370280"], ["updated_at", "2016-12-11 05:01:40.370280"]]
1975
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 109], ["created_at", "2016-12-11 05:01:40.371037"], ["updated_at", "2016-12-11 05:01:40.371037"]]
1976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1977
+  (0.1ms) ROLLBACK
1978
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1979
+  (0.2ms) BEGIN
1980
+ ---------------------------
1981
+ GeneratorTest: test_install
1982
+ ---------------------------
1983
+  (0.2ms) ROLLBACK
1984
+  (0.2ms) BEGIN
1985
+ ----------------------------
1986
+ MakerTest: test_associations
1987
+ ----------------------------
1988
+  (0.2ms) ROLLBACK
1989
+  (0.1ms) BEGIN
1990
+ ---------------------------
1991
+ MakerTest: test_definitions
1992
+ ---------------------------
1993
+  (0.1ms) ROLLBACK
1994
+  (0.1ms) BEGIN
1995
+ -------------------------
1996
+ MakerTest: test_dependent
1997
+ -------------------------
1998
+  (0.1ms) SAVEPOINT active_record_1
1999
+ SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:01:58.916417"], ["updated_at", "2016-12-11 05:01:58.916417"]]
2000
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 110], ["created_at", "2016-12-11 05:01:58.920652"], ["updated_at", "2016-12-11 05:01:58.920652"]]
2001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2002
+  (0.1ms) ROLLBACK
2003
+  (0.1ms) BEGIN
2004
+ ---------------------------
2005
+ MakerTest: test_inheritance
2006
+ ---------------------------
2007
+  (0.1ms) ROLLBACK
2008
+  (0.1ms) BEGIN
2009
+ -------------------------
2010
+ MakerTest: test_sequences
2011
+ -------------------------
2012
+  (0.1ms) SAVEPOINT active_record_1
2013
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:01:58.925179"], ["updated_at", "2016-12-11 05:01:58.925179"]]
2014
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 111], ["created_at", "2016-12-11 05:01:58.926040"], ["updated_at", "2016-12-11 05:01:58.926040"]]
2015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2016
+  (0.1ms) SAVEPOINT active_record_1
2017
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:01:58.928139"], ["updated_at", "2016-12-11 05:01:58.928139"]]
2018
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 112], ["created_at", "2016-12-11 05:01:58.928992"], ["updated_at", "2016-12-11 05:01:58.928992"]]
2019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2020
+  (0.1ms) ROLLBACK
2021
+  (1.1ms) BEGIN
2022
+ -------------------------
2023
+ MakerTest: test_overrides
2024
+ -------------------------
2025
+  (0.1ms) SAVEPOINT active_record_1
2026
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:01:58.933865"], ["updated_at", "2016-12-11 05:01:58.933865"]]
2027
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 113], ["created_at", "2016-12-11 05:01:58.934789"], ["updated_at", "2016-12-11 05:01:58.934789"]]
2028
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2029
+  (0.1ms) SAVEPOINT active_record_1
2030
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:01:58.936303"], ["updated_at", "2016-12-11 05:01:58.936303"]]
2031
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 114], ["created_at", "2016-12-11 05:01:58.937037"], ["updated_at", "2016-12-11 05:01:58.937037"]]
2032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2033
+  (0.1ms) SAVEPOINT active_record_1
2034
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:01:58.938366"], ["updated_at", "2016-12-11 05:01:58.938366"]]
2035
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 115], ["created_at", "2016-12-11 05:01:58.939089"], ["updated_at", "2016-12-11 05:01:58.939089"]]
2036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2037
+  (0.1ms) SAVEPOINT active_record_1
2038
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:01:58.940581"], ["updated_at", "2016-12-11 05:01:58.940581"]]
2039
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 116], ["created_at", "2016-12-11 05:01:58.941410"], ["updated_at", "2016-12-11 05:01:58.941410"]]
2040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2041
+  (0.1ms) ROLLBACK
2042
+  (0.1ms) BEGIN
2043
+ -----------------------
2044
+ MakerTest: test_aliases
2045
+ -----------------------
2046
+  (0.1ms) ROLLBACK
2047
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2048
+  (0.2ms) BEGIN
2049
+ ----------------------------
2050
+ MakerTest: test_associations
2051
+ ----------------------------
2052
+  (0.2ms) ROLLBACK
2053
+  (0.1ms) BEGIN
2054
+ -------------------------
2055
+ MakerTest: test_dependent
2056
+ -------------------------
2057
+  (0.2ms) SAVEPOINT active_record_1
2058
+ SQL (0.5ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:03:21.577261"], ["updated_at", "2016-12-11 05:03:21.577261"]]
2059
+ SQL (0.5ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 117], ["created_at", "2016-12-11 05:03:21.580588"], ["updated_at", "2016-12-11 05:03:21.580588"]]
2060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2061
+  (0.1ms) ROLLBACK
2062
+  (0.1ms) BEGIN
2063
+ -------------------------
2064
+ MakerTest: test_overrides
2065
+ -------------------------
2066
+  (0.1ms) SAVEPOINT active_record_1
2067
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:03:21.585460"], ["updated_at", "2016-12-11 05:03:21.585460"]]
2068
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 118], ["created_at", "2016-12-11 05:03:21.586589"], ["updated_at", "2016-12-11 05:03:21.586589"]]
2069
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2070
+  (0.1ms) SAVEPOINT active_record_1
2071
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 05:03:21.589700"], ["updated_at", "2016-12-11 05:03:21.589700"]]
2072
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 119], ["created_at", "2016-12-11 05:03:21.590641"], ["updated_at", "2016-12-11 05:03:21.590641"]]
2073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2074
+  (0.1ms) SAVEPOINT active_record_1
2075
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 05:03:21.592518"], ["updated_at", "2016-12-11 05:03:21.592518"]]
2076
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 120], ["created_at", "2016-12-11 05:03:21.593379"], ["updated_at", "2016-12-11 05:03:21.593379"]]
2077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2078
+  (0.1ms) SAVEPOINT active_record_1
2079
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:03:21.594932"], ["updated_at", "2016-12-11 05:03:21.594932"]]
2080
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 121], ["created_at", "2016-12-11 05:03:21.595654"], ["updated_at", "2016-12-11 05:03:21.595654"]]
2081
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2082
+  (0.1ms) ROLLBACK
2083
+  (0.1ms) BEGIN
2084
+ ---------------------------
2085
+ MakerTest: test_inheritance
2086
+ ---------------------------
2087
+  (0.1ms) ROLLBACK
2088
+  (0.1ms) BEGIN
2089
+ ---------------------------
2090
+ MakerTest: test_definitions
2091
+ ---------------------------
2092
+  (0.1ms) ROLLBACK
2093
+  (0.1ms) BEGIN
2094
+ -----------------------
2095
+ MakerTest: test_aliases
2096
+ -----------------------
2097
+  (0.1ms) ROLLBACK
2098
+  (0.1ms) BEGIN
2099
+ -------------------------
2100
+ MakerTest: test_sequences
2101
+ -------------------------
2102
+  (0.1ms) SAVEPOINT active_record_1
2103
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:03:21.600127"], ["updated_at", "2016-12-11 05:03:21.600127"]]
2104
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 122], ["created_at", "2016-12-11 05:03:21.600909"], ["updated_at", "2016-12-11 05:03:21.600909"]]
2105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2106
+  (0.1ms) SAVEPOINT active_record_1
2107
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:03:21.602644"], ["updated_at", "2016-12-11 05:03:21.602644"]]
2108
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 123], ["created_at", "2016-12-11 05:03:21.603400"], ["updated_at", "2016-12-11 05:03:21.603400"]]
2109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2110
+  (0.1ms) ROLLBACK
2111
+  (0.1ms) BEGIN
2112
+ ---------------------------
2113
+ GeneratorTest: test_install
2114
+ ---------------------------
2115
+  (0.1ms) ROLLBACK
2116
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2117
+  (0.2ms) BEGIN
2118
+ ---------------------------
2119
+ GeneratorTest: test_install
2120
+ ---------------------------
2121
+  (0.2ms) ROLLBACK
2122
+  (0.1ms) BEGIN
2123
+ -------------------------
2124
+ MakerTest: test_dependent
2125
+ -------------------------
2126
+  (0.2ms) SAVEPOINT active_record_1
2127
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-11 05:03:32.748188"], ["updated_at", "2016-12-11 05:03:32.748188"]]
2128
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 124], ["created_at", "2016-12-11 05:03:32.751319"], ["updated_at", "2016-12-11 05:03:32.751319"]]
2129
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2130
+  (0.2ms) ROLLBACK
2131
+  (0.1ms) BEGIN
2132
+ ---------------------------
2133
+ MakerTest: test_inheritance
2134
+ ---------------------------
2135
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2136
+  (0.2ms) BEGIN
2137
+ ---------------------------
2138
+ GeneratorTest: test_install
2139
+ ---------------------------
2140
+  (0.1ms) ROLLBACK
2141
+  (0.1ms) BEGIN
2142
+ ---------------------------
2143
+ MakerTest: test_inheritance
2144
+ ---------------------------
2145
+  (0.2ms) ROLLBACK
2146
+  (0.1ms) BEGIN
2147
+ -------------------------
2148
+ MakerTest: test_overrides
2149
+ -------------------------
2150
+  (0.2ms) SAVEPOINT active_record_1
2151
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:05:46.839660"], ["updated_at", "2016-12-11 05:05:46.839660"]]
2152
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 125], ["created_at", "2016-12-11 05:05:46.842376"], ["updated_at", "2016-12-11 05:05:46.842376"]]
2153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2154
+  (0.1ms) SAVEPOINT active_record_1
2155
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:05:46.844281"], ["updated_at", "2016-12-11 05:05:46.844281"]]
2156
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 126], ["created_at", "2016-12-11 05:05:46.844975"], ["updated_at", "2016-12-11 05:05:46.844975"]]
2157
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2158
+  (0.1ms) SAVEPOINT active_record_1
2159
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 05:05:46.846447"], ["updated_at", "2016-12-11 05:05:46.846447"]]
2160
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 127], ["created_at", "2016-12-11 05:05:46.847222"], ["updated_at", "2016-12-11 05:05:46.847222"]]
2161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2162
+  (0.1ms) SAVEPOINT active_record_1
2163
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-11 05:05:46.849971"], ["updated_at", "2016-12-11 05:05:46.849971"]]
2164
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 128], ["created_at", "2016-12-11 05:05:46.851064"], ["updated_at", "2016-12-11 05:05:46.851064"]]
2165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2166
+  (0.1ms) ROLLBACK
2167
+  (0.1ms) BEGIN
2168
+ ----------------------------
2169
+ MakerTest: test_associations
2170
+ ----------------------------
2171
+  (0.1ms) ROLLBACK
2172
+  (0.1ms) BEGIN
2173
+ -------------------------
2174
+ MakerTest: test_sequences
2175
+ -------------------------
2176
+  (0.2ms) SAVEPOINT active_record_1
2177
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 05:05:46.856726"], ["updated_at", "2016-12-11 05:05:46.856726"]]
2178
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 129], ["created_at", "2016-12-11 05:05:46.857762"], ["updated_at", "2016-12-11 05:05:46.857762"]]
2179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2180
+  (0.1ms) SAVEPOINT active_record_1
2181
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:05:46.859665"], ["updated_at", "2016-12-11 05:05:46.859665"]]
2182
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 130], ["created_at", "2016-12-11 05:05:46.860369"], ["updated_at", "2016-12-11 05:05:46.860369"]]
2183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2184
+  (0.1ms) ROLLBACK
2185
+  (0.1ms) BEGIN
2186
+ ---------------------------
2187
+ MakerTest: test_definitions
2188
+ ---------------------------
2189
+  (0.1ms) ROLLBACK
2190
+  (0.1ms) BEGIN
2191
+ -------------------------
2192
+ MakerTest: test_dependent
2193
+ -------------------------
2194
+  (0.1ms) SAVEPOINT active_record_1
2195
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:05:46.863620"], ["updated_at", "2016-12-11 05:05:46.863620"]]
2196
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 131], ["created_at", "2016-12-11 05:05:46.864400"], ["updated_at", "2016-12-11 05:05:46.864400"]]
2197
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2198
+  (0.1ms) ROLLBACK
2199
+  (0.1ms) BEGIN
2200
+ -----------------------
2201
+ MakerTest: test_aliases
2202
+ -----------------------
2203
+  (0.1ms) ROLLBACK
2204
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2205
+  (0.2ms) BEGIN
2206
+ -----------------------
2207
+ MakerTest: test_aliases
2208
+ -----------------------
2209
+  (0.1ms) ROLLBACK
2210
+  (0.1ms) BEGIN
2211
+ ----------------------------
2212
+ MakerTest: test_associations
2213
+ ----------------------------
2214
+  (0.2ms) ROLLBACK
2215
+  (0.1ms) BEGIN
2216
+ -------------------------
2217
+ MakerTest: test_sequences
2218
+ -------------------------
2219
+  (0.2ms) SAVEPOINT active_record_1
2220
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:07:31.351717"], ["updated_at", "2016-12-11 05:07:31.351717"]]
2221
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 132], ["created_at", "2016-12-11 05:07:31.355287"], ["updated_at", "2016-12-11 05:07:31.355287"]]
2222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2223
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2224
+  (0.3ms) BEGIN
2225
+ ----------------------------
2226
+ MakerTest: test_associations
2227
+ ----------------------------
2228
+  (0.3ms) ROLLBACK
2229
+  (0.1ms) BEGIN
2230
+ ---------------------------
2231
+ MakerTest: test_definitions
2232
+ ---------------------------
2233
+  (0.1ms) ROLLBACK
2234
+  (0.1ms) BEGIN
2235
+ -----------------------
2236
+ MakerTest: test_aliases
2237
+ -----------------------
2238
+  (0.1ms) ROLLBACK
2239
+  (0.1ms) BEGIN
2240
+ -------------------------
2241
+ MakerTest: test_dependent
2242
+ -------------------------
2243
+  (0.1ms) SAVEPOINT active_record_1
2244
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-11 05:07:49.694687"], ["updated_at", "2016-12-11 05:07:49.694687"]]
2245
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 133], ["created_at", "2016-12-11 05:07:49.697392"], ["updated_at", "2016-12-11 05:07:49.697392"]]
2246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2247
+  (0.2ms) ROLLBACK
2248
+  (0.1ms) BEGIN
2249
+ ---------------------------
2250
+ MakerTest: test_inheritance
2251
+ ---------------------------
2252
+  (0.1ms) ROLLBACK
2253
+  (0.1ms) BEGIN
2254
+ -------------------------
2255
+ MakerTest: test_overrides
2256
+ -------------------------
2257
+  (0.1ms) SAVEPOINT active_record_1
2258
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-11 05:07:49.701927"], ["updated_at", "2016-12-11 05:07:49.701927"]]
2259
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 134], ["created_at", "2016-12-11 05:07:49.702814"], ["updated_at", "2016-12-11 05:07:49.702814"]]
2260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2261
+  (0.1ms) SAVEPOINT active_record_1
2262
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-11 05:07:49.704372"], ["updated_at", "2016-12-11 05:07:49.704372"]]
2263
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 135], ["created_at", "2016-12-11 05:07:49.705088"], ["updated_at", "2016-12-11 05:07:49.705088"]]
2264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2265
+  (0.2ms) SAVEPOINT active_record_1
2266
+ SQL (0.3ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:07:49.707204"], ["updated_at", "2016-12-11 05:07:49.707204"]]
2267
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 136], ["created_at", "2016-12-11 05:07:49.708754"], ["updated_at", "2016-12-11 05:07:49.708754"]]
2268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2269
+  (0.1ms) SAVEPOINT active_record_1
2270
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail13@example.com"], ["phone", 13], ["created_at", "2016-12-11 05:07:49.710764"], ["updated_at", "2016-12-11 05:07:49.710764"]]
2271
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 137], ["created_at", "2016-12-11 05:07:49.711593"], ["updated_at", "2016-12-11 05:07:49.711593"]]
2272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2273
+  (0.1ms) ROLLBACK
2274
+  (0.2ms) BEGIN
2275
+ -------------------------
2276
+ MakerTest: test_sequences
2277
+ -------------------------
2278
+  (0.2ms) SAVEPOINT active_record_1
2279
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-11 05:07:49.716544"], ["updated_at", "2016-12-11 05:07:49.716544"]]
2280
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 138], ["created_at", "2016-12-11 05:07:49.717954"], ["updated_at", "2016-12-11 05:07:49.717954"]]
2281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2282
+  (0.1ms) SAVEPOINT active_record_1
2283
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-11 05:07:49.720025"], ["updated_at", "2016-12-11 05:07:49.720025"]]
2284
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 139], ["created_at", "2016-12-11 05:07:49.720860"], ["updated_at", "2016-12-11 05:07:49.720860"]]
2285
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2286
+  (0.1ms) ROLLBACK
2287
+  (0.2ms) BEGIN
2288
+ ---------------------------
2289
+ GeneratorTest: test_install
2290
+ ---------------------------
2291
+  (0.2ms) ROLLBACK
2292
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2293
+  (0.2ms) BEGIN
2294
+ ---------------------------
2295
+ GeneratorTest: test_install
2296
+ ---------------------------
2297
+  (0.2ms) ROLLBACK
2298
+  (0.1ms) BEGIN
2299
+ -----------------------
2300
+ MakerTest: test_aliases
2301
+ -----------------------
2302
+  (0.1ms) ROLLBACK
2303
+  (0.1ms) BEGIN
2304
+ ----------------------------
2305
+ MakerTest: test_associations
2306
+ ----------------------------
2307
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2308
+  (0.2ms) BEGIN
2309
+ -------------------------
2310
+ MakerTest: test_overrides
2311
+ -------------------------
2312
+  (0.2ms) SAVEPOINT active_record_1
2313
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail5@example.com"], ["phone", 5], ["created_at", "2016-12-11 05:09:26.036863"], ["updated_at", "2016-12-11 05:09:26.036863"]]
2314
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 140], ["created_at", "2016-12-11 05:09:26.039773"], ["updated_at", "2016-12-11 05:09:26.039773"]]
2315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2316
+  (0.1ms) SAVEPOINT active_record_1
2317
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-11 05:09:26.041922"], ["updated_at", "2016-12-11 05:09:26.041922"]]
2318
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 141], ["created_at", "2016-12-11 05:09:26.042707"], ["updated_at", "2016-12-11 05:09:26.042707"]]
2319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2320
+  (0.1ms) SAVEPOINT active_record_1
2321
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail7@example.com"], ["phone", 7], ["created_at", "2016-12-11 05:09:26.044385"], ["updated_at", "2016-12-11 05:09:26.044385"]]
2322
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 142], ["created_at", "2016-12-11 05:09:26.045142"], ["updated_at", "2016-12-11 05:09:26.045142"]]
2323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2324
+  (0.1ms) SAVEPOINT active_record_1
2325
+ SQL (0.1ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-11 05:09:26.046677"], ["updated_at", "2016-12-11 05:09:26.046677"]]
2326
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 143], ["created_at", "2016-12-11 05:09:26.047426"], ["updated_at", "2016-12-11 05:09:26.047426"]]
2327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2328
+  (0.2ms) ROLLBACK
2329
+  (0.2ms) BEGIN
2330
+ ----------------------------
2331
+ MakerTest: test_associations
2332
+ ----------------------------
2333
+  (0.2ms) SAVEPOINT active_record_1
2334
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 05:09:26.051827"], ["updated_at", "2016-12-11 05:09:26.051827"]]
2335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2336
+  (0.1ms) SAVEPOINT active_record_1
2337
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-11 05:09:26.053478"], ["updated_at", "2016-12-11 05:09:26.053478"]]
2338
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2339
+  (0.1ms) ROLLBACK
2340
+  (0.1ms) BEGIN
2341
+ -------------------------
2342
+ MakerTest: test_dependent
2343
+ -------------------------
2344
+  (0.1ms) SAVEPOINT active_record_1
2345
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-11 05:09:26.056938"], ["updated_at", "2016-12-11 05:09:26.056938"]]
2346
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 144], ["created_at", "2016-12-11 05:09:26.058767"], ["updated_at", "2016-12-11 05:09:26.058767"]]
2347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2348
+  (0.1ms) ROLLBACK
2349
+  (0.1ms) BEGIN
2350
+ ---------------------------
2351
+ MakerTest: test_inheritance
2352
+ ---------------------------
2353
+  (0.1ms) SAVEPOINT active_record_1
2354
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail14@example.com"], ["phone", 14], ["created_at", "2016-12-11 05:09:26.061660"], ["updated_at", "2016-12-11 05:09:26.061660"]]
2355
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 145], ["created_at", "2016-12-11 05:09:26.062686"], ["updated_at", "2016-12-11 05:09:26.062686"]]
2356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2357
+  (0.2ms) ROLLBACK
2358
+  (0.1ms) BEGIN
2359
+ -------------------------
2360
+ MakerTest: test_sequences
2361
+ -------------------------
2362
+  (0.1ms) SAVEPOINT active_record_1
2363
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-11 05:09:26.065300"], ["updated_at", "2016-12-11 05:09:26.065300"]]
2364
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 146], ["created_at", "2016-12-11 05:09:26.066158"], ["updated_at", "2016-12-11 05:09:26.066158"]]
2365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2366
+  (0.1ms) SAVEPOINT active_record_1
2367
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-11 05:09:26.068203"], ["updated_at", "2016-12-11 05:09:26.068203"]]
2368
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 147], ["created_at", "2016-12-11 05:09:26.068950"], ["updated_at", "2016-12-11 05:09:26.068950"]]
2369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2370
+  (0.1ms) ROLLBACK
2371
+  (0.1ms) BEGIN
2372
+ -----------------------
2373
+ MakerTest: test_aliases
2374
+ -----------------------
2375
+  (0.1ms) ROLLBACK
2376
+  (0.1ms) BEGIN
2377
+ ---------------------------
2378
+ MakerTest: test_definitions
2379
+ ---------------------------
2380
+  (0.1ms) ROLLBACK
2381
+  (0.1ms) BEGIN
2382
+ ---------------------------
2383
+ GeneratorTest: test_install
2384
+ ---------------------------
2385
+  (0.1ms) ROLLBACK
2386
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2387
+  (18.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2388
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2389
+ Migrating to CreateUsers (20140613221835)
2390
+  (0.2ms) BEGIN
2391
+  (3.2ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2392
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
2393
+  (0.5ms) COMMIT
2394
+ Migrating to CreatePosts (20140615180954)
2395
+  (0.2ms) BEGIN
2396
+  (1.5ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2397
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
2398
+  (0.3ms) COMMIT
2399
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2400
+  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2401
+ FROM pg_constraint c
2402
+ JOIN pg_class t1 ON c.conrelid = t1.oid
2403
+ JOIN pg_class t2 ON c.confrelid = t2.oid
2404
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2405
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2406
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
2407
+ WHERE c.contype = 'f'
2408
+ AND t1.relname = 'posts'
2409
+ AND t3.nspname = ANY (current_schemas(false))
2410
+ ORDER BY c.conname
2411
+ 
2412
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2413
+ FROM pg_constraint c
2414
+ JOIN pg_class t1 ON c.conrelid = t1.oid
2415
+ JOIN pg_class t2 ON c.confrelid = t2.oid
2416
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2417
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2418
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
2419
+ WHERE c.contype = 'f'
2420
+ AND t1.relname = 'users'
2421
+ AND t3.nspname = ANY (current_schemas(false))
2422
+ ORDER BY c.conname
2423
+
2424
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2425
+  (0.2ms) BEGIN
2426
+ ---------------------------
2427
+ GeneratorTest: test_install
2428
+ ---------------------------
2429
+  (0.3ms) ROLLBACK
2430
+  (0.1ms) BEGIN
2431
+ ---------------------------
2432
+ MakerTest: test_inheritance
2433
+ ---------------------------
2434
+  (0.2ms) SAVEPOINT active_record_1
2435
+ SQL (0.5ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-13 20:08:38.734546"], ["updated_at", "2016-12-13 20:08:38.734546"]]
2436
+ SQL (0.3ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 1], ["created_at", "2016-12-13 20:08:38.737715"], ["updated_at", "2016-12-13 20:08:38.737715"]]
2437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2438
+  (0.1ms) ROLLBACK
2439
+  (0.1ms) BEGIN
2440
+ ----------------------------
2441
+ MakerTest: test_associations
2442
+ ----------------------------
2443
+  (0.1ms) SAVEPOINT active_record_1
2444
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:08:38.740855"], ["updated_at", "2016-12-13 20:08:38.740855"]]
2445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2446
+  (0.1ms) SAVEPOINT active_record_1
2447
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:08:38.742113"], ["updated_at", "2016-12-13 20:08:38.742113"]]
2448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2449
+  (0.1ms) ROLLBACK
2450
+  (0.1ms) BEGIN
2451
+ -------------------------
2452
+ MakerTest: test_dependent
2453
+ -------------------------
2454
+  (0.1ms) SAVEPOINT active_record_1
2455
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail6@example.com"], ["phone", 6], ["created_at", "2016-12-13 20:08:38.744923"], ["updated_at", "2016-12-13 20:08:38.744923"]]
2456
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 2], ["created_at", "2016-12-13 20:08:38.745890"], ["updated_at", "2016-12-13 20:08:38.745890"]]
2457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2458
+  (0.1ms) ROLLBACK
2459
+  (0.1ms) BEGIN
2460
+ -------------------------
2461
+ MakerTest: test_sequences
2462
+ -------------------------
2463
+  (0.1ms) SAVEPOINT active_record_1
2464
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail8@example.com"], ["phone", 8], ["created_at", "2016-12-13 20:08:38.748280"], ["updated_at", "2016-12-13 20:08:38.748280"]]
2465
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 3], ["created_at", "2016-12-13 20:08:38.748984"], ["updated_at", "2016-12-13 20:08:38.748984"]]
2466
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2467
+  (0.1ms) SAVEPOINT active_record_1
2468
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-13 20:08:38.750713"], ["updated_at", "2016-12-13 20:08:38.750713"]]
2469
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 4], ["created_at", "2016-12-13 20:08:38.751519"], ["updated_at", "2016-12-13 20:08:38.751519"]]
2470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2471
+  (0.1ms) ROLLBACK
2472
+  (0.1ms) BEGIN
2473
+ ---------------------------
2474
+ MakerTest: test_definitions
2475
+ ---------------------------
2476
+  (0.1ms) ROLLBACK
2477
+  (0.1ms) BEGIN
2478
+ -------------------------
2479
+ MakerTest: test_overrides
2480
+ -------------------------
2481
+  (0.1ms) SAVEPOINT active_record_1
2482
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail15@example.com"], ["phone", 15], ["created_at", "2016-12-13 20:08:38.755486"], ["updated_at", "2016-12-13 20:08:38.755486"]]
2483
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 5], ["created_at", "2016-12-13 20:08:38.756299"], ["updated_at", "2016-12-13 20:08:38.756299"]]
2484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2485
+  (0.1ms) SAVEPOINT active_record_1
2486
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-13 20:08:38.757775"], ["updated_at", "2016-12-13 20:08:38.757775"]]
2487
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 6], ["created_at", "2016-12-13 20:08:38.758442"], ["updated_at", "2016-12-13 20:08:38.758442"]]
2488
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2489
+  (0.1ms) SAVEPOINT active_record_1
2490
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail17@example.com"], ["phone", 17], ["created_at", "2016-12-13 20:08:38.759898"], ["updated_at", "2016-12-13 20:08:38.759898"]]
2491
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 7], ["created_at", "2016-12-13 20:08:38.760776"], ["updated_at", "2016-12-13 20:08:38.760776"]]
2492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2493
+  (0.1ms) SAVEPOINT active_record_1
2494
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-13 20:08:38.762818"], ["updated_at", "2016-12-13 20:08:38.762818"]]
2495
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 8], ["created_at", "2016-12-13 20:08:38.763855"], ["updated_at", "2016-12-13 20:08:38.763855"]]
2496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2497
+  (0.1ms) ROLLBACK
2498
+  (0.1ms) BEGIN
2499
+ -----------------------
2500
+ MakerTest: test_aliases
2501
+ -----------------------
2502
+  (0.1ms) ROLLBACK
2503
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2504
+  (0.2ms) BEGIN
2505
+ -------------------------
2506
+ MakerTest: test_dependent
2507
+ -------------------------
2508
+  (0.2ms) SAVEPOINT active_record_1
2509
+ SQL (0.4ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail2@example.com"], ["phone", 2], ["created_at", "2016-12-13 20:10:05.988201"], ["updated_at", "2016-12-13 20:10:05.988201"]]
2510
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 9], ["created_at", "2016-12-13 20:10:05.991762"], ["updated_at", "2016-12-13 20:10:05.991762"]]
2511
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2512
+  (0.2ms) ROLLBACK
2513
+  (0.1ms) BEGIN
2514
+ ---------------------------
2515
+ MakerTest: test_inheritance
2516
+ ---------------------------
2517
+  (0.1ms) SAVEPOINT active_record_1
2518
+ SQL (0.2ms) INSERT INTO "users" ("age", "name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["age", 9], ["name", "name"], ["username", "name"], ["email", "mail4@example.com"], ["phone", 4], ["created_at", "2016-12-13 20:10:05.995081"], ["updated_at", "2016-12-13 20:10:05.995081"]]
2519
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 10], ["created_at", "2016-12-13 20:10:05.996034"], ["updated_at", "2016-12-13 20:10:05.996034"]]
2520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2521
+  (0.1ms) ROLLBACK
2522
+  (0.1ms) BEGIN
2523
+ -------------------------
2524
+ MakerTest: test_overrides
2525
+ -------------------------
2526
+  (0.3ms) SAVEPOINT active_record_1
2527
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail9@example.com"], ["phone", 9], ["created_at", "2016-12-13 20:10:06.002288"], ["updated_at", "2016-12-13 20:10:06.002288"]]
2528
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 11], ["created_at", "2016-12-13 20:10:06.003315"], ["updated_at", "2016-12-13 20:10:06.003315"]]
2529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2530
+  (0.1ms) SAVEPOINT active_record_1
2531
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail10@example.com"], ["phone", 10], ["created_at", "2016-12-13 20:10:06.005074"], ["updated_at", "2016-12-13 20:10:06.005074"]]
2532
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 12], ["created_at", "2016-12-13 20:10:06.005999"], ["updated_at", "2016-12-13 20:10:06.005999"]]
2533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2534
+  (0.2ms) SAVEPOINT active_record_1
2535
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail11@example.com"], ["phone", 11], ["created_at", "2016-12-13 20:10:06.008955"], ["updated_at", "2016-12-13 20:10:06.008955"]]
2536
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 13], ["created_at", "2016-12-13 20:10:06.009971"], ["updated_at", "2016-12-13 20:10:06.009971"]]
2537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2538
+  (0.1ms) SAVEPOINT active_record_1
2539
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "other"], ["username", "name"], ["email", "mail12@example.com"], ["phone", 12], ["created_at", "2016-12-13 20:10:06.011496"], ["updated_at", "2016-12-13 20:10:06.011496"]]
2540
+ SQL (0.1ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 14], ["created_at", "2016-12-13 20:10:06.012234"], ["updated_at", "2016-12-13 20:10:06.012234"]]
2541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2542
+  (0.1ms) ROLLBACK
2543
+  (0.1ms) BEGIN
2544
+ ----------------------------
2545
+ MakerTest: test_associations
2546
+ ----------------------------
2547
+  (0.1ms) SAVEPOINT active_record_1
2548
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:10:06.014657"], ["updated_at", "2016-12-13 20:10:06.014657"]]
2549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2550
+  (0.1ms) SAVEPOINT active_record_1
2551
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-13 20:10:06.015942"], ["updated_at", "2016-12-13 20:10:06.015942"]]
2552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2553
+  (0.1ms) ROLLBACK
2554
+  (0.1ms) BEGIN
2555
+ -------------------------
2556
+ MakerTest: test_sequences
2557
+ -------------------------
2558
+  (0.1ms) SAVEPOINT active_record_1
2559
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail16@example.com"], ["phone", 16], ["created_at", "2016-12-13 20:10:06.018808"], ["updated_at", "2016-12-13 20:10:06.018808"]]
2560
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 15], ["created_at", "2016-12-13 20:10:06.019653"], ["updated_at", "2016-12-13 20:10:06.019653"]]
2561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2562
+  (0.1ms) SAVEPOINT active_record_1
2563
+ SQL (0.2ms) INSERT INTO "users" ("name", "username", "email", "phone", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "name"], ["username", "name"], ["email", "mail18@example.com"], ["phone", 18], ["created_at", "2016-12-13 20:10:06.021458"], ["updated_at", "2016-12-13 20:10:06.021458"]]
2564
+ SQL (0.2ms) INSERT INTO "posts" ("user_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["user_id", 16], ["created_at", "2016-12-13 20:10:06.022230"], ["updated_at", "2016-12-13 20:10:06.022230"]]
2565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2566
+  (0.1ms) ROLLBACK
2567
+  (0.1ms) BEGIN
2568
+ ---------------------------
2569
+ MakerTest: test_definitions
2570
+ ---------------------------
2571
+  (0.1ms) ROLLBACK
2572
+  (0.1ms) BEGIN
2573
+ -----------------------
2574
+ MakerTest: test_aliases
2575
+ -----------------------
2576
+  (0.1ms) ROLLBACK
2577
+  (0.1ms) BEGIN
2578
+ ---------------------------
2579
+ GeneratorTest: test_install
2580
+ ---------------------------
2581
+  (0.1ms) ROLLBACK
2582
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2583
+  (22.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2584
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2585
+ Migrating to CreateUsers (20140613221835)
2586
+  (0.1ms) BEGIN
2587
+  (2.4ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying, "name" character varying, "email" character varying, "age" integer, "phone" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2588
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140613221835"]]
2589
+  (0.6ms) COMMIT
2590
+ Migrating to CreatePosts (20140615180954)
2591
+  (0.2ms) BEGIN
2592
+  (1.4ms) CREATE TABLE "posts" ("id" serial primary key, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2593
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140615180954"]]
2594
+  (0.3ms) COMMIT
2595
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2596
+  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2597
+ FROM pg_constraint c
2598
+ JOIN pg_class t1 ON c.conrelid = t1.oid
2599
+ JOIN pg_class t2 ON c.confrelid = t2.oid
2600
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2601
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2602
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
2603
+ WHERE c.contype = 'f'
2604
+ AND t1.relname = 'posts'
2605
+ AND t3.nspname = ANY (current_schemas(false))
2606
+ ORDER BY c.conname
2607
+ 
2608
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2609
+ FROM pg_constraint c
2610
+ JOIN pg_class t1 ON c.conrelid = t1.oid
2611
+ JOIN pg_class t2 ON c.confrelid = t2.oid
2612
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2613
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2614
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
2615
+ WHERE c.contype = 'f'
2616
+ AND t1.relname = 'users'
2617
+ AND t3.nspname = ANY (current_schemas(false))
2618
+ ORDER BY c.conname
2619
+