api_user_auth 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,125 +1,1324 @@
1
-  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1
+ Started GET "/" for 127.0.0.1 at 2018-07-03 14:12:21 +0300
2
+ Processing by Rails::WelcomeController#index as HTML
3
+ Rendering /home/alex/.rvm/gems/ruby-2.5.0/gems/railties-5.2.0/lib/rails/templates/rails/welcome/index.html.erb
4
+ Rendered /home/alex/.rvm/gems/ruby-2.5.0/gems/railties-5.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.5ms)
5
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
6
+
7
+
8
+ Started GET "/" for 127.0.0.1 at 2018-07-03 17:28:55 +0300
9
+ Processing by Rails::WelcomeController#index as HTML
10
+ Rendering /home/alex/.rvm/gems/ruby-2.5.0/gems/railties-5.2.0/lib/rails/templates/rails/welcome/index.html.erb
11
+ Rendered /home/alex/.rvm/gems/ruby-2.5.0/gems/railties-5.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
12
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/api/v1/users/me/subscriptions/recent" for 127.0.0.1 at 2018-07-03 17:29:00 +0300
16
+
17
+ ActionController::RoutingError (No route matches [GET] "/api/v1/users/me/subscriptions/recent"):
18
+
19
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
20
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
21
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
22
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
23
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
24
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
25
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
26
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
27
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
28
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
29
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
30
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
31
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
32
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
33
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
34
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
35
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
36
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
37
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
38
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
39
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
40
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
41
+  (0.1ms) SELECT sqlite_version(*)
42
+ ↳ bin/rails:4
43
+  (105.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
44
+ ↳ bin/rails:4
45
+  (64.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
46
+ ↳ bin/rails:4
47
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
48
+ ↳ bin/rails:4
49
+  (0.1ms) begin transaction
50
+ ↳ bin/rails:4
51
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2018-07-03 14:49:47.881238"], ["updated_at", "2018-07-03 14:49:47.881238"]]
52
+ ↳ bin/rails:4
53
+  (49.6ms) commit transaction
54
+ ↳ bin/rails:4
55
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
56
+ ↳ bin/rails:4
57
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
+ ↳ bin/rails:25
59
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
60
+  (0.0ms) begin transaction
61
+ ↳ bin/rails:25
62
+  (0.1ms) SELECT sqlite_version(*)
63
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
64
+  (0.2ms) CREATE TABLE "api_user_auth_auth_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
65
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
66
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20180703111608"]]
67
+ ↳ bin/rails:25
68
+  (45.5ms) commit transaction
69
+ ↳ bin/rails:25
70
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
71
+ ↳ bin/rails:25
72
+  (0.1ms) begin transaction
73
+ ↳ bin/rails:25
74
+  (0.1ms) commit transaction
75
+ ↳ bin/rails:25
76
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
77
+ ↳ bin/rails:25
78
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
79
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
80
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
81
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
82
+  (0.0ms) begin transaction
83
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
84
+  (0.0ms) commit transaction
85
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
86
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
87
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
88
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
89
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
90
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
91
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
92
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
93
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
94
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
95
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
96
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
97
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
98
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
99
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
100
+  (0.1ms) DROP TABLE IF EXISTS "api_user_auth_auth_users"
101
+ ↳ db/schema.rb:15
102
+  (0.0ms) SELECT sqlite_version(*)
103
+ ↳ db/schema.rb:15
104
+  (76.2ms) CREATE TABLE "api_user_auth_auth_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
105
+ ↳ db/schema.rb:15
106
+  (35.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
107
+ ↳ db/schema.rb:13
108
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
109
+ ↳ db/schema.rb:13
110
+  (25.5ms) INSERT INTO "schema_migrations" (version) VALUES (20180703111608)
111
+ ↳ db/schema.rb:13
112
+  (41.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
113
+ ↳ db/schema.rb:13
114
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
115
+ ↳ db/schema.rb:13
116
+  (0.0ms) begin transaction
117
+ ↳ db/schema.rb:13
118
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2018-07-03 15:35:06.840797"], ["updated_at", "2018-07-03 15:35:06.840797"]]
119
+ ↳ db/schema.rb:13
120
+  (102.2ms) commit transaction
121
+ ↳ db/schema.rb:13
122
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
123
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
124
+  (0.1ms) begin transaction
125
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
126
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2018-07-03 15:35:06.949127"], ["key", "environment"]]
127
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
128
+  (47.6ms) commit transaction
129
+ ↳ /home/alex/.rvm/gems/ruby-2.5.0/bin/rake:23
130
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
131
+ ↳ bin/rails:25
132
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
133
+ ↳ bin/rails:25
134
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
135
+ ↳ bin/rails:25
136
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
137
+ ↳ bin/rails:25
138
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
139
+  (0.1ms) begin transaction
140
+ ↳ bin/rails:25
141
+  (0.3ms) DROP TABLE "api_user_auth_auth_users"
142
+ ↳ bin/rails:25
143
+ ActiveRecord::SchemaMigration Destroy (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20180703111608"]]
144
+ ↳ bin/rails:25
145
+  (41.5ms) commit transaction
146
+ ↳ bin/rails:25
147
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
148
+ ↳ bin/rails:25
149
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
150
+ ↳ bin/rails:25
151
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
152
+  (0.0ms) begin transaction
153
+ ↳ bin/rails:25
154
+  (0.0ms) rollback transaction
155
+ ↳ bin/rails:25
156
+  (1058.4ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
157
+ ↳ bin/rails:25
158
+  (600.1ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
159
+ ↳ bin/rails:25
160
+  (69.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
161
+ ↳ bin/rails:25
162
+  (67.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
163
+ ↳ bin/rails:25
164
+  (0.3ms) SELECT pg_try_advisory_lock(7325747718710370390)
165
+ ↳ bin/rails:25
166
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
167
+ ↳ bin/rails:25
168
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
169
+  (0.1ms) BEGIN
170
+ ↳ bin/rails:25
171
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
172
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
173
+  (60.8ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "auth_tokens" uuid[] DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
174
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
175
+  (52.5ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
176
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
177
+ ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
178
+ ↳ bin/rails:25
179
+  (37.1ms) COMMIT
180
+ ↳ bin/rails:25
181
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
182
+ ↳ bin/rails:25
183
+  (0.2ms) BEGIN
184
+ ↳ bin/rails:25
185
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-05 09:51:43.608383"], ["updated_at", "2018-07-05 09:51:43.608383"]]
186
+ ↳ bin/rails:25
187
+  (49.2ms) COMMIT
2
188
  ↳ bin/rails:25
3
-  (1.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
189
+  (0.5ms) SELECT pg_advisory_unlock(7325747718710370390)
4
190
  ↳ bin/rails:25
5
191
   (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6
192
  ↳ bin/rails:25
7
-  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
193
+  (43.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
194
+ ↳ bin/rails:25
195
+  (7.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
196
+ ↳ bin/rails:25
197
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
198
+ ↳ bin/rails:25
199
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
8
200
  ↳ bin/rails:25
9
201
   (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
10
202
  ↳ bin/rails:25
11
203
   (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
12
204
  ↳ bin/rails:25
13
-  (113.8ms) DROP DATABASE IF EXISTS "dummy_dev"
205
+  (317.8ms) DROP DATABASE IF EXISTS "dummy_dev"
14
206
  ↳ bin/rails:25
15
-  (111.4ms) DROP DATABASE IF EXISTS "dummy_test"
207
+  (277.4ms) DROP DATABASE IF EXISTS "dummy_test"
16
208
  ↳ bin/rails:25
17
-  (352.4ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
209
+  (1146.4ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
18
210
  ↳ bin/rails:25
19
-  (352.0ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
211
+  (560.1ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
20
212
  ↳ bin/rails:25
21
-  (13.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
213
+  (98.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
22
214
  ↳ bin/rails:25
23
-  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
215
+  (165.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
24
216
  ↳ bin/rails:25
25
-  (0.7ms) SELECT pg_try_advisory_lock(7325747718710370390)
217
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
26
218
  ↳ bin/rails:25
27
-  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
219
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
28
220
  ↳ bin/rails:25
29
221
  Migrating to CreateApiUserAuthAuthUsers (20180703111608)
30
222
   (0.4ms) BEGIN
31
223
  ↳ bin/rails:25
32
- SQL (12.9ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
33
- ↳ /home/doneit/bit-forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
34
-  (6.3ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
35
- ↳ /home/doneit/bit-forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
36
-  (2.1ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
37
- ↳ /home/doneit/bit-forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
38
- ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
224
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
225
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
226
+  (46.3ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
227
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
228
+  (10.8ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
229
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
230
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
39
231
  ↳ bin/rails:25
40
-  (1.8ms) COMMIT
232
+  (5.5ms) COMMIT
41
233
  ↳ bin/rails:25
42
- Migrating to CreateApiUserAuthProviderTokens (20180726140712)
234
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
235
+ ↳ bin/rails:25
236
+  (0.2ms) BEGIN
237
+ ↳ bin/rails:25
238
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-09 07:14:46.792463"], ["updated_at", "2018-07-09 07:14:46.792463"]]
239
+ ↳ bin/rails:25
240
+  (36.4ms) COMMIT
241
+ ↳ bin/rails:25
242
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
243
+ ↳ bin/rails:25
244
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
245
+ ↳ bin/rails:25
246
+ Started PATCH "/api-user-auth/password" for 127.0.0.1 at 2018-07-09 14:30:31 +0300
247
+
248
+ ActionController::RoutingError (No route matches [PATCH] "/api-user-auth/password"):
249
+
250
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
251
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
252
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
253
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
254
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
255
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
256
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
257
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
258
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
259
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
260
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
261
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
262
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
263
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
264
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
265
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
266
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
267
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
268
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
269
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
270
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
271
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
272
+ Started PATCH "/auth/password" for 127.0.0.1 at 2018-07-09 14:31:05 +0300
273
+
274
+ ActionController::RoutingError (No route matches [PATCH] "/auth/password"):
275
+
276
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
277
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
278
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
279
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
280
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
281
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
282
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
283
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
284
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
285
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
286
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
287
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
288
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
289
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
290
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
291
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
292
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
293
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
294
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
295
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
296
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
297
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
298
+ Started PATCH "/auth/password" for 127.0.0.1 at 2018-07-09 14:31:25 +0300
299
+
300
+ ActionController::RoutingError (No route matches [PATCH] "/auth/password"):
301
+
302
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
303
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
304
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
305
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
306
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
307
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
308
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
309
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
310
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
311
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
312
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
313
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
314
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
315
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
316
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
317
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
318
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
319
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
320
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
321
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
322
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
323
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
324
+ Started PATCH "/auth/password" for 127.0.0.1 at 2018-07-09 14:31:50 +0300
325
+
326
+ ActionController::RoutingError (No route matches [PATCH] "/auth/password"):
327
+
328
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
329
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
330
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
331
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
332
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
333
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
334
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
335
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
336
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
337
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
338
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
339
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
340
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
341
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
342
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
343
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
344
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
345
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
346
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
347
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
348
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
349
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
350
+ Started PATCH "/auth/password" for 127.0.0.1 at 2018-07-09 14:32:36 +0300
351
+
352
+ ActionController::RoutingError (No route matches [PATCH] "/auth/password"):
353
+
354
+ actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
355
+ actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
356
+ railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app'
357
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call'
358
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged'
359
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged'
360
+ activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged'
361
+ railties (5.2.0) lib/rails/rack/logger.rb:26:in `call'
362
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
363
+ actionpack (5.2.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
364
+ actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
365
+ rack (2.0.5) lib/rack/method_override.rb:22:in `call'
366
+ rack (2.0.5) lib/rack/runtime.rb:22:in `call'
367
+ activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
368
+ actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
369
+ actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call'
370
+ rack (2.0.5) lib/rack/sendfile.rb:111:in `call'
371
+ railties (5.2.0) lib/rails/engine.rb:524:in `call'
372
+ rack (2.0.5) lib/rack/handler/webrick.rb:86:in `service'
373
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
374
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
375
+ /usr/share/rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
376
+ Started PATCH "/api_user_auth/auth/password" for 127.0.0.1 at 2018-07-09 14:33:26 +0300
377
+ Processing by ApiUserAuth::AuthController#password as */*
378
+ Parameters: {"email"=>"user@mail.com"}
379
+ Completed 422 Unprocessable Entity in 18ms (Views: 0.1ms | ActiveRecord: 0.0ms)
380
+
381
+
382
+  (0.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
383
+ ↳ bin/rails:25
384
+  (0.2ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
385
+ ↳ bin/rails:25
386
+  (52.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
387
+ ↳ bin/rails:25
388
+  (14.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
389
+ ↳ bin/rails:25
390
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
391
+ ↳ bin/rails:25
392
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
393
+ ↳ bin/rails:25
394
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
395
+ ↳ bin/rails:25
396
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
397
+ ↳ bin/rails:25
398
+  (371.1ms) DROP DATABASE IF EXISTS "dummy_dev"
399
+ ↳ bin/rails:25
400
+  (303.7ms) DROP DATABASE IF EXISTS "dummy_test"
401
+ ↳ bin/rails:25
402
+  (1111.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
403
+ ↳ bin/rails:25
404
+  (576.9ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
405
+ ↳ bin/rails:25
406
+  (855.4ms) DROP DATABASE IF EXISTS "dummy_dev"
407
+ ↳ bin/rails:25
408
+  (155.5ms) DROP DATABASE IF EXISTS "dummy_test"
409
+ ↳ bin/rails:25
410
+  (579.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
411
+ ↳ bin/rails:25
412
+  (812.0ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
413
+ ↳ bin/rails:25
414
+  (42.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
415
+ ↳ bin/rails:25
416
+  (78.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
417
+ ↳ bin/rails:25
418
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
419
+ ↳ bin/rails:25
420
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
421
+ ↳ bin/rails:25
422
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
423
+  (0.3ms) BEGIN
424
+ ↳ bin/rails:25
425
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
426
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
427
+  (39.8ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
428
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
429
+  (30.2ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
430
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
431
+ ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
432
+ ↳ bin/rails:25
433
+  (29.3ms) COMMIT
434
+ ↳ bin/rails:25
435
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
436
+ ↳ bin/rails:25
437
+  (0.3ms) BEGIN
438
+ ↳ bin/rails:25
439
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-19 15:28:11.790946"], ["updated_at", "2018-07-19 15:28:11.790946"]]
440
+ ↳ bin/rails:25
441
+  (56.0ms) COMMIT
442
+ ↳ bin/rails:25
443
+  (0.7ms) SELECT pg_advisory_unlock(7325747718710370390)
444
+ ↳ bin/rails:25
445
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
446
+ ↳ bin/rails:25
447
+  (28.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
448
+ ↳ bin/rails:25
449
+  (1.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
450
+ ↳ bin/rails:25
451
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
452
+ ↳ bin/rails:25
453
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
454
+ ↳ bin/rails:25
455
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
456
+ ↳ bin/rails:25
457
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
458
+ ↳ bin/rails:25
459
+  (244.8ms) DROP DATABASE IF EXISTS "dummy_dev"
460
+ ↳ bin/rails:25
461
+  (262.1ms) DROP DATABASE IF EXISTS "dummy_test"
462
+ ↳ bin/rails:25
463
+  (625.1ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
464
+ ↳ bin/rails:25
465
+  (873.6ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
466
+ ↳ bin/rails:25
467
+  (852.8ms) DROP DATABASE IF EXISTS "dummy_dev"
468
+ ↳ bin/rails:25
469
+  (131.8ms) DROP DATABASE IF EXISTS "dummy_test"
470
+ ↳ bin/rails:25
471
+  (551.2ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
472
+ ↳ bin/rails:25
473
+  (593.7ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
474
+ ↳ bin/rails:25
475
+  (123.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
476
+ ↳ bin/rails:25
477
+  (45.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
478
+ ↳ bin/rails:25
479
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
480
+ ↳ bin/rails:25
481
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
482
+ ↳ bin/rails:25
483
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
43
484
   (0.4ms) BEGIN
44
485
  ↳ bin/rails:25
45
-  (6.0ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
46
- ↳ /home/doneit/bit-forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
47
-  (2.1ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
48
- ↳ /home/doneit/bit-forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
49
- ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
486
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
487
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
488
+  (67.4ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
489
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
490
+  (21.5ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
491
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
492
+ ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
50
493
  ↳ bin/rails:25
51
-  (0.8ms) COMMIT
494
+  (30.2ms) COMMIT
52
495
  ↳ bin/rails:25
53
- ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
496
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
54
497
  ↳ bin/rails:25
55
498
   (0.3ms) BEGIN
56
499
  ↳ bin/rails:25
57
- ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 22:23:24.867638"], ["updated_at", "2018-07-26 22:23:24.867638"]]
500
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-20 12:47:13.995013"], ["updated_at", "2018-07-20 12:47:13.995013"]]
58
501
  ↳ bin/rails:25
59
-  (0.6ms) COMMIT
502
+  (56.1ms) COMMIT
60
503
  ↳ bin/rails:25
61
504
   (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
62
505
  ↳ bin/rails:25
63
-  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
506
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
64
507
  ↳ bin/rails:25
65
-  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
508
+  (23.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
509
  ↳ bin/rails:25
67
-  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
510
+  (1.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
68
511
  ↳ bin/rails:25
69
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
512
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
70
513
  ↳ bin/rails:25
71
-  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
514
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
72
515
  ↳ bin/rails:25
73
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
516
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
74
517
  ↳ bin/rails:25
75
-  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
518
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
76
519
  ↳ bin/rails:25
77
-  (113.0ms) DROP DATABASE IF EXISTS "dummy_test"
520
+  (244.4ms) DROP DATABASE IF EXISTS "dummy_test"
78
521
  ↳ bin/rails:25
79
-  (351.9ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
522
+  (589.9ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
80
523
  ↳ bin/rails:25
81
- SQL (9.7ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
524
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
82
525
  ↳ db/schema.rb:16
83
526
  SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
84
527
  ↳ db/schema.rb:17
85
528
   (0.5ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
86
529
  ↳ db/schema.rb:19
87
-  (10.4ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
530
+  (70.0ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
531
+ ↳ db/schema.rb:19
532
+  (41.0ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
533
+ ↳ db/schema.rb:19
534
+  (74.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
535
+ ↳ db/schema.rb:13
536
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
537
+ ↳ db/schema.rb:13
538
+  (9.1ms) INSERT INTO "schema_migrations" (version) VALUES (20180703111608)
539
+ ↳ db/schema.rb:13
540
+  (395.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
541
+ ↳ db/schema.rb:13
542
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
543
+ ↳ db/schema.rb:13
544
+  (0.4ms) BEGIN
545
+ ↳ db/schema.rb:13
546
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:16:48.679513"], ["updated_at", "2018-07-26 14:16:48.679513"]]
547
+ ↳ db/schema.rb:13
548
+  (212.9ms) COMMIT
549
+ ↳ db/schema.rb:13
550
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
551
+ ↳ bin/rails:25
552
+  (0.3ms) BEGIN
553
+ ↳ bin/rails:25
554
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 14:16:48.902983"], ["key", "environment"]]
555
+ ↳ bin/rails:25
556
+  (7.9ms) COMMIT
557
+ ↳ bin/rails:25
558
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
559
+ ↳ bin/rails:25
560
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
561
+ ↳ bin/rails:25
562
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
563
+ ↳ bin/rails:25
564
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
565
+ ↳ bin/rails:25
566
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
567
+ ↳ bin/rails:25
568
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
569
+ ↳ bin/rails:25
570
+  (882.4ms) DROP DATABASE IF EXISTS "dummy_dev"
571
+ ↳ bin/rails:25
572
+  (144.4ms) DROP DATABASE IF EXISTS "dummy_test"
573
+ ↳ bin/rails:25
574
+  (871.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
575
+ ↳ bin/rails:25
576
+  (513.4ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
577
+ ↳ bin/rails:25
578
+  (80.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
579
+ ↳ bin/rails:25
580
+  (66.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
581
+ ↳ bin/rails:25
582
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
583
+ ↳ bin/rails:25
584
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
585
+ ↳ bin/rails:25
586
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
587
+  (0.4ms) BEGIN
588
+ ↳ bin/rails:25
589
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
590
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
591
+  (51.2ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
592
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
593
+  (34.0ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
594
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
595
+ ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
596
+ ↳ bin/rails:25
597
+  (47.1ms) COMMIT
598
+ ↳ bin/rails:25
599
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
600
+  (0.4ms) BEGIN
601
+ ↳ bin/rails:25
602
+  (26.2ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider_id" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
603
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
604
+  (1.3ms) ROLLBACK
605
+ ↳ bin/rails:25
606
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
607
+ ↳ bin/rails:25
608
+  (0.2ms) SELECT pg_try_advisory_lock(7325747718710370390)
609
+ ↳ bin/rails:25
610
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
611
+ ↳ bin/rails:25
612
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
613
+  (0.1ms) BEGIN
614
+ ↳ bin/rails:25
615
+  (30.7ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider_id" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
616
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
617
+  (1.1ms) ROLLBACK
618
+ ↳ bin/rails:25
619
+  (0.4ms) SELECT pg_advisory_unlock(7325747718710370390)
620
+ ↳ bin/rails:25
621
+  (0.2ms) SELECT pg_try_advisory_lock(7325747718710370390)
622
+ ↳ bin/rails:25
623
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
624
+ ↳ bin/rails:25
625
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
626
+  (0.1ms) BEGIN
627
+ ↳ bin/rails:25
628
+  (60.0ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider_id" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
629
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
630
+  (50.0ms) CREATE INDEX "my_supplier_index" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
631
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
632
+ ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
633
+ ↳ bin/rails:25
634
+  (50.0ms) COMMIT
635
+ ↳ bin/rails:25
636
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
637
+ ↳ bin/rails:25
638
+  (0.4ms) BEGIN
639
+ ↳ bin/rails:25
640
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:22:39.524329"], ["updated_at", "2018-07-26 14:22:39.524329"]]
641
+ ↳ bin/rails:25
642
+  (34.7ms) COMMIT
643
+ ↳ bin/rails:25
644
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
645
+ ↳ bin/rails:25
646
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
647
+ ↳ bin/rails:25
648
+  (0.2ms) SELECT pg_try_advisory_lock(7325747718710370390)
649
+ ↳ bin/rails:25
650
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
651
+ ↳ bin/rails:25
652
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
653
+ ↳ bin/rails:25
654
+  (0.1ms) BEGIN
655
+ ↳ bin/rails:25
656
+  (0.1ms) COMMIT
657
+ ↳ bin/rails:25
658
+  (0.2ms) SELECT pg_advisory_unlock(7325747718710370390)
659
+ ↳ bin/rails:25
660
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
661
+ ↳ bin/rails:25
662
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
663
+ ↳ bin/rails:25
664
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
665
+ ↳ bin/rails:25
666
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
667
+ ↳ bin/rails:25
668
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
669
+ ↳ bin/rails:25
670
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
671
+ ↳ bin/rails:25
672
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
673
+ ↳ bin/rails:25
674
+  (254.1ms) DROP DATABASE IF EXISTS "dummy_dev"
675
+ ↳ bin/rails:25
676
+  (135.1ms) DROP DATABASE IF EXISTS "dummy_test"
677
+ ↳ bin/rails:25
678
+  (629.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
679
+ ↳ bin/rails:25
680
+  (670.8ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
681
+ ↳ bin/rails:25
682
+  (72.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
683
+ ↳ bin/rails:25
684
+  (69.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
685
+ ↳ bin/rails:25
686
+  (0.6ms) SELECT pg_try_advisory_lock(7325747718710370390)
687
+ ↳ bin/rails:25
688
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
689
+ ↳ bin/rails:25
690
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
691
+  (0.3ms) BEGIN
692
+ ↳ bin/rails:25
693
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
694
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
695
+  (95.4ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
696
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
697
+  (52.3ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
698
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
699
+ ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
700
+ ↳ bin/rails:25
701
+  (48.5ms) COMMIT
702
+ ↳ bin/rails:25
703
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
704
+  (0.4ms) BEGIN
705
+ ↳ bin/rails:25
706
+  (62.0ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider_id" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
707
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
708
+  (30.7ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
709
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
710
+ ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
711
+ ↳ bin/rails:25
712
+  (16.3ms) COMMIT
713
+ ↳ bin/rails:25
714
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
715
+ ↳ bin/rails:25
716
+  (0.4ms) BEGIN
717
+ ↳ bin/rails:25
718
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:23:23.319242"], ["updated_at", "2018-07-26 14:23:23.319242"]]
719
+ ↳ bin/rails:25
720
+  (52.0ms) COMMIT
721
+ ↳ bin/rails:25
722
+  (0.7ms) SELECT pg_advisory_unlock(7325747718710370390)
723
+ ↳ bin/rails:25
724
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
725
+ ↳ bin/rails:25
726
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
727
+ ↳ bin/rails:25
728
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
729
+ ↳ bin/rails:25
730
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
731
+ ↳ bin/rails:25
732
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
733
+ ↳ bin/rails:25
734
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
735
+ ↳ bin/rails:25
736
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
737
+ ↳ bin/rails:25
738
+  (234.2ms) DROP DATABASE IF EXISTS "dummy_test"
739
+ ↳ bin/rails:25
740
+  (615.9ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
741
+ ↳ bin/rails:25
742
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
743
+ ↳ db/schema.rb:16
744
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
745
+ ↳ db/schema.rb:17
746
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
747
+ ↳ db/schema.rb:19
748
+  (33.8ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
88
749
  ↳ db/schema.rb:19
89
-  (2.8ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
750
+  (29.2ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
90
751
  ↳ db/schema.rb:19
91
-  (0.4ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
752
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
92
753
  ↳ db/schema.rb:31
93
-  (6.5ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
754
+  (77.9ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider_id" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
94
755
  ↳ db/schema.rb:31
95
-  (2.5ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
756
+  (44.8ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
96
757
  ↳ db/schema.rb:31
97
-  (5.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
758
+  (78.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
98
759
  ↳ db/schema.rb:13
99
-  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
760
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
100
761
  ↳ db/schema.rb:13
101
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
762
+  (32.6ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
102
763
  ↳ db/schema.rb:13
103
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES
764
+  (9.0ms) INSERT INTO "schema_migrations" (version) VALUES
104
765
  (20180703111608);
105
766
 
106
767
  
107
768
  ↳ db/schema.rb:13
108
-  (5.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
769
+  (73.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
109
770
  ↳ db/schema.rb:13
110
- ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
771
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
111
772
  ↳ db/schema.rb:13
112
-  (0.3ms) BEGIN
773
+  (0.1ms) BEGIN
113
774
  ↳ db/schema.rb:13
114
- ActiveRecord::InternalMetadata Create (1.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 22:23:36.579323"], ["updated_at", "2018-07-26 22:23:36.579323"]]
775
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:24:15.060827"], ["updated_at", "2018-07-26 14:24:15.060827"]]
115
776
  ↳ db/schema.rb:13
116
-  (0.8ms) COMMIT
777
+  (32.3ms) COMMIT
117
778
  ↳ db/schema.rb:13
118
- ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
779
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
780
+ ↳ bin/rails:25
781
+  (0.2ms) BEGIN
782
+ ↳ bin/rails:25
783
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 14:24:15.097524"], ["key", "environment"]]
784
+ ↳ bin/rails:25
785
+  (31.4ms) COMMIT
786
+ ↳ bin/rails:25
787
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
788
+ ↳ bin/rails:25
789
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
790
+ ↳ bin/rails:25
791
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
792
+ ↳ bin/rails:25
793
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
794
+ ↳ bin/rails:25
795
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
796
+ ↳ bin/rails:25
797
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
798
+ ↳ bin/rails:25
799
+  (147.1ms) DROP DATABASE IF EXISTS "dummy_dev"
800
+ ↳ bin/rails:25
801
+  (262.1ms) DROP DATABASE IF EXISTS "dummy_test"
802
+ ↳ bin/rails:25
803
+  (629.1ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
804
+ ↳ bin/rails:25
805
+  (599.1ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
806
+ ↳ bin/rails:25
807
+  (39.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
808
+ ↳ bin/rails:25
809
+  (86.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
810
+ ↳ bin/rails:25
811
+  (0.2ms) SELECT pg_try_advisory_lock(7325747718710370390)
812
+ ↳ bin/rails:25
813
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
814
+ ↳ bin/rails:25
815
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
816
+  (0.1ms) BEGIN
817
+ ↳ bin/rails:25
818
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
819
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
820
+  (49.5ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
821
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
822
+  (41.0ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
823
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
824
+ ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
825
+ ↳ bin/rails:25
826
+  (57.4ms) COMMIT
827
+ ↳ bin/rails:25
828
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
829
+  (0.4ms) BEGIN
830
+ ↳ bin/rails:25
831
+  (88.3ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
832
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
833
+  (38.8ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
834
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
835
+ ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
836
+ ↳ bin/rails:25
837
+  (18.8ms) COMMIT
838
+ ↳ bin/rails:25
839
+ ActiveRecord::InternalMetadata Load (1.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
840
+ ↳ bin/rails:25
841
+  (0.3ms) BEGIN
842
+ ↳ bin/rails:25
843
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:50:12.496796"], ["updated_at", "2018-07-26 14:50:12.496796"]]
844
+ ↳ bin/rails:25
845
+  (40.8ms) COMMIT
846
+ ↳ bin/rails:25
847
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
848
+ ↳ bin/rails:25
849
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
850
+ ↳ bin/rails:25
851
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
852
+ ↳ bin/rails:25
853
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
854
+ ↳ bin/rails:25
855
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
856
+ ↳ bin/rails:25
857
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
858
+ ↳ bin/rails:25
859
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
860
+ ↳ bin/rails:25
861
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
862
+ ↳ bin/rails:25
863
+  (918.1ms) DROP DATABASE IF EXISTS "dummy_test"
864
+ ↳ bin/rails:25
865
+  (500.0ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
866
+ ↳ bin/rails:25
867
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
868
+ ↳ db/schema.rb:16
869
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
870
+ ↳ db/schema.rb:17
871
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
872
+ ↳ db/schema.rb:19
873
+  (74.3ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
874
+ ↳ db/schema.rb:19
875
+  (27.6ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
876
+ ↳ db/schema.rb:19
877
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
878
+ ↳ db/schema.rb:31
879
+  (67.2ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
880
+ ↳ db/schema.rb:31
881
+  (35.8ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
882
+ ↳ db/schema.rb:31
883
+  (70.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
884
+ ↳ db/schema.rb:13
885
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
886
+ ↳ db/schema.rb:13
887
+  (8.8ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
888
+ ↳ db/schema.rb:13
889
+  (9.5ms) INSERT INTO "schema_migrations" (version) VALUES
890
+ (20180703111608);
891
+
892
+ 
893
+ ↳ db/schema.rb:13
894
+  (87.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
895
+ ↳ db/schema.rb:13
896
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
897
+ ↳ db/schema.rb:13
898
+  (0.1ms) BEGIN
899
+ ↳ db/schema.rb:13
900
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 14:50:23.804958"], ["updated_at", "2018-07-26 14:50:23.804958"]]
901
+ ↳ db/schema.rb:13
902
+  (34.1ms) COMMIT
903
+ ↳ db/schema.rb:13
904
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
905
+ ↳ bin/rails:25
906
+  (0.3ms) BEGIN
907
+ ↳ bin/rails:25
908
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 14:50:23.845530"], ["key", "environment"]]
909
+ ↳ bin/rails:25
910
+  (33.1ms) COMMIT
911
+ ↳ bin/rails:25
912
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
913
+ ↳ bin/rails:25
914
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
915
+ ↳ bin/rails:25
916
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
917
+ ↳ bin/rails:25
918
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
919
+ ↳ bin/rails:25
920
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
921
+ ↳ bin/rails:25
922
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
923
+ ↳ bin/rails:25
924
+  (248.9ms) DROP DATABASE IF EXISTS "dummy_dev"
925
+ ↳ bin/rails:25
926
+  (148.5ms) DROP DATABASE IF EXISTS "dummy_test"
927
+ ↳ bin/rails:25
928
+  (0.2ms) DROP DATABASE IF EXISTS "dummy_test"
929
+ ↳ bin/rails:25
930
+  (628.5ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
931
+ ↳ bin/rails:25
932
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
933
+ ↳ db/schema.rb:16
934
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
935
+ ↳ db/schema.rb:17
936
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
937
+ ↳ db/schema.rb:19
938
+  (37.4ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
939
+ ↳ db/schema.rb:19
940
+  (66.2ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
941
+ ↳ db/schema.rb:19
942
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
943
+ ↳ db/schema.rb:31
944
+  (55.5ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
945
+ ↳ db/schema.rb:31
946
+  (209.4ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
947
+ ↳ db/schema.rb:31
948
+  (45.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
949
+ ↳ db/schema.rb:13
950
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
951
+ ↳ db/schema.rb:13
952
+  (41.5ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
953
+ ↳ db/schema.rb:13
954
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES
955
+ (20180703111608);
956
+
957
+ 
958
+ ↳ db/schema.rb:13
959
+  (57.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
960
+ ↳ db/schema.rb:13
961
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
962
+ ↳ db/schema.rb:13
963
+  (0.2ms) BEGIN
964
+ ↳ db/schema.rb:13
965
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:19:02.423981"], ["updated_at", "2018-07-26 15:19:02.423981"]]
966
+ ↳ db/schema.rb:13
967
+  (42.0ms) COMMIT
968
+ ↳ db/schema.rb:13
969
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
970
+ ↳ bin/rails:25
971
+  (0.1ms) BEGIN
972
+ ↳ bin/rails:25
973
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 15:19:02.469306"], ["key", "environment"]]
974
+ ↳ bin/rails:25
975
+  (5.2ms) COMMIT
976
+ ↳ bin/rails:25
977
+  (0.1ms) DROP DATABASE IF EXISTS "dummy_dev"
978
+ ↳ bin/rails:25
979
+  (252.6ms) DROP DATABASE IF EXISTS "dummy_test"
980
+ ↳ bin/rails:25
981
+  (657.3ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
982
+ ↳ bin/rails:25
983
+  (589.4ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
984
+ ↳ bin/rails:25
985
+  (244.6ms) DROP DATABASE IF EXISTS "dummy_test"
986
+ ↳ bin/rails:25
987
+  (561.0ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
988
+ ↳ bin/rails:25
989
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
990
+ ↳ db/schema.rb:16
991
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
992
+ ↳ db/schema.rb:17
993
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
994
+ ↳ db/schema.rb:19
995
+  (54.3ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
996
+ ↳ db/schema.rb:19
997
+  (30.5ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
998
+ ↳ db/schema.rb:19
999
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
1000
+ ↳ db/schema.rb:31
1001
+  (88.7ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1002
+ ↳ db/schema.rb:31
1003
+  (61.5ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
1004
+ ↳ db/schema.rb:31
1005
+  (72.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1006
+ ↳ db/schema.rb:13
1007
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1008
+ ↳ db/schema.rb:13
1009
+  (41.6ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
1010
+ ↳ db/schema.rb:13
1011
+  (33.8ms) INSERT INTO "schema_migrations" (version) VALUES
1012
+ (20180703111608);
1013
+
1014
+ 
1015
+ ↳ db/schema.rb:13
1016
+  (37.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1017
+ ↳ db/schema.rb:13
1018
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1019
+ ↳ db/schema.rb:13
1020
+  (0.4ms) BEGIN
1021
+ ↳ db/schema.rb:13
1022
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:21:49.315746"], ["updated_at", "2018-07-26 15:21:49.315746"]]
1023
+ ↳ db/schema.rb:13
1024
+  (53.8ms) COMMIT
1025
+ ↳ db/schema.rb:13
1026
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1027
+ ↳ bin/rails:25
1028
+  (0.3ms) BEGIN
1029
+ ↳ bin/rails:25
1030
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 15:21:49.380182"], ["key", "environment"]]
1031
+ ↳ bin/rails:25
1032
+  (14.2ms) COMMIT
1033
+ ↳ bin/rails:25
1034
+  (433.8ms) DROP DATABASE IF EXISTS "dummy_test"
1035
+ ↳ bin/rails:25
1036
+  (622.8ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1037
+ ↳ bin/rails:25
1038
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
1039
+ ↳ db/schema.rb:16
1040
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1041
+ ↳ db/schema.rb:17
1042
+  (0.2ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
1043
+ ↳ db/schema.rb:19
1044
+  (67.5ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1045
+ ↳ db/schema.rb:19
1046
+  (38.9ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
1047
+ ↳ db/schema.rb:19
1048
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
1049
+ ↳ db/schema.rb:31
1050
+  (64.3ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "api_user_auth_auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1051
+ ↳ db/schema.rb:31
1052
+  (61.0ms) CREATE INDEX "provider_auth_user_id" ON "api_user_auth_provider_tokens" ("api_user_auth_auth_user_id")
1053
+ ↳ db/schema.rb:31
1054
+  (97.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1055
+ ↳ db/schema.rb:13
1056
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1057
+ ↳ db/schema.rb:13
1058
+  (42.8ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
1059
+ ↳ db/schema.rb:13
1060
+  (9.0ms) INSERT INTO "schema_migrations" (version) VALUES
1061
+ (20180703111608);
1062
+
1063
+ 
1064
+ ↳ db/schema.rb:13
1065
+  (73.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1066
+ ↳ db/schema.rb:13
1067
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1068
+ ↳ db/schema.rb:13
1069
+  (0.3ms) BEGIN
1070
+ ↳ db/schema.rb:13
1071
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:23:45.255648"], ["updated_at", "2018-07-26 15:23:45.255648"]]
1072
+ ↳ db/schema.rb:13
1073
+  (57.7ms) COMMIT
1074
+ ↳ db/schema.rb:13
1075
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1076
+ ↳ bin/rails:25
1077
+  (0.3ms) BEGIN
1078
+ ↳ bin/rails:25
1079
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 15:23:45.323600"], ["key", "environment"]]
1080
+ ↳ bin/rails:25
1081
+  (13.8ms) COMMIT
1082
+ ↳ bin/rails:25
1083
+  (923.0ms) DROP DATABASE IF EXISTS "dummy_dev"
1084
+ ↳ bin/rails:25
1085
+  (245.5ms) DROP DATABASE IF EXISTS "dummy_test"
1086
+ ↳ bin/rails:25
1087
+  (531.9ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
1088
+ ↳ bin/rails:25
1089
+  (600.4ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1090
+ ↳ bin/rails:25
1091
+  (111.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1092
+ ↳ bin/rails:25
1093
+  (92.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1094
+ ↳ bin/rails:25
1095
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
1096
+ ↳ bin/rails:25
1097
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1098
+ ↳ bin/rails:25
1099
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
1100
+  (0.3ms) BEGIN
1101
+ ↳ bin/rails:25
1102
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
1103
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
1104
+  (66.2ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1105
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
1106
+  (42.2ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
1107
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
1108
+ ActiveRecord::SchemaMigration Create (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
1109
+ ↳ bin/rails:25
1110
+  (42.6ms) COMMIT
1111
+ ↳ bin/rails:25
1112
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
1113
+  (0.4ms) BEGIN
1114
+ ↳ bin/rails:25
1115
+  (60.4ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1116
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
1117
+  (54.3ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
1118
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
1119
+ ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
1120
+ ↳ bin/rails:25
1121
+  (14.7ms) COMMIT
1122
+ ↳ bin/rails:25
1123
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1124
+ ↳ bin/rails:25
1125
+  (0.4ms) BEGIN
1126
+ ↳ bin/rails:25
1127
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:24:00.631422"], ["updated_at", "2018-07-26 15:24:00.631422"]]
1128
+ ↳ bin/rails:25
1129
+  (50.8ms) COMMIT
1130
+ ↳ bin/rails:25
1131
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
1132
+ ↳ bin/rails:25
1133
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1134
+ ↳ bin/rails:25
1135
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1136
+ ↳ bin/rails:25
1137
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1138
+ ↳ bin/rails:25
1139
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1140
+ ↳ bin/rails:25
1141
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1142
+ ↳ bin/rails:25
1143
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1144
+ ↳ bin/rails:25
1145
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1146
+ ↳ bin/rails:25
1147
+  (1031.7ms) DROP DATABASE IF EXISTS "dummy_test"
1148
+ ↳ bin/rails:25
1149
+  (631.1ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1150
+ ↳ bin/rails:25
1151
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
1152
+ ↳ db/schema.rb:16
1153
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1154
+ ↳ db/schema.rb:17
1155
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
1156
+ ↳ db/schema.rb:19
1157
+  (62.6ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1158
+ ↳ db/schema.rb:19
1159
+  (30.3ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
1160
+ ↳ db/schema.rb:19
1161
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
1162
+ ↳ db/schema.rb:31
1163
+  (100.1ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer DEFAULT 0, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1164
+ ↳ db/schema.rb:31
1165
+  (55.6ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
1166
+ ↳ db/schema.rb:31
1167
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1168
+ ↳ db/schema.rb:13
1169
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1170
+ ↳ db/schema.rb:13
1171
+  (43.8ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
1172
+ ↳ db/schema.rb:13
1173
+  (4.8ms) INSERT INTO "schema_migrations" (version) VALUES
1174
+ (20180703111608);
1175
+
1176
+ 
1177
+ ↳ db/schema.rb:13
1178
+  (103.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1179
+ ↳ db/schema.rb:13
1180
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1181
+ ↳ db/schema.rb:13
1182
+  (0.1ms) BEGIN
1183
+ ↳ db/schema.rb:13
1184
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:24:07.537012"], ["updated_at", "2018-07-26 15:24:07.537012"]]
1185
+ ↳ db/schema.rb:13
1186
+  (27.5ms) COMMIT
1187
+ ↳ db/schema.rb:13
1188
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1189
+ ↳ bin/rails:25
1190
+  (0.3ms) BEGIN
1191
+ ↳ bin/rails:25
1192
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 15:24:07.572738"], ["key", "environment"]]
1193
+ ↳ bin/rails:25
1194
+  (67.7ms) COMMIT
1195
+ ↳ bin/rails:25
1196
+  (0.3ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
1197
+ ↳ bin/rails:25
1198
+  (0.2ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1199
+ ↳ bin/rails:25
1200
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1201
+ ↳ bin/rails:25
1202
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1203
+ ↳ bin/rails:25
1204
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1205
+ ↳ bin/rails:25
1206
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1207
+ ↳ bin/rails:25
1208
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1209
+ ↳ bin/rails:25
1210
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1211
+ ↳ bin/rails:25
1212
+  (844.8ms) DROP DATABASE IF EXISTS "dummy_dev"
1213
+ ↳ bin/rails:25
1214
+  (149.2ms) DROP DATABASE IF EXISTS "dummy_test"
1215
+ ↳ bin/rails:25
1216
+  (642.6ms) CREATE DATABASE "dummy_dev" ENCODING = 'utf8'
1217
+ ↳ bin/rails:25
1218
+  (590.5ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1219
+ ↳ bin/rails:25
1220
+  (65.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1221
+ ↳ bin/rails:25
1222
+  (62.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1223
+ ↳ bin/rails:25
1224
+  (0.5ms) SELECT pg_try_advisory_lock(7325747718710370390)
1225
+ ↳ bin/rails:25
1226
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1227
+ ↳ bin/rails:25
1228
+ Migrating to CreateApiUserAuthAuthUsers (20180703111608)
1229
+  (0.1ms) BEGIN
1230
+ ↳ bin/rails:25
1231
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
1232
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:3
1233
+  (72.0ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1234
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
1235
+  (34.1ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
1236
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180703111608_create_api_user_auth_auth_users.rb:5
1237
+ ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180703111608"]]
1238
+ ↳ bin/rails:25
1239
+  (54.4ms) COMMIT
1240
+ ↳ bin/rails:25
1241
+ Migrating to CreateApiUserAuthProviderTokens (20180726140712)
1242
+  (0.4ms) BEGIN
1243
+ ↳ bin/rails:25
1244
+  (54.3ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1245
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
1246
+  (36.0ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
1247
+ ↳ /home/alex/bit_forge/api_user_auth/db/migrate/20180726140712_create_api_user_auth_provider_tokens.rb:3
1248
+ ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20180726140712"]]
1249
+ ↳ bin/rails:25
1250
+  (6.4ms) COMMIT
1251
+ ↳ bin/rails:25
1252
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1253
+ ↳ bin/rails:25
1254
+  (0.9ms) BEGIN
1255
+ ↳ bin/rails:25
1256
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:25:21.454345"], ["updated_at", "2018-07-26 15:25:21.454345"]]
1257
+ ↳ bin/rails:25
1258
+  (39.4ms) COMMIT
1259
+ ↳ bin/rails:25
1260
+  (0.6ms) SELECT pg_advisory_unlock(7325747718710370390)
1261
+ ↳ bin/rails:25
1262
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1263
+ ↳ bin/rails:25
1264
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1265
+ ↳ bin/rails:25
1266
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1267
+ ↳ bin/rails:25
1268
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1269
+ ↳ bin/rails:25
1270
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1271
+ ↳ bin/rails:25
1272
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1273
+ ↳ bin/rails:25
1274
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
1275
+ ↳ bin/rails:25
1276
+  (821.5ms) DROP DATABASE IF EXISTS "dummy_test"
1277
+ ↳ bin/rails:25
1278
+  (743.2ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
1279
+ ↳ bin/rails:25
1280
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto"
1281
+ ↳ db/schema.rb:16
1282
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1283
+ ↳ db/schema.rb:17
1284
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_auth_users" CASCADE
1285
+ ↳ db/schema.rb:19
1286
+  (89.0ms) CREATE TABLE "api_user_auth_auth_users" ("id" bigserial primary key, "email" character varying NOT NULL, "encrypted_password" character varying NOT NULL, "code" character varying DEFAULT '', "auth_tokens" uuid[] DEFAULT '{}', "user_provider_data" jsonb DEFAULT '{}', "provider" character varying DEFAULT 'email', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1287
+ ↳ db/schema.rb:19
1288
+  (39.9ms) CREATE UNIQUE INDEX "index_api_user_auth_auth_users_on_email" ON "api_user_auth_auth_users" ("email")
1289
+ ↳ db/schema.rb:19
1290
+  (0.5ms) DROP TABLE IF EXISTS "api_user_auth_provider_tokens" CASCADE
1291
+ ↳ db/schema.rb:31
1292
+  (90.9ms) CREATE TABLE "api_user_auth_provider_tokens" ("id" bigserial primary key, "auth_user_id" bigint, "provider" integer, "user_id" character varying NOT NULL, "user_data" jsonb DEFAULT '{}', "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1293
+ ↳ db/schema.rb:31
1294
+  (57.0ms) CREATE INDEX "index_api_user_auth_provider_tokens_on_auth_user_id" ON "api_user_auth_provider_tokens" ("auth_user_id")
1295
+ ↳ db/schema.rb:31
1296
+  (76.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1297
+ ↳ db/schema.rb:13
1298
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1299
+ ↳ db/schema.rb:13
1300
+  (9.0ms) INSERT INTO "schema_migrations" (version) VALUES (20180726140712)
1301
+ ↳ db/schema.rb:13
1302
+  (8.9ms) INSERT INTO "schema_migrations" (version) VALUES
1303
+ (20180703111608);
1304
+
1305
+ 
1306
+ ↳ db/schema.rb:13
1307
+  (75.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1308
+ ↳ db/schema.rb:13
1309
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1310
+ ↳ db/schema.rb:13
1311
+  (0.1ms) BEGIN
1312
+ ↳ db/schema.rb:13
1313
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-07-26 15:25:28.731259"], ["updated_at", "2018-07-26 15:25:28.731259"]]
1314
+ ↳ db/schema.rb:13
1315
+  (31.9ms) COMMIT
1316
+ ↳ db/schema.rb:13
1317
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
119
1318
  ↳ bin/rails:25
120
1319
   (0.3ms) BEGIN
121
1320
  ↳ bin/rails:25
122
- ActiveRecord::InternalMetadata Update (0.9ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 22:23:36.588151"], ["key", "environment"]]
1321
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-07-26 15:25:28.771255"], ["key", "environment"]]
123
1322
  ↳ bin/rails:25
124
-  (0.6ms) COMMIT
1323
+  (62.3ms) COMMIT
125
1324
  ↳ bin/rails:25