cm_page_builder-rails 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +6 -8
  3. data/app/models/cm_page_builder/rails/page.rb +14 -6
  4. data/app/models/cm_page_builder/rails/page_component.rb +7 -1
  5. data/lib/cm_page_builder/rails/engine.rb +1 -0
  6. data/lib/cm_page_builder/rails/version.rb +1 -1
  7. data/spec/dummy/Rakefile +6 -0
  8. data/spec/dummy/app/assets/config/manifest.js +3 -0
  9. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  10. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  11. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  12. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  13. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  14. data/spec/dummy/app/javascript/packs/application.js +15 -0
  15. data/spec/dummy/app/jobs/application_job.rb +7 -0
  16. data/spec/dummy/app/models/application_record.rb +3 -0
  17. data/spec/dummy/app/models/test_container.rb +3 -0
  18. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/spec/dummy/bin/rails +4 -0
  20. data/spec/dummy/bin/rake +4 -0
  21. data/spec/dummy/bin/setup +33 -0
  22. data/spec/dummy/config.ru +5 -0
  23. data/spec/dummy/config/application.rb +30 -0
  24. data/spec/dummy/config/boot.rb +5 -0
  25. data/spec/dummy/config/cable.yml +10 -0
  26. data/spec/dummy/config/database.yml +85 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/development.rb +57 -0
  29. data/spec/dummy/config/environments/production.rb +106 -0
  30. data/spec/dummy/config/environments/test.rb +41 -0
  31. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  32. data/spec/dummy/config/initializers/assets.rb +12 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +33 -0
  41. data/spec/dummy/config/puma.rb +35 -0
  42. data/spec/dummy/config/routes.rb +3 -0
  43. data/spec/dummy/config/spring.rb +6 -0
  44. data/spec/dummy/config/storage.yml +34 -0
  45. data/spec/dummy/db/migrate/20190930111315_create_test_containers.rb +9 -0
  46. data/spec/dummy/db/migrate/20190930120755_create_active_storage_tables.active_storage.rb +27 -0
  47. data/spec/dummy/db/schema.rb +66 -0
  48. data/spec/dummy/log/development.log +1167 -0
  49. data/spec/dummy/log/test.log +342 -0
  50. data/spec/dummy/public/404.html +67 -0
  51. data/spec/dummy/public/422.html +67 -0
  52. data/spec/dummy/public/500.html +66 -0
  53. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  54. data/spec/dummy/public/apple-touch-icon.png +0 -0
  55. data/spec/dummy/public/favicon.ico +0 -0
  56. data/spec/dummy/spec/models/test_container_spec.rb +5 -0
  57. data/spec/dummy/tmp/development_secret.txt +1 -0
  58. data/spec/models/cm_page_builder/rails/page_spec.rb +41 -0
  59. data/spec/rails_helper.rb +62 -0
  60. data/spec/spec_helper.rb +96 -0
  61. metadata +125 -3
@@ -0,0 +1,1167 @@
1
+  (0.2ms) DROP DATABASE IF EXISTS "dummy_test"
2
+  (290.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
3
+  (115.9ms) DROP DATABASE IF EXISTS "dummy_test"
4
+  (234.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
5
+  (109.3ms) DROP DATABASE IF EXISTS "dummy_test"
6
+  (236.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
7
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
8
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
9
+  (6.3ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
10
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
11
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
12
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
13
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
14
+  (1.5ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
15
+ FOREIGN KEY ("page_id")
16
+ REFERENCES "cm_page_builder_rails_pages" ("id")
17
+ 
18
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
19
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
20
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
21
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
22
+ (20190816103148),
23
+ (20190816105056);
24
+
25
+ 
26
+  (2.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)
27
+ 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]]
28
+  (0.1ms) BEGIN
29
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:32:29.711117"], ["updated_at", "2019-09-30 10:32:29.711117"]]
30
+  (0.2ms) COMMIT
31
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
32
+  (0.1ms) BEGIN
33
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:32:29.716977"], ["key", "environment"]]
34
+  (0.2ms) COMMIT
35
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
36
+  (0.1ms) BEGIN
37
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:32:29.721718"], ["updated_at", "2019-09-30 10:32:29.721718"]]
38
+  (0.2ms) COMMIT
39
+  (109.6ms) DROP DATABASE IF EXISTS "dummy_test"
40
+  (229.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
41
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
42
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
43
+  (5.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
44
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
45
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
46
+  (2.4ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
47
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
48
+  (1.5ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
49
+ FOREIGN KEY ("page_id")
50
+ REFERENCES "cm_page_builder_rails_pages" ("id")
51
+ 
52
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
53
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
54
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
55
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
56
+ (20190816103148),
57
+ (20190816105056);
58
+
59
+ 
60
+  (2.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)
61
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
62
+  (0.1ms) BEGIN
63
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:35:21.315330"], ["updated_at", "2019-09-30 10:35:21.315330"]]
64
+  (0.2ms) COMMIT
65
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
66
+  (0.1ms) BEGIN
67
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:35:21.320361"], ["key", "environment"]]
68
+  (0.2ms) COMMIT
69
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
70
+  (0.1ms) BEGIN
71
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:35:21.324594"], ["updated_at", "2019-09-30 10:35:21.324594"]]
72
+  (0.2ms) COMMIT
73
+  (108.8ms) DROP DATABASE IF EXISTS "dummy_test"
74
+  (237.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
75
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
76
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
77
+  (7.9ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
78
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
79
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
80
+  (2.9ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
81
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
82
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
83
+ FOREIGN KEY ("page_id")
84
+ REFERENCES "cm_page_builder_rails_pages" ("id")
85
+ 
86
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
87
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
88
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
89
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
90
+ (20190816103148),
91
+ (20190816105056);
92
+
93
+ 
94
+  (2.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)
95
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
96
+  (0.1ms) BEGIN
97
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:39:48.089965"], ["updated_at", "2019-09-30 10:39:48.089965"]]
98
+  (0.2ms) COMMIT
99
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
100
+  (0.1ms) BEGIN
101
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:39:48.097522"], ["key", "environment"]]
102
+  (0.2ms) COMMIT
103
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
104
+  (0.1ms) BEGIN
105
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:39:48.104167"], ["updated_at", "2019-09-30 10:39:48.104167"]]
106
+  (1.9ms) COMMIT
107
+  (118.5ms) DROP DATABASE IF EXISTS "dummy_test"
108
+  (237.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
109
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
110
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
111
+  (6.6ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
112
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
113
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
114
+  (3.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
115
+  (1.4ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
116
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
117
+ FOREIGN KEY ("page_id")
118
+ REFERENCES "cm_page_builder_rails_pages" ("id")
119
+ 
120
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
121
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
122
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
123
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
124
+ (20190816103148),
125
+ (20190816105056);
126
+
127
+ 
128
+  (2.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)
129
+ 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]]
130
+  (0.1ms) BEGIN
131
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:42:01.812545"], ["updated_at", "2019-09-30 10:42:01.812545"]]
132
+  (0.2ms) COMMIT
133
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
134
+  (0.1ms) BEGIN
135
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:42:01.818104"], ["key", "environment"]]
136
+  (0.2ms) COMMIT
137
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
138
+  (0.1ms) BEGIN
139
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:42:01.825072"], ["updated_at", "2019-09-30 10:42:01.825072"]]
140
+  (0.3ms) COMMIT
141
+  (109.2ms) DROP DATABASE IF EXISTS "dummy_test"
142
+  (237.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
143
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
144
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
145
+  (5.2ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
146
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
147
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
148
+  (2.3ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
149
+  (1.1ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
150
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
151
+ FOREIGN KEY ("page_id")
152
+ REFERENCES "cm_page_builder_rails_pages" ("id")
153
+ 
154
+  (3.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
155
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
156
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
157
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
158
+ (20190816103148),
159
+ (20190816105056);
160
+
161
+ 
162
+  (3.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)
163
+ 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]]
164
+  (0.1ms) BEGIN
165
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:43:47.164473"], ["updated_at", "2019-09-30 10:43:47.164473"]]
166
+  (0.2ms) COMMIT
167
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
168
+  (0.1ms) BEGIN
169
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:43:47.172368"], ["key", "environment"]]
170
+  (0.2ms) COMMIT
171
+ 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]]
172
+  (0.1ms) BEGIN
173
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:43:47.179671"], ["updated_at", "2019-09-30 10:43:47.179671"]]
174
+  (0.2ms) COMMIT
175
+  (116.9ms) DROP DATABASE IF EXISTS "dummy_test"
176
+  (235.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
177
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
178
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
179
+  (5.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
180
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
181
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
182
+  (3.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
183
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
184
+  (1.5ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
185
+ FOREIGN KEY ("page_id")
186
+ REFERENCES "cm_page_builder_rails_pages" ("id")
187
+ 
188
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
189
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
190
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
191
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
192
+ (20190816103148),
193
+ (20190816105056);
194
+
195
+ 
196
+  (2.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)
197
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
198
+  (0.1ms) BEGIN
199
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:46:27.471674"], ["updated_at", "2019-09-30 10:46:27.471674"]]
200
+  (0.2ms) COMMIT
201
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
202
+  (0.1ms) BEGIN
203
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:46:27.477368"], ["key", "environment"]]
204
+  (0.2ms) COMMIT
205
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
206
+  (0.1ms) BEGIN
207
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:46:27.481722"], ["updated_at", "2019-09-30 10:46:27.481722"]]
208
+  (0.2ms) COMMIT
209
+  (118.8ms) DROP DATABASE IF EXISTS "dummy_test"
210
+  (238.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
211
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
212
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
213
+  (5.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
214
+  (1.1ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
215
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
216
+  (3.4ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
217
+  (1.1ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
218
+  (2.1ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
219
+ FOREIGN KEY ("page_id")
220
+ REFERENCES "cm_page_builder_rails_pages" ("id")
221
+ 
222
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
223
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
224
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
225
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
226
+ (20190816103148),
227
+ (20190816105056);
228
+
229
+ 
230
+  (2.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)
231
+ 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]]
232
+  (0.1ms) BEGIN
233
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:46:53.860805"], ["updated_at", "2019-09-30 10:46:53.860805"]]
234
+  (0.2ms) COMMIT
235
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
236
+  (0.1ms) BEGIN
237
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:46:53.865874"], ["key", "environment"]]
238
+  (0.2ms) COMMIT
239
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
240
+  (0.1ms) BEGIN
241
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:46:53.870176"], ["updated_at", "2019-09-30 10:46:53.870176"]]
242
+  (0.2ms) COMMIT
243
+  (109.2ms) DROP DATABASE IF EXISTS "dummy_test"
244
+  (236.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
245
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
246
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
247
+  (7.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
248
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
249
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
250
+  (2.4ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
251
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
252
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
253
+ FOREIGN KEY ("page_id")
254
+ REFERENCES "cm_page_builder_rails_pages" ("id")
255
+ 
256
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
257
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
258
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
259
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
260
+ (20190816103148),
261
+ (20190816105056);
262
+
263
+ 
264
+  (2.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)
265
+ 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]]
266
+  (0.1ms) BEGIN
267
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:47:18.785583"], ["updated_at", "2019-09-30 10:47:18.785583"]]
268
+  (0.2ms) COMMIT
269
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
270
+  (0.1ms) BEGIN
271
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:47:18.791270"], ["key", "environment"]]
272
+  (0.2ms) COMMIT
273
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
274
+  (0.1ms) BEGIN
275
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:47:18.795972"], ["updated_at", "2019-09-30 10:47:18.795972"]]
276
+  (0.2ms) COMMIT
277
+  (115.7ms) DROP DATABASE IF EXISTS "dummy_test"
278
+  (236.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
279
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
280
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
281
+  (6.1ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
282
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
283
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
284
+  (2.5ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
285
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
286
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
287
+ FOREIGN KEY ("page_id")
288
+ REFERENCES "cm_page_builder_rails_pages" ("id")
289
+ 
290
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
291
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
292
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
293
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES
294
+ (20190816103148),
295
+ (20190816105056);
296
+
297
+ 
298
+  (2.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)
299
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
300
+  (0.1ms) BEGIN
301
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:51:53.812836"], ["updated_at", "2019-09-30 10:51:53.812836"]]
302
+  (0.2ms) COMMIT
303
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
304
+  (0.1ms) BEGIN
305
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:51:53.818091"], ["key", "environment"]]
306
+  (0.2ms) COMMIT
307
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
308
+  (0.1ms) BEGIN
309
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:51:53.822689"], ["updated_at", "2019-09-30 10:51:53.822689"]]
310
+  (0.2ms) COMMIT
311
+  (118.3ms) DROP DATABASE IF EXISTS "dummy_test"
312
+  (240.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
313
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
314
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
315
+  (6.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
316
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
317
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
318
+  (3.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
319
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
320
+  (1.8ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
321
+ FOREIGN KEY ("page_id")
322
+ REFERENCES "cm_page_builder_rails_pages" ("id")
323
+ 
324
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
325
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
326
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
327
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
328
+ (20190816103148),
329
+ (20190816105056);
330
+
331
+ 
332
+  (2.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)
333
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
334
+  (0.1ms) BEGIN
335
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:52:14.524712"], ["updated_at", "2019-09-30 10:52:14.524712"]]
336
+  (0.2ms) COMMIT
337
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
338
+  (0.1ms) BEGIN
339
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:52:14.530513"], ["key", "environment"]]
340
+  (0.2ms) COMMIT
341
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
342
+  (0.1ms) BEGIN
343
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:52:14.535401"], ["updated_at", "2019-09-30 10:52:14.535401"]]
344
+  (0.2ms) COMMIT
345
+  (109.8ms) DROP DATABASE IF EXISTS "dummy_test"
346
+  (239.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
347
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
348
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
349
+  (6.0ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
350
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
351
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
352
+  (2.9ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
353
+  (1.1ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
354
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
355
+ FOREIGN KEY ("page_id")
356
+ REFERENCES "cm_page_builder_rails_pages" ("id")
357
+ 
358
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
359
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
360
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
361
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
362
+ (20190816103148),
363
+ (20190816105056);
364
+
365
+ 
366
+  (2.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)
367
+ 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]]
368
+  (0.1ms) BEGIN
369
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:52:29.142677"], ["updated_at", "2019-09-30 10:52:29.142677"]]
370
+  (0.2ms) COMMIT
371
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
372
+  (0.1ms) BEGIN
373
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:52:29.148386"], ["key", "environment"]]
374
+  (0.2ms) COMMIT
375
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
376
+  (0.1ms) BEGIN
377
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:52:29.152982"], ["updated_at", "2019-09-30 10:52:29.152982"]]
378
+  (0.2ms) COMMIT
379
+  (108.8ms) DROP DATABASE IF EXISTS "dummy_test"
380
+  (237.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
381
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
382
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
383
+  (5.8ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
384
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
385
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
386
+  (2.4ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
387
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
388
+  (1.2ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
389
+ FOREIGN KEY ("page_id")
390
+ REFERENCES "cm_page_builder_rails_pages" ("id")
391
+ 
392
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
393
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
394
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
395
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
396
+ (20190816103148),
397
+ (20190816105056);
398
+
399
+ 
400
+  (2.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)
401
+ 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]]
402
+  (0.1ms) BEGIN
403
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 10:53:23.859131"], ["updated_at", "2019-09-30 10:53:23.859131"]]
404
+  (0.2ms) COMMIT
405
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
406
+  (0.1ms) BEGIN
407
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 10:53:23.864431"], ["key", "environment"]]
408
+  (0.2ms) COMMIT
409
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
410
+  (0.1ms) BEGIN
411
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 10:53:23.868743"], ["updated_at", "2019-09-30 10:53:23.868743"]]
412
+  (0.2ms) COMMIT
413
+  (116.1ms) DROP DATABASE IF EXISTS "dummy_test"
414
+  (236.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
415
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
416
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
417
+  (6.1ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
418
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
419
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
420
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
421
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
422
+  (1.2ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
423
+ FOREIGN KEY ("page_id")
424
+ REFERENCES "cm_page_builder_rails_pages" ("id")
425
+ 
426
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
427
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
428
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
429
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
430
+ (20190816103148),
431
+ (20190816105056);
432
+
433
+ 
434
+  (2.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)
435
+ 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]]
436
+  (0.1ms) BEGIN
437
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:02:42.525018"], ["updated_at", "2019-09-30 11:02:42.525018"]]
438
+  (0.2ms) COMMIT
439
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
440
+  (0.1ms) BEGIN
441
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:02:42.531009"], ["key", "environment"]]
442
+  (0.2ms) COMMIT
443
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
444
+  (0.1ms) BEGIN
445
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:02:42.535751"], ["updated_at", "2019-09-30 11:02:42.535751"]]
446
+  (0.2ms) COMMIT
447
+  (109.6ms) DROP DATABASE IF EXISTS "dummy_test"
448
+  (234.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
449
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
450
+  (0.2ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
451
+  (4.4ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
452
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
453
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
454
+  (2.3ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
455
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
456
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
457
+ FOREIGN KEY ("page_id")
458
+ REFERENCES "cm_page_builder_rails_pages" ("id")
459
+ 
460
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
461
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
462
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
463
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
464
+ (20190816103148),
465
+ (20190816105056);
466
+
467
+ 
468
+  (2.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)
469
+ 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]]
470
+  (0.1ms) BEGIN
471
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:03:12.539415"], ["updated_at", "2019-09-30 11:03:12.539415"]]
472
+  (0.2ms) COMMIT
473
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
474
+  (0.1ms) BEGIN
475
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:03:12.546019"], ["key", "environment"]]
476
+  (0.2ms) COMMIT
477
+ 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]]
478
+  (0.1ms) BEGIN
479
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:03:12.551600"], ["updated_at", "2019-09-30 11:03:12.551600"]]
480
+  (0.2ms) COMMIT
481
+  (109.6ms) DROP DATABASE IF EXISTS "dummy_test"
482
+  (235.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
483
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
484
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
485
+  (4.3ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
486
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
487
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
488
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
489
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
490
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
491
+ FOREIGN KEY ("page_id")
492
+ REFERENCES "cm_page_builder_rails_pages" ("id")
493
+ 
494
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
495
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
496
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
497
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
498
+ (20190816103148),
499
+ (20190816105056);
500
+
501
+ 
502
+  (2.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)
503
+ 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]]
504
+  (0.1ms) BEGIN
505
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:03:31.447130"], ["updated_at", "2019-09-30 11:03:31.447130"]]
506
+  (0.2ms) COMMIT
507
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
508
+  (0.1ms) BEGIN
509
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:03:31.452591"], ["key", "environment"]]
510
+  (0.2ms) COMMIT
511
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
512
+  (0.1ms) BEGIN
513
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:03:31.456913"], ["updated_at", "2019-09-30 11:03:31.456913"]]
514
+  (0.2ms) COMMIT
515
+  (111.9ms) DROP DATABASE IF EXISTS "dummy_test"
516
+  (240.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
517
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
518
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
519
+  (4.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
520
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
521
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
522
+  (2.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
523
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
524
+  (1.2ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
525
+ FOREIGN KEY ("page_id")
526
+ REFERENCES "cm_page_builder_rails_pages" ("id")
527
+ 
528
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
529
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
530
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
531
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
532
+ (20190816103148),
533
+ (20190816105056);
534
+
535
+ 
536
+  (1.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)
537
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
538
+  (0.1ms) BEGIN
539
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:05:15.590983"], ["updated_at", "2019-09-30 11:05:15.590983"]]
540
+  (0.2ms) COMMIT
541
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
542
+  (0.1ms) BEGIN
543
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:05:15.596199"], ["key", "environment"]]
544
+  (0.2ms) COMMIT
545
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
546
+  (0.1ms) BEGIN
547
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:05:15.600443"], ["updated_at", "2019-09-30 11:05:15.600443"]]
548
+  (0.2ms) COMMIT
549
+  (109.8ms) DROP DATABASE IF EXISTS "dummy_test"
550
+  (236.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
551
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
552
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
553
+  (4.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
554
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
555
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
556
+  (2.9ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
557
+  (1.1ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
558
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
559
+ FOREIGN KEY ("page_id")
560
+ REFERENCES "cm_page_builder_rails_pages" ("id")
561
+ 
562
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
563
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
564
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
565
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
566
+ (20190816103148),
567
+ (20190816105056);
568
+
569
+ 
570
+  (2.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)
571
+ 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]]
572
+  (0.1ms) BEGIN
573
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:05:39.690855"], ["updated_at", "2019-09-30 11:05:39.690855"]]
574
+  (0.2ms) COMMIT
575
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
576
+  (0.1ms) BEGIN
577
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:05:39.696810"], ["key", "environment"]]
578
+  (0.2ms) COMMIT
579
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
580
+  (0.1ms) BEGIN
581
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:05:39.701060"], ["updated_at", "2019-09-30 11:05:39.701060"]]
582
+  (0.2ms) COMMIT
583
+  (109.9ms) DROP DATABASE IF EXISTS "dummy_test"
584
+  (234.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
585
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
586
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
587
+  (4.6ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
588
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
589
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
590
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
591
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
592
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
593
+ FOREIGN KEY ("page_id")
594
+ REFERENCES "cm_page_builder_rails_pages" ("id")
595
+ 
596
+  (5.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
597
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
598
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
599
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
600
+ (20190816103148),
601
+ (20190816105056);
602
+
603
+ 
604
+  (2.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)
605
+ 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]]
606
+  (0.1ms) BEGIN
607
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:06:02.383619"], ["updated_at", "2019-09-30 11:06:02.383619"]]
608
+  (0.2ms) COMMIT
609
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
610
+  (0.1ms) BEGIN
611
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:06:02.388908"], ["key", "environment"]]
612
+  (0.2ms) COMMIT
613
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
614
+  (0.1ms) BEGIN
615
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:06:02.393358"], ["updated_at", "2019-09-30 11:06:02.393358"]]
616
+  (0.2ms) COMMIT
617
+  (112.2ms) DROP DATABASE IF EXISTS "dummy_test"
618
+  (240.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
619
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
620
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
621
+  (5.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
622
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
623
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
624
+  (3.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
625
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
626
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
627
+ FOREIGN KEY ("page_id")
628
+ REFERENCES "cm_page_builder_rails_pages" ("id")
629
+ 
630
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
631
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
632
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
633
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
634
+ (20190816103148),
635
+ (20190816105056);
636
+
637
+ 
638
+  (2.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)
639
+ 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]]
640
+  (0.1ms) BEGIN
641
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:07:10.690381"], ["updated_at", "2019-09-30 11:07:10.690381"]]
642
+  (0.2ms) COMMIT
643
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
644
+  (0.1ms) BEGIN
645
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:07:10.696626"], ["key", "environment"]]
646
+  (0.2ms) COMMIT
647
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
648
+  (0.1ms) BEGIN
649
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:07:10.701486"], ["updated_at", "2019-09-30 11:07:10.701486"]]
650
+  (0.2ms) COMMIT
651
+  (111.7ms) DROP DATABASE IF EXISTS "dummy_test"
652
+  (241.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
653
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
654
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
655
+  (4.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
656
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
657
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
658
+  (2.3ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
659
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
660
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
661
+ FOREIGN KEY ("page_id")
662
+ REFERENCES "cm_page_builder_rails_pages" ("id")
663
+ 
664
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
665
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
666
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
667
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
668
+ (20190816103148),
669
+ (20190816105056);
670
+
671
+ 
672
+  (2.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)
673
+ 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]]
674
+  (0.1ms) BEGIN
675
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:07:23.736128"], ["updated_at", "2019-09-30 11:07:23.736128"]]
676
+  (0.2ms) COMMIT
677
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
678
+  (0.1ms) BEGIN
679
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:07:23.743855"], ["key", "environment"]]
680
+  (0.2ms) COMMIT
681
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
682
+  (0.1ms) BEGIN
683
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:07:23.750439"], ["updated_at", "2019-09-30 11:07:23.750439"]]
684
+  (0.2ms) COMMIT
685
+  (109.0ms) DROP DATABASE IF EXISTS "dummy_test"
686
+  (235.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
687
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
688
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
689
+  (4.4ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
690
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
691
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
692
+  (3.0ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
693
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
694
+  (1.2ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
695
+ FOREIGN KEY ("page_id")
696
+ REFERENCES "cm_page_builder_rails_pages" ("id")
697
+ 
698
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
699
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
700
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
701
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
702
+ (20190816103148),
703
+ (20190816105056);
704
+
705
+ 
706
+  (2.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)
707
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
708
+  (0.1ms) BEGIN
709
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:08:39.080092"], ["updated_at", "2019-09-30 11:08:39.080092"]]
710
+  (0.2ms) COMMIT
711
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
712
+  (0.1ms) BEGIN
713
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:08:39.087700"], ["key", "environment"]]
714
+  (0.2ms) COMMIT
715
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
716
+  (0.1ms) BEGIN
717
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:08:39.094219"], ["updated_at", "2019-09-30 11:08:39.094219"]]
718
+  (0.2ms) COMMIT
719
+  (109.5ms) DROP DATABASE IF EXISTS "dummy_test"
720
+  (246.9ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
721
+ SQL (2.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
722
+  (0.2ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
723
+  (8.9ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
724
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
725
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
726
+  (2.8ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
727
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
728
+  (1.9ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
729
+ FOREIGN KEY ("page_id")
730
+ REFERENCES "cm_page_builder_rails_pages" ("id")
731
+ 
732
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
733
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
734
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
735
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES
736
+ (20190816103148),
737
+ (20190816105056);
738
+
739
+ 
740
+  (2.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)
741
+ 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]]
742
+  (0.1ms) BEGIN
743
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:09:22.504642"], ["updated_at", "2019-09-30 11:09:22.504642"]]
744
+  (0.2ms) COMMIT
745
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
746
+  (0.1ms) BEGIN
747
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:09:22.510397"], ["key", "environment"]]
748
+  (0.2ms) COMMIT
749
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
750
+  (0.1ms) BEGIN
751
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:09:22.515698"], ["updated_at", "2019-09-30 11:09:22.515698"]]
752
+  (0.2ms) COMMIT
753
+  (109.6ms) DROP DATABASE IF EXISTS "dummy_test"
754
+  (234.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
755
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
756
+  (0.2ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
757
+  (4.6ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
758
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
759
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
760
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
761
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
762
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
763
+ FOREIGN KEY ("page_id")
764
+ REFERENCES "cm_page_builder_rails_pages" ("id")
765
+ 
766
+  (5.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
767
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
768
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190903110322)
769
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
770
+ (20190816103148),
771
+ (20190816105056);
772
+
773
+ 
774
+  (2.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)
775
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
776
+  (0.1ms) BEGIN
777
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:15:03.688118"], ["updated_at", "2019-09-30 11:15:03.688118"]]
778
+  (0.2ms) COMMIT
779
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
780
+  (0.1ms) BEGIN
781
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:15:03.693357"], ["key", "environment"]]
782
+  (0.2ms) COMMIT
783
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
784
+  (0.1ms) BEGIN
785
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "258a2c11f714610683b4f65f678c2a544860bc57"], ["created_at", "2019-09-30 11:15:03.697552"], ["updated_at", "2019-09-30 11:15:03.697552"]]
786
+  (0.2ms) COMMIT
787
+  (108.7ms) DROP DATABASE IF EXISTS "dummy_test"
788
+  (238.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
789
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
790
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
791
+  (4.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
792
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
793
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
794
+  (2.4ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
795
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
796
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
797
+  (2.2ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
798
+  (1.4ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
799
+ FOREIGN KEY ("page_id")
800
+ REFERENCES "cm_page_builder_rails_pages" ("id")
801
+ 
802
+  (4.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
803
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
804
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190930111315)
805
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
806
+ (20190816103148),
807
+ (20190816105056),
808
+ (20190903110322);
809
+
810
+ 
811
+  (2.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)
812
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
813
+  (0.1ms) BEGIN
814
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:15:33.885230"], ["updated_at", "2019-09-30 11:15:33.885230"]]
815
+  (0.2ms) COMMIT
816
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
817
+  (0.1ms) BEGIN
818
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:15:33.892891"], ["key", "environment"]]
819
+  (0.2ms) COMMIT
820
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
821
+  (0.1ms) BEGIN
822
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "a831e071e9c25be206ce6809599e4ea9c2d7109c"], ["created_at", "2019-09-30 11:15:33.899705"], ["updated_at", "2019-09-30 11:15:33.899705"]]
823
+  (0.2ms) COMMIT
824
+  (109.2ms) DROP DATABASE IF EXISTS "dummy_test"
825
+  (235.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
826
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
827
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
828
+  (4.2ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
829
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
830
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
831
+  (2.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
832
+  (1.0ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
833
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
834
+  (2.1ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
835
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
836
+ FOREIGN KEY ("page_id")
837
+ REFERENCES "cm_page_builder_rails_pages" ("id")
838
+ 
839
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
840
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
841
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES (20190930111315)
842
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
843
+ (20190816103148),
844
+ (20190816105056),
845
+ (20190903110322);
846
+
847
+ 
848
+  (2.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)
849
+ 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]]
850
+  (0.1ms) BEGIN
851
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:16:02.495809"], ["updated_at", "2019-09-30 11:16:02.495809"]]
852
+  (0.2ms) COMMIT
853
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
854
+  (0.1ms) BEGIN
855
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:16:02.501522"], ["key", "environment"]]
856
+  (0.2ms) COMMIT
857
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
858
+  (0.1ms) BEGIN
859
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "a831e071e9c25be206ce6809599e4ea9c2d7109c"], ["created_at", "2019-09-30 11:16:02.506069"], ["updated_at", "2019-09-30 11:16:02.506069"]]
860
+  (0.2ms) COMMIT
861
+  (111.9ms) DROP DATABASE IF EXISTS "dummy_test"
862
+  (242.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
863
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
864
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
865
+  (4.3ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
866
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
867
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
868
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
869
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
870
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
871
+  (3.0ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
872
+  (1.8ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
873
+ FOREIGN KEY ("page_id")
874
+ REFERENCES "cm_page_builder_rails_pages" ("id")
875
+ 
876
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
877
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
878
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190930111315)
879
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
880
+ (20190816103148),
881
+ (20190816105056),
882
+ (20190903110322);
883
+
884
+ 
885
+  (2.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)
886
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
887
+  (0.1ms) BEGIN
888
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 11:16:19.505150"], ["updated_at", "2019-09-30 11:16:19.505150"]]
889
+  (0.2ms) COMMIT
890
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
891
+  (0.1ms) BEGIN
892
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 11:16:19.510645"], ["key", "environment"]]
893
+  (0.2ms) COMMIT
894
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
895
+  (0.1ms) BEGIN
896
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "a831e071e9c25be206ce6809599e4ea9c2d7109c"], ["created_at", "2019-09-30 11:16:19.514946"], ["updated_at", "2019-09-30 11:16:19.514946"]]
897
+  (0.2ms) COMMIT
898
+  (109.6ms) DROP DATABASE IF EXISTS "dummy_test"
899
+  (237.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
900
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
901
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
902
+  (5.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
903
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
904
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
905
+  (3.0ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
906
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
907
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
908
+  (2.9ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
909
+  (1.8ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
910
+ FOREIGN KEY ("page_id")
911
+ REFERENCES "cm_page_builder_rails_pages" ("id")
912
+ 
913
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
914
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
915
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190930111315)
916
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES
917
+ (20190816103148),
918
+ (20190816105056),
919
+ (20190903110322);
920
+
921
+ 
922
+  (1.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)
923
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
924
+  (0.1ms) BEGIN
925
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 12:06:09.709727"], ["updated_at", "2019-09-30 12:06:09.709727"]]
926
+  (0.2ms) COMMIT
927
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
928
+  (0.1ms) BEGIN
929
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:06:09.715373"], ["key", "environment"]]
930
+  (0.2ms) COMMIT
931
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
932
+  (0.1ms) BEGIN
933
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "a831e071e9c25be206ce6809599e4ea9c2d7109c"], ["created_at", "2019-09-30 12:06:09.722136"], ["updated_at", "2019-09-30 12:06:09.722136"]]
934
+  (0.2ms) COMMIT
935
+  (108.7ms) DROP DATABASE IF EXISTS "dummy_test"
936
+  (236.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
937
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
938
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
939
+  (5.7ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
940
+  (1.0ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
941
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
942
+  (2.9ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
943
+  (1.2ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
944
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
945
+  (2.8ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
946
+  (1.3ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
947
+ FOREIGN KEY ("page_id")
948
+ REFERENCES "cm_page_builder_rails_pages" ("id")
949
+ 
950
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
951
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
952
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES (20190930111315)
953
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES
954
+ (20190816103148),
955
+ (20190816105056),
956
+ (20190903110322);
957
+
958
+ 
959
+  (2.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)
960
+ 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]]
961
+  (0.1ms) BEGIN
962
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 12:06:33.440425"], ["updated_at", "2019-09-30 12:06:33.440425"]]
963
+  (0.2ms) COMMIT
964
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
965
+  (0.1ms) BEGIN
966
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:06:33.445959"], ["key", "environment"]]
967
+  (0.2ms) COMMIT
968
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
969
+  (0.1ms) BEGIN
970
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "a831e071e9c25be206ce6809599e4ea9c2d7109c"], ["created_at", "2019-09-30 12:06:33.450659"], ["updated_at", "2019-09-30 12:06:33.450659"]]
971
+  (0.2ms) COMMIT
972
+  (109.8ms) DROP DATABASE IF EXISTS "dummy_test"
973
+  (235.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
974
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
975
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments" CASCADE
976
+  (4.5ms) CREATE TABLE "active_storage_attachments" ("id" bigserial primary key, "name" character varying NOT NULL, "record_type" character varying NOT NULL, "record_id" bigint NOT NULL, "blob_id" bigint NOT NULL, "created_at" timestamp NOT NULL)
977
+  (1.0ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
978
+  (1.0ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
979
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_blobs" CASCADE
980
+  (2.1ms) CREATE TABLE "active_storage_blobs" ("id" bigserial primary key, "key" character varying NOT NULL, "filename" character varying NOT NULL, "content_type" character varying, "metadata" text, "byte_size" bigint NOT NULL, "checksum" character varying NOT NULL, "created_at" timestamp NOT NULL)
981
+  (0.9ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
982
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
983
+  (3.0ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
984
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
985
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
986
+  (2.8ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
987
+  (0.9ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
988
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
989
+  (2.3ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
990
+  (1.3ms) ALTER TABLE "active_storage_attachments" ADD CONSTRAINT "fk_rails_c3b3935057"
991
+ FOREIGN KEY ("blob_id")
992
+ REFERENCES "active_storage_blobs" ("id")
993
+ 
994
+  (0.9ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
995
+ FOREIGN KEY ("page_id")
996
+ REFERENCES "cm_page_builder_rails_pages" ("id")
997
+ 
998
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
999
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1000
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES (20190930120755)
1001
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
1002
+ (20190816103148),
1003
+ (20190816105056),
1004
+ (20190903110322),
1005
+ (20190930111315);
1006
+
1007
+ 
1008
+  (2.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)
1009
+ 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]]
1010
+  (0.1ms) BEGIN
1011
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 12:08:12.854376"], ["updated_at", "2019-09-30 12:08:12.854376"]]
1012
+  (0.2ms) COMMIT
1013
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1014
+  (0.1ms) BEGIN
1015
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:08:12.862058"], ["key", "environment"]]
1016
+  (0.2ms) COMMIT
1017
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1018
+  (0.1ms) BEGIN
1019
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c207cb589938ec7a1aa8a58d8e0fb0a7a557fb2c"], ["created_at", "2019-09-30 12:08:12.868642"], ["updated_at", "2019-09-30 12:08:12.868642"]]
1020
+  (0.2ms) COMMIT
1021
+  (109.7ms) DROP DATABASE IF EXISTS "dummy_test"
1022
+  (237.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1023
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1024
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments" CASCADE
1025
+  (4.5ms) CREATE TABLE "active_storage_attachments" ("id" bigserial primary key, "name" character varying NOT NULL, "record_type" character varying NOT NULL, "record_id" bigint NOT NULL, "blob_id" bigint NOT NULL, "created_at" timestamp NOT NULL)
1026
+  (0.8ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
1027
+  (1.0ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
1028
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_blobs" CASCADE
1029
+  (2.4ms) CREATE TABLE "active_storage_blobs" ("id" bigserial primary key, "key" character varying NOT NULL, "filename" character varying NOT NULL, "content_type" character varying, "metadata" text, "byte_size" bigint NOT NULL, "checksum" character varying NOT NULL, "created_at" timestamp NOT NULL)
1030
+  (0.9ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
1031
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
1032
+  (2.5ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1033
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
1034
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
1035
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1036
+  (0.8ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
1037
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
1038
+  (2.5ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1039
+  (1.5ms) ALTER TABLE "active_storage_attachments" ADD CONSTRAINT "fk_rails_c3b3935057"
1040
+ FOREIGN KEY ("blob_id")
1041
+ REFERENCES "active_storage_blobs" ("id")
1042
+ 
1043
+  (1.1ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
1044
+ FOREIGN KEY ("page_id")
1045
+ REFERENCES "cm_page_builder_rails_pages" ("id")
1046
+ 
1047
+  (4.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1048
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1049
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190930120755)
1050
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
1051
+ (20190816103148),
1052
+ (20190816105056),
1053
+ (20190903110322),
1054
+ (20190930111315);
1055
+
1056
+ 
1057
+  (2.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)
1058
+ 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]]
1059
+  (0.1ms) BEGIN
1060
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 12:08:50.399617"], ["updated_at", "2019-09-30 12:08:50.399617"]]
1061
+  (1.1ms) COMMIT
1062
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1063
+  (0.1ms) BEGIN
1064
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:08:50.405876"], ["key", "environment"]]
1065
+  (0.2ms) COMMIT
1066
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1067
+  (0.1ms) BEGIN
1068
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c207cb589938ec7a1aa8a58d8e0fb0a7a557fb2c"], ["created_at", "2019-09-30 12:08:50.409949"], ["updated_at", "2019-09-30 12:08:50.409949"]]
1069
+  (0.2ms) COMMIT
1070
+  (109.1ms) DROP DATABASE IF EXISTS "dummy_test"
1071
+  (234.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1072
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1073
+  (0.2ms) DROP TABLE IF EXISTS "active_storage_attachments" CASCADE
1074
+  (4.5ms) CREATE TABLE "active_storage_attachments" ("id" bigserial primary key, "name" character varying NOT NULL, "record_type" character varying NOT NULL, "record_id" bigint NOT NULL, "blob_id" bigint NOT NULL, "created_at" timestamp NOT NULL)
1075
+  (1.1ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
1076
+  (1.0ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
1077
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_blobs" CASCADE
1078
+  (2.2ms) CREATE TABLE "active_storage_blobs" ("id" bigserial primary key, "key" character varying NOT NULL, "filename" character varying NOT NULL, "content_type" character varying, "metadata" text, "byte_size" bigint NOT NULL, "checksum" character varying NOT NULL, "created_at" timestamp NOT NULL)
1079
+  (0.7ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
1080
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
1081
+  (2.1ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1082
+  (0.8ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
1083
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
1084
+  (2.2ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1085
+  (0.8ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
1086
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
1087
+  (2.3ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1088
+  (1.5ms) ALTER TABLE "active_storage_attachments" ADD CONSTRAINT "fk_rails_c3b3935057"
1089
+ FOREIGN KEY ("blob_id")
1090
+ REFERENCES "active_storage_blobs" ("id")
1091
+ 
1092
+  (1.1ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
1093
+ FOREIGN KEY ("page_id")
1094
+ REFERENCES "cm_page_builder_rails_pages" ("id")
1095
+ 
1096
+  (4.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1097
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1098
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190930120755)
1099
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES
1100
+ (20190816103148),
1101
+ (20190816105056),
1102
+ (20190903110322),
1103
+ (20190930111315);
1104
+
1105
+ 
1106
+  (2.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)
1107
+ 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]]
1108
+  (0.1ms) BEGIN
1109
+ 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", "2019-09-30 12:09:23.790513"], ["updated_at", "2019-09-30 12:09:23.790513"]]
1110
+  (0.2ms) COMMIT
1111
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1112
+  (0.1ms) BEGIN
1113
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:09:23.796503"], ["key", "environment"]]
1114
+  (1.7ms) COMMIT
1115
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1116
+  (0.1ms) BEGIN
1117
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c207cb589938ec7a1aa8a58d8e0fb0a7a557fb2c"], ["created_at", "2019-09-30 12:09:23.802580"], ["updated_at", "2019-09-30 12:09:23.802580"]]
1118
+  (0.2ms) COMMIT
1119
+  (109.1ms) DROP DATABASE IF EXISTS "dummy_test"
1120
+  (235.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
1121
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1122
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments" CASCADE
1123
+  (4.5ms) CREATE TABLE "active_storage_attachments" ("id" bigserial primary key, "name" character varying NOT NULL, "record_type" character varying NOT NULL, "record_id" bigint NOT NULL, "blob_id" bigint NOT NULL, "created_at" timestamp NOT NULL)
1124
+  (0.8ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
1125
+  (1.0ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
1126
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_blobs" CASCADE
1127
+  (2.2ms) CREATE TABLE "active_storage_blobs" ("id" bigserial primary key, "key" character varying NOT NULL, "filename" character varying NOT NULL, "content_type" character varying, "metadata" text, "byte_size" bigint NOT NULL, "checksum" character varying NOT NULL, "created_at" timestamp NOT NULL)
1128
+  (0.8ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
1129
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_page_components" CASCADE
1130
+  (2.3ms) CREATE TABLE "cm_page_builder_rails_page_components" ("id" bigserial primary key, "uuid" character varying NOT NULL, "page_id" bigint NOT NULL, "content" character varying, "position" integer, "component_type" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1131
+  (0.9ms) CREATE INDEX "index_cm_page_builder_rails_page_components_on_page_id" ON "cm_page_builder_rails_page_components" ("page_id")
1132
+  (0.1ms) DROP TABLE IF EXISTS "cm_page_builder_rails_pages" CASCADE
1133
+  (2.1ms) CREATE TABLE "cm_page_builder_rails_pages" ("id" bigserial primary key, "container_type" character varying NOT NULL, "container_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1134
+  (0.8ms) CREATE INDEX "container_composite_index" ON "cm_page_builder_rails_pages" ("container_type", "container_id")
1135
+  (0.1ms) DROP TABLE IF EXISTS "test_containers" CASCADE
1136
+  (2.3ms) CREATE TABLE "test_containers" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
1137
+  (1.3ms) ALTER TABLE "active_storage_attachments" ADD CONSTRAINT "fk_rails_c3b3935057"
1138
+ FOREIGN KEY ("blob_id")
1139
+ REFERENCES "active_storage_blobs" ("id")
1140
+ 
1141
+  (1.0ms) ALTER TABLE "cm_page_builder_rails_page_components" ADD CONSTRAINT "fk_rails_7fd23c6ccd"
1142
+ FOREIGN KEY ("page_id")
1143
+ REFERENCES "cm_page_builder_rails_pages" ("id")
1144
+ 
1145
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
1146
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1147
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190930120755)
1148
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES
1149
+ (20190816103148),
1150
+ (20190816105056),
1151
+ (20190903110322),
1152
+ (20190930111315);
1153
+
1154
+ 
1155
+  (2.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)
1156
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1157
+  (0.1ms) BEGIN
1158
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2019-09-30 12:10:55.843496"], ["updated_at", "2019-09-30 12:10:55.843496"]]
1159
+  (0.2ms) COMMIT
1160
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
1161
+  (0.1ms) BEGIN
1162
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2019-09-30 12:10:55.848984"], ["key", "environment"]]
1163
+  (0.2ms) COMMIT
1164
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
1165
+  (0.1ms) BEGIN
1166
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c207cb589938ec7a1aa8a58d8e0fb0a7a557fb2c"], ["created_at", "2019-09-30 12:10:55.853493"], ["updated_at", "2019-09-30 12:10:55.853493"]]
1167
+  (0.2ms) COMMIT