hey_doctor 1.1.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a102f67991958c684b623cef9a2ac28002eeb70e0381fb5fef8e84fed207403
4
- data.tar.gz: 223c6fb603fad3cdf77c3df0eb6de6a3d4d4e7c6ba998a4ed051a94e92cc6c08
3
+ metadata.gz: 46261fddaead676b10046df7df18cf3c938cae24f67411209fb1debbed8e8611
4
+ data.tar.gz: 216362f7032c66486f18efa4f2350266dc1be76a08fef0b261a314865cc86d29
5
5
  SHA512:
6
- metadata.gz: 2801c7138b18fd7d33ced080d377e0f48569841add438d89a4e09a978deba18a20bc26ff91ab233dc9275b5ba0b7516e1e605228682f059e85cfe6b6db0ed364
7
- data.tar.gz: 5f05346c87ed3b7adb26ead700438d07c5337a77ba605d6c1e033a3f8085fec75213e351b857a03f38f9b86511d1c482fef903527f94d0ad1cb53955b65d6a92
6
+ metadata.gz: c35f243450764f91e090c4f64cbb3b7dff1da470dfe91be910da7b1d15726ef562779583f3a6e4180774d3b589cfe75411f2f9f14c6d9229f099311212a41b7b
7
+ data.tar.gz: 6fde171c56494f5aebd86c864ae690beba04e6d740a881d468db061aab5ee406890aa9e234c18b6c07583ce6f81334a230b8ba7d269048bd9c519ccfcf6f6c0c
data/README.md CHANGED
@@ -37,7 +37,9 @@ After installing this gem it will mount a endpoint in `/_ah/health`, this will b
37
37
  Redis.current ||= Redis.new(url: ENV['REDIS_URL'])
38
38
  ```
39
39
 
40
- * Add a env var `RAILS_PORT` with the current application port.
40
+ It is very important to use the env `REDIS_URL`, because it will be used to check whether or not to render the redis response.
41
+
42
+ * Add a env var `RAILS_PORT` with the current application port, it will also work with the env `PORT` for backward compatibility with GAE applications.
41
43
 
42
44
  * Add this line to your application's Gemfile:
43
45
 
@@ -57,7 +59,7 @@ bundle install
57
59
  # config.ru
58
60
 
59
61
  # bunch of requires here
60
- require "hey_doctor"
62
+ require 'hey_doctor'
61
63
 
62
64
  map '/_ah/health' do
63
65
  run HeyDoctor::Rack::HealthCheck.new
@@ -95,11 +97,22 @@ Minimum coverage is set to 95%.
95
97
  Change the tag in `lib/hey_doctor/version.rb` each release using [SEMVER](https://semver.org/lang/pt-BR/).
96
98
 
97
99
  ```bash
100
+ # After merging the PR checkout to master branch and update it.
101
+ git checkout master
102
+ git pull
103
+
104
+ # build gem in pkg/hey_doctor-TAG.gem (Also changes Gemfile.lock)
98
105
  bundle exec rake build
99
- # build gem in pkg/hey_doctor-TAG.gem
106
+
107
+ # Add the changed files
108
+ git add Gemfile.lock lib/hey_doctor/version.rb
109
+ git commit -m "v0.0.0"
110
+
111
+ # Create a new git tag
112
+ git tag -a v0.0.0 -m "Description here."
100
113
 
101
114
  bundle exec rake release
102
- # Ask for rubygems credentials and makes the release
115
+ # Ask for rubygems credentials and makes the release, push the commit and the tag
103
116
  ```
104
117
  ## Contributing
105
118
 
@@ -1,21 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- if Rails.version.to_f > 5.0
4
- require 'rails/commands/server/server_command'
5
- else
6
- require 'rails/commands/server'
7
- end
8
-
9
3
  class HeyDoctor::CheckApplicationHealthService
10
4
  class << self
11
5
  SUCCESS = {
12
- message: 'Application is running',
13
- success: true
6
+ success: true,
7
+ message: 'Application is running'
14
8
  }.freeze
15
9
 
16
10
  ERROR = {
17
- message: 'Application down, call the firefighters',
18
- success: false
11
+ success: false,
12
+ message: 'Application down, call the firefighters'
19
13
  }.freeze
20
14
 
21
15
  def call
@@ -33,7 +27,9 @@ class HeyDoctor::CheckApplicationHealthService
33
27
  end
34
28
 
35
29
  def app_http_code
36
- Net::HTTP.start('localhost', ENV['RAILS_PORT']) do |http|
30
+ port = ENV['RAILS_PORT'] || ENV['PORT']
31
+
32
+ Net::HTTP.start('localhost', port) do |http|
37
33
  http.head('/_ah/app_health')
38
34
  end.code
39
35
  end
@@ -3,18 +3,18 @@
3
3
  class HeyDoctor::CheckDatabaseHealthService
4
4
  class << self
5
5
  SUCCESS = {
6
- message: 'Database is connected',
7
- success: true
6
+ success: true,
7
+ message: 'Database is connected'
8
8
  }.freeze
9
9
 
10
10
  MIGRATION_PENDING = {
11
- message: 'Pending migrations detected',
12
- success: true
11
+ success: true,
12
+ message: 'Pending migrations detected'
13
13
  }.freeze
14
14
 
15
15
  ERROR = {
16
- message: 'Error connecting to database',
17
- success: false
16
+ success: false,
17
+ message: 'Error connecting to database'
18
18
  }.freeze
19
19
 
20
20
  def call
@@ -3,13 +3,13 @@
3
3
  class HeyDoctor::CheckRedisHealthService
4
4
  class << self
5
5
  SUCCESS = {
6
- message: 'Redis is connected',
7
- success: true
6
+ success: true,
7
+ message: 'Redis is connected'
8
8
  }.freeze
9
9
 
10
10
  ERROR = {
11
- message: 'Error connecting to redis',
12
- success: false
11
+ success: false,
12
+ message: 'Error connecting to redis'
13
13
  }.freeze
14
14
 
15
15
  def call
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ class HeyDoctor::CheckSidekiqHealthService
4
+ class << self
5
+ SUCCESS = {
6
+ success: true,
7
+ message: 'Sidekiq is connected'
8
+ }.freeze
9
+
10
+ ERROR = {
11
+ success: false,
12
+ message: 'Error connecting to sidekiq'
13
+ }.freeze
14
+
15
+ NO_EXECUTOR = {
16
+ success: false,
17
+ message: 'None sidekiq host was found, add it to the ENV SIDEKIQ_HOSTS' \
18
+ ' listing your machine(s) ip or dns using ; for each host'
19
+ }.freeze
20
+
21
+ def call
22
+ return NO_EXECUTOR if hosts.blank?
23
+
24
+ hosts.map { |host| response(host).merge({ host: host }) }
25
+ end
26
+
27
+ private
28
+
29
+ def hosts
30
+ @hosts ||= ENV['SIDEKIQ_HOSTS']&.split(';')
31
+ end
32
+
33
+ def response(host)
34
+ connected?(host) ? SUCCESS : ERROR
35
+ end
36
+
37
+ def connected?(host)
38
+ system("ping -c1 #{host}")
39
+ rescue StandardError
40
+ false
41
+ end
42
+ end
43
+ end
data/config/routes.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  HeyDoctor::Engine.routes.draw do
2
- get '/', to: proc { [200, {}, ['']] }
2
+ root to: proc { [200, {}, ['']] }
3
3
  end
data/lib/hey_doctor.rb CHANGED
@@ -12,11 +12,22 @@ module HeyDoctor::Rack
12
12
  private
13
13
 
14
14
  def status
15
- {
15
+ response = {
16
16
  app: ::HeyDoctor::CheckApplicationHealthService.call,
17
- database: ::HeyDoctor::CheckDatabaseHealthService.call,
18
- redis: ::HeyDoctor::CheckRedisHealthService.call
19
- }.to_json
17
+ database: ::HeyDoctor::CheckDatabaseHealthService.call
18
+ }
19
+
20
+ unless ENV['REDIS_URL'].blank?
21
+ response.merge!({ redis: ::HeyDoctor::CheckRedisHealthService.call })
22
+ end
23
+
24
+ unless ENV['SIDEKIQ_HOSTS'].blank?
25
+ response.merge!(
26
+ { sidekiq: ::HeyDoctor::CheckSidekiqHealthService.call }
27
+ )
28
+ end
29
+
30
+ response.to_json
20
31
  end
21
32
  end
22
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HeyDoctor
4
- VERSION = '1.1.0'
4
+ VERSION = '1.2.1'
5
5
  end
@@ -1,26 +1,30 @@
1
- require_relative "boot"
1
+ require_relative 'boot'
2
2
 
3
- require "rails"
3
+ require 'rails'
4
4
  # Pick the frameworks you want:
5
- require "active_model/railtie"
6
- require "active_job/railtie"
7
- require "active_record/railtie"
8
- require "active_storage/engine"
9
- require "action_controller/railtie"
10
- require "action_mailer/railtie"
11
- require "action_mailbox/engine"
12
- require "action_text/engine"
13
- require "action_view/railtie"
14
- require "action_cable/engine"
15
- # require "sprockets/railtie"
16
- # require "rails/test_unit/railtie"
5
+ require 'active_model/railtie'
6
+ require 'active_job/railtie'
7
+ require 'active_record/railtie'
8
+ require 'active_storage/engine'
9
+ require 'action_controller/railtie'
10
+ require 'action_mailer/railtie'
11
+ require 'action_mailbox/engine'
12
+ require 'action_text/engine'
13
+ require 'action_view/railtie'
14
+ require 'action_cable/engine'
15
+ # require 'sprockets/railtie'
16
+ # require 'rails/test_unit/railtie'
17
17
 
18
18
  # Require the gems listed in Gemfile, including any gems
19
19
  # you've limited to :test, :development, or :production.
20
20
  Bundler.require(*Rails.groups)
21
- require "hey_doctor"
21
+ require 'hey_doctor'
22
22
  require 'dotenv-rails'
23
- require 'redis'
23
+ begin
24
+ require 'redis'
25
+ rescue LoadError
26
+ puts 'Not using Redis'
27
+ end
24
28
 
25
29
  module Dummy
26
30
  class Application < Rails::Application
@@ -31,8 +35,8 @@ module Dummy
31
35
  # These settings can be overridden in specific environments using the files
32
36
  # in config/environments, which are processed later.
33
37
  #
34
- # config.time_zone = "Central Time (US & Canada)"
35
- # config.eager_load_paths << Rails.root.join("extras")
38
+ # config.time_zone = 'Central Time (US & Canada)'
39
+ # config.eager_load_paths << Rails.root.join('extras')
36
40
 
37
41
  # Only loads a smaller set of middleware suitable for API only apps.
38
42
  # Middleware like session, flash, cookies can be added back manually.
@@ -2041,3 +2041,688 @@ Started GET "/favicon.ico" for 172.19.0.1 at 2021-01-22 15:08:30 +0000
2041
2041
 
2042
2042
  ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2043
2043
 
2044
+  (1.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2045
+  (123.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2046
+  (0.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2047
+  (1.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2048
+ SQL (2.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2049
+  (19.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2050
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2051
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2052
+  (6.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2053
+ 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]]
2054
+ TRANSACTION (0.5ms) BEGIN
2055
+ 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", "2021-01-22 16:30:56.433623"], ["updated_at", "2021-01-22 16:30:56.433623"]]
2056
+ TRANSACTION (1.0ms) COMMIT
2057
+ 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]]
2058
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2059
+ TRANSACTION (0.5ms) BEGIN
2060
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:30:56.454745"], ["updated_at", "2021-01-22 16:30:56.454745"]]
2061
+ TRANSACTION (1.0ms) COMMIT
2062
+  (1.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2063
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2064
+  (107.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2065
+  (93.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2066
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2067
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2068
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2069
+  (5.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2070
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2071
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2072
+  (3.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2073
+ 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]]
2074
+ TRANSACTION (0.3ms) BEGIN
2075
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:31:22.323747"], ["updated_at", "2021-01-22 16:31:22.323747"]]
2076
+ TRANSACTION (0.7ms) COMMIT
2077
+ 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]]
2078
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2079
+ TRANSACTION (0.2ms) BEGIN
2080
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:31:22.336821"], ["updated_at", "2021-01-22 16:31:22.336821"]]
2081
+ TRANSACTION (0.8ms) COMMIT
2082
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2083
+  (6.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2084
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2085
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2086
+  (3.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2087
+ 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]]
2088
+ TRANSACTION (0.3ms) BEGIN
2089
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:31:22.386649"], ["updated_at", "2021-01-22 16:31:22.386649"]]
2090
+ TRANSACTION (0.7ms) COMMIT
2091
+ 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]]
2092
+ TRANSACTION (0.5ms) BEGIN
2093
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 16:31:22.399397"], ["key", "environment"]]
2094
+ TRANSACTION (0.9ms) COMMIT
2095
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2096
+ TRANSACTION (0.5ms) BEGIN
2097
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:31:22.416046"], ["updated_at", "2021-01-22 16:31:22.416046"]]
2098
+ TRANSACTION (1.0ms) COMMIT
2099
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2100
+  (1.3ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2101
+  (92.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2102
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2103
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2104
+ 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]]
2105
+ 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]]
2106
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2107
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2108
+  (7.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2109
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2110
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2111
+  (4.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2112
+ 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]]
2113
+ TRANSACTION (0.3ms) BEGIN
2114
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-01-22 16:33:17.579104"], ["updated_at", "2021-01-22 16:33:17.579104"]]
2115
+ TRANSACTION (1.8ms) COMMIT
2116
+ 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]]
2117
+ TRANSACTION (0.3ms) BEGIN
2118
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-01-22 16:33:17.590770"], ["key", "environment"]]
2119
+ TRANSACTION (1.0ms) COMMIT
2120
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2121
+ TRANSACTION (0.3ms) BEGIN
2122
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-01-22 16:33:17.600746"], ["updated_at", "2021-01-22 16:33:17.600746"]]
2123
+ TRANSACTION (0.6ms) COMMIT
2124
+  (60.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2125
+  (147.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2126
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2127
+  (11.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2128
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2129
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2130
+  (5.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2131
+ 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]]
2132
+ TRANSACTION (0.2ms) BEGIN
2133
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 11:57:17.292620"], ["updated_at", "2021-03-12 11:57:17.292620"]]
2134
+ TRANSACTION (0.6ms) COMMIT
2135
+ 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]]
2136
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2137
+ TRANSACTION (0.2ms) BEGIN
2138
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:17.304632"], ["updated_at", "2021-03-12 11:57:17.304632"]]
2139
+ TRANSACTION (0.6ms) COMMIT
2140
+  (71.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2141
+  (65.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2142
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2143
+  (13.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2144
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2145
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2146
+  (7.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2147
+ 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]]
2148
+ TRANSACTION (0.3ms) BEGIN
2149
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 11:57:33.105632"], ["updated_at", "2021-03-12 11:57:33.105632"]]
2150
+ TRANSACTION (0.6ms) COMMIT
2151
+ 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]]
2152
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2153
+ TRANSACTION (0.3ms) BEGIN
2154
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:33.117854"], ["updated_at", "2021-03-12 11:57:33.117854"]]
2155
+ TRANSACTION (0.7ms) COMMIT
2156
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2157
+  (9.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2158
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2159
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2160
+  (8.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2161
+ 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]]
2162
+ TRANSACTION (0.3ms) BEGIN
2163
+ 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", "2021-03-12 11:57:33.190668"], ["updated_at", "2021-03-12 11:57:33.190668"]]
2164
+ TRANSACTION (0.9ms) COMMIT
2165
+ 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]]
2166
+ TRANSACTION (0.3ms) BEGIN
2167
+ 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", "2021-03-12 11:57:33.204012"], ["key", "environment"]]
2168
+ TRANSACTION (1.0ms) COMMIT
2169
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2170
+ TRANSACTION (0.4ms) BEGIN
2171
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 11:57:33.217371"], ["updated_at", "2021-03-12 11:57:33.217371"]]
2172
+ TRANSACTION (0.9ms) COMMIT
2173
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2174
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 11:57:49 +0000
2175
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2176
+  (0.3ms) select 1
2177
+  (0.4ms) select 1
2178
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2179
+ Started GET "/favicon.ico" for 172.18.0.1 at 2021-03-12 11:57:49 +0000
2180
+
2181
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2182
+
2183
+  (75.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2184
+  (68.3ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2185
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2186
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2187
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2188
+ 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]]
2189
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2190
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2191
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2192
+ 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]]
2193
+ TRANSACTION (0.4ms) BEGIN
2194
+ ActiveRecord::InternalMetadata Update (0.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:20:19.407434"], ["key", "environment"]]
2195
+ TRANSACTION (1.3ms) COMMIT
2196
+ 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]]
2197
+ TRANSACTION (0.3ms) BEGIN
2198
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:20:19.419183"], ["key", "environment"]]
2199
+ TRANSACTION (0.6ms) COMMIT
2200
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2201
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2202
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:20:21 +0000
2203
+  (0.1ms) select 1
2204
+  (0.2ms) select 1
2205
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2206
+  (0.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2207
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2208
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2209
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2210
+  (70.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2211
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2212
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2213
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2214
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2215
+ 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]]
2216
+ 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]]
2217
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2218
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2219
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2220
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2221
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2222
+  (4.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2223
+ 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]]
2224
+ TRANSACTION (0.2ms) BEGIN
2225
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:23:25.148468"], ["updated_at", "2021-03-12 12:23:25.148468"]]
2226
+ TRANSACTION (0.5ms) COMMIT
2227
+ 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]]
2228
+ TRANSACTION (0.2ms) BEGIN
2229
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:23:25.156806"], ["key", "environment"]]
2230
+ TRANSACTION (0.6ms) COMMIT
2231
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2232
+ TRANSACTION (0.2ms) BEGIN
2233
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:23:25.165108"], ["updated_at", "2021-03-12 12:23:25.165108"]]
2234
+ TRANSACTION (0.6ms) COMMIT
2235
+  (73.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2236
+  (0.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2237
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2238
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2239
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2240
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2241
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2242
+ 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]]
2243
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2244
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2245
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2246
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2247
+ TRANSACTION (0.4ms) BEGIN
2248
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:23:33.522205"], ["key", "environment"]]
2249
+ TRANSACTION (1.1ms) COMMIT
2250
+ 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]]
2251
+ TRANSACTION (0.3ms) BEGIN
2252
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-12 12:23:33.533947"], ["key", "environment"]]
2253
+ TRANSACTION (0.7ms) COMMIT
2254
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2255
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2256
+  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2257
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2258
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:45 +0000
2259
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2260
+  (0.4ms) select 1
2261
+  (0.4ms) select 1
2262
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2263
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:57 +0000
2264
+  (1.7ms) select 1
2265
+  (0.4ms) select 1
2266
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2267
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:23:59 +0000
2268
+  (0.5ms) select 1
2269
+  (0.4ms) select 1
2270
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2271
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:00 +0000
2272
+  (0.5ms) select 1
2273
+  (0.4ms) select 1
2274
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2275
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:37 +0000
2276
+  (0.3ms) select 1
2277
+  (0.5ms) select 1
2278
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2279
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:24:38 +0000
2280
+  (0.7ms) select 1
2281
+  (0.4ms) select 1
2282
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2283
+  (59.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2284
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2285
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2286
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2287
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2288
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2289
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2290
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2291
+  (4.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2292
+ 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]]
2293
+ TRANSACTION (0.2ms) BEGIN
2294
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:25:04.393519"], ["updated_at", "2021-03-12 12:25:04.393519"]]
2295
+ TRANSACTION (0.6ms) COMMIT
2296
+ 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]]
2297
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2298
+ TRANSACTION (0.3ms) BEGIN
2299
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:25:04.406042"], ["updated_at", "2021-03-12 12:25:04.406042"]]
2300
+ TRANSACTION (0.6ms) COMMIT
2301
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2302
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2303
+ 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]]
2304
+ TRANSACTION (0.2ms) BEGIN
2305
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:25:04.441544"], ["key", "environment"]]
2306
+ TRANSACTION (0.8ms) COMMIT
2307
+ 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]]
2308
+ TRANSACTION (0.2ms) BEGIN
2309
+ 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", "2021-03-12 12:25:04.449777"], ["key", "environment"]]
2310
+ TRANSACTION (0.6ms) COMMIT
2311
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2312
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2313
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:25:22 +0000
2314
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2315
+  (0.3ms) select 1
2316
+  (0.3ms) select 1
2317
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2318
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:25:50 +0000
2319
+  (0.6ms) select 1
2320
+  (0.4ms) select 1
2321
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2322
+  (0.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2323
+  (71.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2324
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2325
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2326
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2327
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2328
+ 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]]
2329
+ 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]]
2330
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2331
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2332
+  (8.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2333
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2334
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2335
+  (4.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2336
+ 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]]
2337
+ TRANSACTION (0.2ms) BEGIN
2338
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-12 12:27:03.574965"], ["updated_at", "2021-03-12 12:27:03.574965"]]
2339
+ TRANSACTION (0.6ms) COMMIT
2340
+ 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]]
2341
+ TRANSACTION (0.2ms) BEGIN
2342
+ 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", "2021-03-12 12:27:03.583212"], ["key", "environment"]]
2343
+ TRANSACTION (0.5ms) COMMIT
2344
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2345
+ TRANSACTION (0.2ms) BEGIN
2346
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-12 12:27:03.591251"], ["updated_at", "2021-03-12 12:27:03.591251"]]
2347
+ TRANSACTION (0.8ms) COMMIT
2348
+  (2.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2349
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2350
+  (0.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2351
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2352
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2353
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2354
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2355
+ 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]]
2356
+ 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]]
2357
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2358
+  (0.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2359
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2360
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2361
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2362
+ 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]]
2363
+ 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]]
2364
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2365
+ SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2366
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2367
+ 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]]
2368
+ TRANSACTION (0.2ms) BEGIN
2369
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-12 12:30:58.860645"], ["key", "environment"]]
2370
+ TRANSACTION (1.3ms) COMMIT
2371
+ 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]]
2372
+ TRANSACTION (0.3ms) BEGIN
2373
+ 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", "2021-03-12 12:30:58.870475"], ["key", "environment"]]
2374
+ TRANSACTION (0.6ms) COMMIT
2375
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2376
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2377
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-03-12 12:31:09 +0000
2378
+
2379
+ ActiveRecord::NoDatabaseError (FATAL: database "dummy_development" does not exist
2380
+ ):
2381
+
2382
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client'
2383
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client'
2384
+ activerecord (6.1.1) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection'
2385
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `public_send'
2386
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:882:in `new_connection'
2387
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:926:in `checkout_new_connection'
2388
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:905:in `try_to_checkout_new_connection'
2389
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:866:in `acquire_connection'
2390
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:588:in `checkout'
2391
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:428:in `connection'
2392
+ activerecord (6.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:1128:in `retrieve_connection'
2393
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:319:in `retrieve_connection'
2394
+ activerecord (6.1.1) lib/active_record/connection_handling.rb:275:in `connection'
2395
+ activerecord (6.1.1) lib/active_record/migration.rb:611:in `connection'
2396
+ activerecord (6.1.1) lib/active_record/migration.rb:606:in `build_watcher'
2397
+ activerecord (6.1.1) lib/active_record/migration.rb:588:in `block in call'
2398
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `synchronize'
2399
+ activerecord (6.1.1) lib/active_record/migration.rb:587:in `call'
2400
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
2401
+ activesupport (6.1.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
2402
+ actionpack (6.1.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
2403
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
2404
+ actionpack (6.1.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
2405
+ actionpack (6.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
2406
+ actionpack (6.1.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2407
+ railties (6.1.1) lib/rails/rack/logger.rb:37:in `call_app'
2408
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `block in call'
2409
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
2410
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:37:in `tagged'
2411
+ activesupport (6.1.1) lib/active_support/tagged_logging.rb:99:in `tagged'
2412
+ railties (6.1.1) lib/rails/rack/logger.rb:26:in `call'
2413
+ actionpack (6.1.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2414
+ actionpack (6.1.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
2415
+ rack (2.2.3) lib/rack/runtime.rb:22:in `call'
2416
+ activesupport (6.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2417
+ actionpack (6.1.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
2418
+ actionpack (6.1.1) lib/action_dispatch/middleware/static.rb:24:in `call'
2419
+ rack (2.2.3) lib/rack/sendfile.rb:110:in `call'
2420
+ actionpack (6.1.1) lib/action_dispatch/middleware/host_authorization.rb:98:in `call'
2421
+ railties (6.1.1) lib/rails/engine.rb:539:in `call'
2422
+ rack (2.2.3) lib/rack/urlmap.rb:74:in `block in call'
2423
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `each'
2424
+ rack (2.2.3) lib/rack/urlmap.rb:58:in `call'
2425
+ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
2426
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:140:in `service'
2427
+ /usr/local/lib/ruby/2.5.0/webrick/httpserver.rb:96:in `run'
2428
+ /usr/local/lib/ruby/2.5.0/webrick/server.rb:307:in `block in start_thread'
2429
+  (99.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2430
+  (101.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2431
+ SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2432
+  (10.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2433
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2434
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2435
+  (6.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2436
+ 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]]
2437
+ TRANSACTION (0.4ms) BEGIN
2438
+ ActiveRecord::InternalMetadata Create (1.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", "2021-03-19 14:16:21.629198"], ["updated_at", "2021-03-19 14:16:21.629198"]]
2439
+ TRANSACTION (0.9ms) COMMIT
2440
+ 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]]
2441
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2442
+ TRANSACTION (0.3ms) BEGIN
2443
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-19 14:16:21.647376"], ["updated_at", "2021-03-19 14:16:21.647376"]]
2444
+ TRANSACTION (0.8ms) COMMIT
2445
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2446
+  (10.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2447
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2448
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2449
+  (7.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2450
+ 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]]
2451
+ TRANSACTION (0.4ms) BEGIN
2452
+ 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", "2021-03-19 14:16:21.735372"], ["updated_at", "2021-03-19 14:16:21.735372"]]
2453
+ TRANSACTION (0.8ms) COMMIT
2454
+ 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]]
2455
+ TRANSACTION (0.3ms) BEGIN
2456
+ 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", "2021-03-19 14:16:21.748905"], ["key", "environment"]]
2457
+ TRANSACTION (0.8ms) COMMIT
2458
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2459
+ TRANSACTION (0.5ms) BEGIN
2460
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-19 14:16:21.760432"], ["updated_at", "2021-03-19 14:16:21.760432"]]
2461
+ TRANSACTION (1.7ms) COMMIT
2462
+  (4.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2463
+  (218.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2464
+  (173.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2465
+  (93.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2466
+  (108.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2467
+  (0.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2468
+  (0.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2469
+  (0.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2470
+  (106.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2471
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2472
+  (23.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2473
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2474
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2475
+  (6.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2476
+ 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]]
2477
+ TRANSACTION (0.4ms) BEGIN
2478
+ 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", "2021-03-25 17:28:15.670734"], ["updated_at", "2021-03-25 17:28:15.670734"]]
2479
+ TRANSACTION (1.1ms) COMMIT
2480
+ 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]]
2481
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2482
+ TRANSACTION (0.3ms) BEGIN
2483
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-25 17:28:15.686845"], ["updated_at", "2021-03-25 17:28:15.686845"]]
2484
+ TRANSACTION (0.7ms) COMMIT
2485
+ SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2486
+  (9.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2487
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2488
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2489
+  (6.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2490
+ 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]]
2491
+ TRANSACTION (0.2ms) BEGIN
2492
+ ActiveRecord::InternalMetadata Create (1.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", "2021-03-25 17:28:15.765804"], ["updated_at", "2021-03-25 17:28:15.765804"]]
2493
+ TRANSACTION (0.6ms) COMMIT
2494
+ 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]]
2495
+ TRANSACTION (0.2ms) BEGIN
2496
+ 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", "2021-03-25 17:28:15.782115"], ["key", "environment"]]
2497
+ TRANSACTION (0.8ms) COMMIT
2498
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2499
+ TRANSACTION (0.3ms) BEGIN
2500
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-25 17:28:15.794835"], ["updated_at", "2021-03-25 17:28:15.794835"]]
2501
+ TRANSACTION (0.8ms) COMMIT
2502
+  (20.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2503
+  (10.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2504
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2505
+  (171.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2506
+  (110.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2507
+ SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2508
+  (10.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2509
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2510
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2511
+  (7.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2512
+ 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]]
2513
+ TRANSACTION (0.3ms) BEGIN
2514
+ ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-03-30 17:58:57.394623"], ["updated_at", "2021-03-30 17:58:57.394623"]]
2515
+ TRANSACTION (0.9ms) COMMIT
2516
+ 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]]
2517
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2518
+ TRANSACTION (0.3ms) BEGIN
2519
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-30 17:58:57.412614"], ["updated_at", "2021-03-30 17:58:57.412614"]]
2520
+ TRANSACTION (0.9ms) COMMIT
2521
+  (83.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2522
+  (118.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2523
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2524
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2525
+ SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2526
+  (3.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2527
+ 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]]
2528
+ 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]]
2529
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2530
+ SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2531
+  (16.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2532
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2533
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2534
+  (10.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2535
+ 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]]
2536
+ TRANSACTION (0.7ms) BEGIN
2537
+ ActiveRecord::InternalMetadata Create (1.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", "2021-03-30 17:59:09.686163"], ["updated_at", "2021-03-30 17:59:09.686163"]]
2538
+ TRANSACTION (1.3ms) COMMIT
2539
+ 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]]
2540
+ TRANSACTION (0.3ms) BEGIN
2541
+ ActiveRecord::InternalMetadata Update (0.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-30 17:59:09.708126"], ["key", "environment"]]
2542
+ TRANSACTION (1.0ms) COMMIT
2543
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2544
+ TRANSACTION (0.5ms) BEGIN
2545
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-30 17:59:09.720498"], ["updated_at", "2021-03-30 17:59:09.720498"]]
2546
+ TRANSACTION (1.1ms) COMMIT
2547
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2548
+  (2.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2549
+  (110.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2550
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2551
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2552
+ 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]]
2553
+ 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]]
2554
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2555
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2556
+  (9.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2557
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2558
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2559
+  (6.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2560
+ 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]]
2561
+ TRANSACTION (0.3ms) BEGIN
2562
+ 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", "2021-03-30 18:21:26.730154"], ["updated_at", "2021-03-30 18:21:26.730154"]]
2563
+ TRANSACTION (1.1ms) COMMIT
2564
+ 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]]
2565
+ TRANSACTION (0.3ms) BEGIN
2566
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-30 18:21:26.741326"], ["key", "environment"]]
2567
+ TRANSACTION (1.2ms) COMMIT
2568
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2569
+ TRANSACTION (0.4ms) BEGIN
2570
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-03-30 18:21:26.758437"], ["updated_at", "2021-03-30 18:21:26.758437"]]
2571
+ TRANSACTION (0.9ms) COMMIT
2572
+  (2.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2573
+  (1.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2574
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2575
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2576
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2577
+  (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2578
+ 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]]
2579
+ 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]]
2580
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2581
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2582
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2583
+ 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]]
2584
+ TRANSACTION (0.3ms) BEGIN
2585
+ ActiveRecord::InternalMetadata Update (1.1ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2021-03-30 18:21:36.901735"], ["key", "environment"]]
2586
+ TRANSACTION (1.2ms) COMMIT
2587
+ ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2588
+ TRANSACTION (0.4ms) BEGIN
2589
+ ActiveRecord::InternalMetadata Update (1.1ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-03-30 18:21:36.926927"], ["key", "environment"]]
2590
+ TRANSACTION (1.1ms) COMMIT
2591
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2592
+  (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2593
+  (126.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2594
+  (86.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2595
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2596
+  (8.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2597
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2598
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2599
+  (6.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2600
+ 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]]
2601
+ TRANSACTION (0.3ms) BEGIN
2602
+ 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", "2021-04-05 17:08:16.705271"], ["updated_at", "2021-04-05 17:08:16.705271"]]
2603
+ TRANSACTION (0.7ms) COMMIT
2604
+ 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]]
2605
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2606
+ TRANSACTION (0.3ms) BEGIN
2607
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-05 17:08:16.718651"], ["updated_at", "2021-04-05 17:08:16.718651"]]
2608
+ TRANSACTION (0.7ms) COMMIT
2609
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2610
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2611
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2612
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2613
+  (5.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2614
+ 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]]
2615
+ TRANSACTION (0.2ms) BEGIN
2616
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-04-05 17:08:16.788935"], ["updated_at", "2021-04-05 17:08:16.788935"]]
2617
+ TRANSACTION (0.8ms) COMMIT
2618
+ 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]]
2619
+ TRANSACTION (0.3ms) BEGIN
2620
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-04-05 17:08:16.798525"], ["key", "environment"]]
2621
+ TRANSACTION (0.7ms) COMMIT
2622
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2623
+ TRANSACTION (0.3ms) BEGIN
2624
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-05 17:08:16.808364"], ["updated_at", "2021-04-05 17:08:16.808364"]]
2625
+ TRANSACTION (0.8ms) COMMIT
2626
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2627
+  (96.0ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2628
+  (95.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2629
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2630
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2631
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2632
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2633
+  (5.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2634
+ 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]]
2635
+ TRANSACTION (0.4ms) BEGIN
2636
+ 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", "2021-04-05 17:22:47.563507"], ["updated_at", "2021-04-05 17:22:47.563507"]]
2637
+ TRANSACTION (0.7ms) COMMIT
2638
+ 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]]
2639
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2640
+ TRANSACTION (0.3ms) BEGIN
2641
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-05 17:22:47.576791"], ["updated_at", "2021-04-05 17:22:47.576791"]]
2642
+ TRANSACTION (0.7ms) COMMIT
2643
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2644
+  (9.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2645
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2646
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2647
+  (6.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2648
+ 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]]
2649
+ TRANSACTION (0.3ms) BEGIN
2650
+ 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", "2021-04-05 17:22:47.648177"], ["updated_at", "2021-04-05 17:22:47.648177"]]
2651
+ TRANSACTION (0.8ms) COMMIT
2652
+ 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]]
2653
+ TRANSACTION (0.5ms) BEGIN
2654
+ ActiveRecord::InternalMetadata Update (1.0ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-04-05 17:22:47.659655"], ["key", "environment"]]
2655
+ TRANSACTION (1.1ms) COMMIT
2656
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2657
+ TRANSACTION (0.5ms) BEGIN
2658
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-05 17:22:47.678654"], ["updated_at", "2021-04-05 17:22:47.678654"]]
2659
+ TRANSACTION (1.2ms) COMMIT
2660
+  (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2661
+  (60.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2662
+  (66.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2663
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2664
+  (7.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2665
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2666
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2667
+  (4.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2668
+ 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]]
2669
+ TRANSACTION (0.3ms) BEGIN
2670
+ 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", "2021-04-09 12:47:43.433373"], ["updated_at", "2021-04-09 12:47:43.433373"]]
2671
+ TRANSACTION (0.6ms) COMMIT
2672
+ 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]]
2673
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2674
+ TRANSACTION (0.3ms) BEGIN
2675
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-09 12:47:43.445744"], ["updated_at", "2021-04-09 12:47:43.445744"]]
2676
+ TRANSACTION (0.5ms) COMMIT
2677
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2678
+  (8.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2679
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2680
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2681
+  (4.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2682
+ 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]]
2683
+ TRANSACTION (0.2ms) BEGIN
2684
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-04-09 12:47:43.512423"], ["updated_at", "2021-04-09 12:47:43.512423"]]
2685
+ TRANSACTION (0.6ms) COMMIT
2686
+ 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]]
2687
+ TRANSACTION (0.2ms) BEGIN
2688
+ 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", "2021-04-09 12:47:43.523761"], ["key", "environment"]]
2689
+ TRANSACTION (0.6ms) COMMIT
2690
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2691
+ TRANSACTION (0.2ms) BEGIN
2692
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-09 12:47:43.535885"], ["updated_at", "2021-04-09 12:47:43.535885"]]
2693
+ TRANSACTION (0.6ms) COMMIT
2694
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2695
+  (69.6ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2696
+  (72.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2697
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2698
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2699
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2700
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2701
+  (5.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2702
+ 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]]
2703
+ TRANSACTION (0.2ms) BEGIN
2704
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-04-09 12:53:01.561381"], ["updated_at", "2021-04-09 12:53:01.561381"]]
2705
+ TRANSACTION (0.6ms) COMMIT
2706
+ 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]]
2707
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2708
+ TRANSACTION (0.2ms) BEGIN
2709
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-09 12:53:01.573159"], ["updated_at", "2021-04-09 12:53:01.573159"]]
2710
+ TRANSACTION (0.6ms) COMMIT
2711
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2712
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2713
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2714
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2715
+  (4.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2716
+ 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]]
2717
+ TRANSACTION (0.2ms) BEGIN
2718
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-04-09 12:53:01.633567"], ["updated_at", "2021-04-09 12:53:01.633567"]]
2719
+ TRANSACTION (0.6ms) COMMIT
2720
+ 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]]
2721
+ TRANSACTION (0.2ms) BEGIN
2722
+ 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", "2021-04-09 12:53:01.641809"], ["key", "environment"]]
2723
+ TRANSACTION (0.6ms) COMMIT
2724
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2725
+ TRANSACTION (0.2ms) BEGIN
2726
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-09 12:53:01.651137"], ["updated_at", "2021-04-09 12:53:01.651137"]]
2727
+ TRANSACTION (0.6ms) COMMIT
2728
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC