cmor_carousels 0.0.15.pre → 0.0.17.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62133a3cc3eb3697af2b2348191415b593ee65e5a98b15d21e175a815d7af9dc
4
- data.tar.gz: 1c0b6e2803d0c78449705265e5e1d524b5620765ab994fd6f988c1b92636e752
3
+ metadata.gz: dab8ac31a7a3084d9a85d0529ae0ea78c4cf004bcf50e940ccfc8a8c1616cd4a
4
+ data.tar.gz: 5888e89176ff2b4d4882fd570fecbe78f396611c87ae9a740899943122539042
5
5
  SHA512:
6
- metadata.gz: be6ef1c01c97d3142d36fecc3a6bb28a399bad32c473853ca96e253d74778c93eb103eb01ea9c6ff7d3b2d3d87440f9eb7d6f785d2240d5c64ff1e0a3bc63373
7
- data.tar.gz: 39f5817c5f91f8a2de8747923ed594b04eb694148362d60b434bb1dcf1a6835b8efdfdbf562a2df144fd322439a5289f5eab7288b5bbad938d81e0fe1d829057
6
+ metadata.gz: b71b30e2c5ec6ccdb043d6d61b4f5ffda4f9033b974134187b5cb963912b7468b72fa34d32f03f3d973194b5736f984a5c2afa0368b01a339f9ed3131051b7ae
7
+ data.tar.gz: 82c7bc026f936feebda20efd7009b61106bdcdc9d0efbd971d8724d146519654878087ee707850d0e23880a603db728bfd41c8995fee0292027ce7820a2a6f13
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cmor_carousels
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15.pre
4
+ version: 0.0.17.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Vasquez Angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-28 00:00:00.000000000 Z
11
+ date: 2019-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.0.15.pre
33
+ version: 0.0.17.pre
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.0.15.pre
40
+ version: 0.0.17.pre
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: cmor_core_frontend
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 0.0.15.pre
47
+ version: 0.0.17.pre
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 0.0.15.pre
54
+ version: 0.0.17.pre
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: sqlite3
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -426,8 +426,6 @@ files:
426
426
  - spec/dummy/db/migrate/20190612144756_create_cmor_carousels_item_details.cmor_carousels.rb
427
427
  - spec/dummy/db/schema.rb
428
428
  - spec/dummy/db/test.sqlite3
429
- - spec/dummy/log/development.log
430
- - spec/dummy/log/test.log
431
429
  - spec/dummy/package.json
432
430
  - spec/dummy/public/404.html
433
431
  - spec/dummy/public/422.html
@@ -1,122 +0,0 @@
1
-  (0.2ms) SELECT sqlite_version(*)
2
- ↳ bin/rails:4
3
-  (11.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
- ↳ bin/rails:4
5
-  (4.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
- ↳ bin/rails:4
7
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
- ↳ bin/rails:4
9
- Migrating to CreateActiveStorageTables (20190612144737)
10
-  (0.2ms) begin transaction
11
- ↳ bin/rails:4
12
-  (0.6ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
- ↳ db/migrate/20190612144737_create_active_storage_tables.active_storage.rb:4
14
-  (0.5ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
15
- ↳ db/migrate/20190612144737_create_active_storage_tables.active_storage.rb:4
16
-  (0.5ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
17
- FOREIGN KEY ("blob_id")
18
- REFERENCES "active_storage_blobs" ("id")
19
- )
20
- ↳ db/migrate/20190612144737_create_active_storage_tables.active_storage.rb:16
21
-  (0.1ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
22
- ↳ db/migrate/20190612144737_create_active_storage_tables.active_storage.rb:16
23
-  (0.2ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
24
- ↳ db/migrate/20190612144737_create_active_storage_tables.active_storage.rb:16
25
- ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612144737"]]
26
- ↳ bin/rails:4
27
-  (6.8ms) commit transaction
28
- ↳ bin/rails:4
29
- Migrating to CreateCmorCarouselsCarousels (20190612144755)
30
-  (0.1ms) begin transaction
31
- ↳ bin/rails:4
32
-  (0.7ms) CREATE TABLE "cmor_carousels_carousels" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "identifier" varchar, "variant_options" varchar, "created_at" datetime, "updated_at" datetime)
33
- ↳ db/migrate/20190612144755_create_cmor_carousels_carousels.cmor_carousels.rb:4
34
- ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612144755"]]
35
- ↳ bin/rails:4
36
-  (10.1ms) commit transaction
37
- ↳ bin/rails:4
38
- Migrating to CreateCmorCarouselsItemDetails (20190612144756)
39
-  (0.3ms) begin transaction
40
- ↳ bin/rails:4
41
-  (1.3ms) CREATE TABLE "cmor_carousels_item_details" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "carousel_id" integer, "asset_id" integer, "url" varchar, "description" text, "position" integer, "published_at" datetime, "created_at" datetime, "updated_at" datetime)
42
- ↳ db/migrate/20190612144756_create_cmor_carousels_item_details.cmor_carousels.rb:4
43
- ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190612144756"]]
44
- ↳ bin/rails:4
45
-  (6.4ms) commit transaction
46
- ↳ bin/rails:4
47
- ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
48
- ↳ bin/rails:4
49
-  (0.3ms) begin transaction
50
- ↳ bin/rails:4
51
- ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-06-12 14:47:55.981160"], ["updated_at", "2019-06-12 14:47:55.981160"]]
52
- ↳ bin/rails:4
53
-  (13.6ms) commit transaction
54
- ↳ bin/rails:4
55
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
56
- ↳ bin/rails:4
57
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
- ↳ bin/rails:4
59
-  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
60
- ↳ bin/rails:4
61
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
- ↳ bin/rails:4
63
-  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
64
- ↳ bin/rails:4
65
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
- ↳ bin/rails:4
67
-  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
68
- ↳ bin/rails:4
69
-  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments"
70
- ↳ db/schema.rb:15
71
-  (0.2ms) SELECT sqlite_version(*)
72
- ↳ db/schema.rb:15
73
-  (12.6ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
74
- ↳ db/schema.rb:15
75
-  (8.0ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
76
- ↳ db/schema.rb:15
77
-  (5.8ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
78
- ↳ db/schema.rb:15
79
-  (0.3ms) DROP TABLE IF EXISTS "active_storage_blobs"
80
- ↳ db/schema.rb:25
81
-  (5.3ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
82
- ↳ db/schema.rb:25
83
-  (5.8ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
84
- ↳ db/schema.rb:25
85
-  (0.2ms) DROP TABLE IF EXISTS "cmor_carousels_carousels"
86
- ↳ db/schema.rb:36
87
-  (5.1ms) CREATE TABLE "cmor_carousels_carousels" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "identifier" varchar, "variant_options" varchar, "created_at" datetime, "updated_at" datetime)
88
- ↳ db/schema.rb:36
89
-  (0.2ms) DROP TABLE IF EXISTS "cmor_carousels_item_details"
90
- ↳ db/schema.rb:44
91
-  (4.1ms) CREATE TABLE "cmor_carousels_item_details" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "carousel_id" integer, "asset_id" integer, "url" varchar, "description" text, "position" integer, "published_at" datetime, "created_at" datetime, "updated_at" datetime)
92
- ↳ db/schema.rb:44
93
-  (4.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
94
- ↳ db/schema.rb:13
95
-  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
96
- ↳ db/schema.rb:13
97
-  (5.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190612144756)
98
- ↳ db/schema.rb:13
99
-  (5.0ms) INSERT INTO "schema_migrations" (version) VALUES
100
- (20190612144737),
101
- (20190612144755);
102
-
103
- 
104
- ↳ db/schema.rb:13
105
-  (4.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
106
- ↳ db/schema.rb:13
107
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
108
- ↳ db/schema.rb:13
109
-  (0.1ms) begin transaction
110
- ↳ db/schema.rb:13
111
- ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-06-12 14:47:56.144100"], ["updated_at", "2019-06-12 14:47:56.144100"]]
112
- ↳ db/schema.rb:13
113
-  (4.6ms) commit transaction
114
- ↳ db/schema.rb:13
115
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
116
- ↳ bin/rails:4
117
-  (0.1ms) begin transaction
118
- ↳ bin/rails:4
119
- ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-06-12 14:47:56.156466"], ["key", "environment"]]
120
- ↳ bin/rails:4
121
-  (5.5ms) commit transaction
122
- ↳ bin/rails:4
@@ -1,420 +0,0 @@
1
-  (0.1ms) begin transaction
2
-  (1.6ms) SAVEPOINT active_record_1
3
- Cmor::Carousels::Carousel Exists (1.8ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_1"], ["LIMIT", 1]]
4
- Cmor::Carousels::Carousel Create (0.3ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_1"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:03.390457"], ["updated_at", "2019-06-12 14:48:03.390457"]]
5
-  (0.1ms) RELEASE SAVEPOINT active_record_1
6
-  Disk Storage (2.0ms) Uploaded file to key: 4W4u3R29hTQyn1SXJs8HABRs (checksum: PQckBuk+cVT3lBy73cnuAQ==)
7
-  (0.1ms) SAVEPOINT active_record_1
8
- ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "4W4u3R29hTQyn1SXJs8HABRs"], ["filename", "original.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:03.509430"]]
9
-  (0.1ms) RELEASE SAVEPOINT active_record_1
10
-  (0.1ms) SAVEPOINT active_record_1
11
- ActiveStorage::Attachment Create (0.3ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:03.536080"]]
12
- Cmor::Carousels::Carousel Update (0.1ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:03.537148"], ["id", 1]]
13
-  (0.1ms) RELEASE SAVEPOINT active_record_1
14
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: cc0445e6-b187-44d4-9676-518ed60293d2) to Async(default) with arguments: #<GlobalID:0x00000003efba98 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
15
- ActiveStorage::Blob Load (1.6ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2] Performing ActiveStorage::AnalyzeJob (Job ID: cc0445e6-b187-44d4-9676-518ed60293d2) from Async(default) with arguments: #<GlobalID:0x00000003f42240 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
17
-  (0.2ms) SAVEPOINT active_record_1
18
- Cmor::Carousels::ItemDetail Load (0.3ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
19
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_1"], ["id", 1], ["LIMIT", 1]]
20
- Cmor::Carousels::ItemDetail Load (0.3ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
21
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2]  Disk Storage (0.3ms) Downloaded file from key: 4W4u3R29hTQyn1SXJs8HABRs
22
- Cmor::Carousels::ItemDetail Create (0.3ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["published_at", "2019-06-12 14:48:03.626962"], ["created_at", "2019-06-12 14:48:03.640120"], ["updated_at", "2019-06-12 14:48:03.640120"]]
23
-  (0.1ms) RELEASE SAVEPOINT active_record_1
24
-  Disk Storage (0.6ms) Uploaded file to key: sPYW3g59NXeZL8oGhWgfCwBs (checksum: PQckBuk+cVT3lBy73cnuAQ==)
25
-  (0.0ms) SAVEPOINT active_record_1
26
- ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "sPYW3g59NXeZL8oGhWgfCwBs"], ["filename", "appended.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:03.700270"]]
27
-  (0.1ms) RELEASE SAVEPOINT active_record_1
28
-  (0.8ms) SAVEPOINT active_record_1
29
- ActiveStorage::Attachment Create (0.3ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 2], ["created_at", "2019-06-12 14:48:03.707583"]]
30
- Cmor::Carousels::Carousel Update (0.2ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:03.709227"], ["id", 1]]
31
-  (0.1ms) RELEASE SAVEPOINT active_record_1
32
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e) to Async(default) with arguments: #<GlobalID:0x000000050ab540 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
33
-  (0.1ms) SAVEPOINT active_record_1
34
- Cmor::Carousels::ItemDetail Load (0.2ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
35
- ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
36
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_1"], ["id", 1], ["LIMIT", 1]]
37
- Cmor::Carousels::ItemDetail Load (0.1ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
38
- Cmor::Carousels::ItemDetail Create (0.1ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 2], ["position", 2], ["published_at", "2019-06-12 14:48:03.716445"], ["created_at", "2019-06-12 14:48:03.720823"], ["updated_at", "2019-06-12 14:48:03.720823"]]
39
-  (0.1ms) RELEASE SAVEPOINT active_record_1
40
- ActiveStorage::Blob Load (17.3ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
41
- [ActiveJob] [ActiveStorage::AnalyzeJob] [7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e] Performing ActiveStorage::AnalyzeJob (Job ID: 7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e) from Async(default) with arguments: #<GlobalID:0x007fae0c35aec8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
42
- [ActiveJob] [ActiveStorage::AnalyzeJob] [7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e]  Disk Storage (6.2ms) Downloaded file from key: sPYW3g59NXeZL8oGhWgfCwBs
43
-  (12.2ms) SELECT COUNT(*) FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = ? AND "active_storage_attachments"."record_type" = ? AND "active_storage_attachments"."name" = ? [["record_id", 1], ["record_type", "Cmor::Carousels::Carousel"], ["name", "assets"]]
44
-  (2.2ms) rollback transaction
45
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2]  (0.1ms) begin transaction
46
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2]  (0.1ms) begin transaction
47
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2] ActiveStorage::Blob Update (0.7ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
48
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2]  (0.1ms) commit transaction
49
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2]  (0.1ms) commit transaction
50
- [ActiveJob] [ActiveStorage::AnalyzeJob] [cc0445e6-b187-44d4-9676-518ed60293d2] Performed ActiveStorage::AnalyzeJob (Job ID: cc0445e6-b187-44d4-9676-518ed60293d2) from Async(default) in 174.99ms
51
-  (0.1ms) begin transaction
52
-  (0.2ms) SAVEPOINT active_record_1
53
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_2"], ["LIMIT", 1]]
54
- Cmor::Carousels::Carousel Create (0.3ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_2"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:03.762561"], ["updated_at", "2019-06-12 14:48:03.762561"]]
55
-  (0.1ms) RELEASE SAVEPOINT active_record_1
56
-  Disk Storage (2.8ms) Uploaded file to key: UjEbQoPvCDEwrZDP84buyexq (checksum: PQckBuk+cVT3lBy73cnuAQ==)
57
-  (0.1ms) SAVEPOINT active_record_1
58
- ActiveStorage::Blob Create (0.5ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "UjEbQoPvCDEwrZDP84buyexq"], ["filename", "original.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:03.769171"]]
59
-  (0.1ms) RELEASE SAVEPOINT active_record_1
60
-  (0.1ms) SAVEPOINT active_record_1
61
- ActiveStorage::Attachment Create (0.5ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:03.776467"]]
62
- Cmor::Carousels::Carousel Update (0.6ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:03.778326"], ["id", 1]]
63
-  (0.0ms) RELEASE SAVEPOINT active_record_1
64
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 74ac4c7e-e411-4e21-8892-7a51908558ab) to Async(default) with arguments: #<GlobalID:0x000000044958a0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
65
-  (0.1ms) SAVEPOINT active_record_1
66
- Cmor::Carousels::ItemDetail Load (0.1ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
67
- Cmor::Carousels::Carousel Exists (0.1ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_2"], ["id", 1], ["LIMIT", 1]]
68
- Cmor::Carousels::ItemDetail Load (0.9ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
69
- Cmor::Carousels::ItemDetail Create (0.8ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["published_at", "2019-06-12 14:48:03.786303"], ["created_at", "2019-06-12 14:48:03.797688"], ["updated_at", "2019-06-12 14:48:03.797688"]]
70
-  (0.2ms) RELEASE SAVEPOINT active_record_1
71
- ActiveStorage::Blob Load (20.3ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72
- [ActiveJob] [ActiveStorage::AnalyzeJob] [74ac4c7e-e411-4e21-8892-7a51908558ab] Performing ActiveStorage::AnalyzeJob (Job ID: 74ac4c7e-e411-4e21-8892-7a51908558ab) from Async(default) with arguments: #<GlobalID:0x0000000433dd18 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
73
- [ActiveJob] [ActiveStorage::AnalyzeJob] [74ac4c7e-e411-4e21-8892-7a51908558ab]  Disk Storage (0.3ms) Downloaded file from key: UjEbQoPvCDEwrZDP84buyexq
74
- [ActiveJob] [ActiveStorage::AnalyzeJob] [7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e] ActiveStorage::Blob Update (27.6ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 2]]
75
- [ActiveJob] [ActiveStorage::AnalyzeJob] [7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e] Performed ActiveStorage::AnalyzeJob (Job ID: 7bf452b9-f6d4-4cc7-ae43-e4a1033fba4e) from Async(default) in 91.97ms
76
-  Disk Storage (5.5ms) Uploaded file to key: 8TbakPvfTYJbAqrJaorzHh8f (checksum: PQckBuk+cVT3lBy73cnuAQ==)
77
-  (0.1ms) SAVEPOINT active_record_1
78
- ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "8TbakPvfTYJbAqrJaorzHh8f"], ["filename", "appended.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:03.823766"]]
79
-  (0.1ms) RELEASE SAVEPOINT active_record_1
80
-  (0.3ms) SAVEPOINT active_record_1
81
- ActiveStorage::Attachment Create (0.3ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 2], ["created_at", "2019-06-12 14:48:03.831996"]]
82
- Cmor::Carousels::Carousel Update (0.4ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:03.833478"], ["id", 1]]
83
-  (0.1ms) RELEASE SAVEPOINT active_record_1
84
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: f16eb862-780b-4aad-a959-8d2b164a4f94) to Async(default) with arguments: #<GlobalID:0x000000041ae3f8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
85
- ActiveStorage::Blob Load (0.7ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
86
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94] Performing ActiveStorage::AnalyzeJob (Job ID: f16eb862-780b-4aad-a959-8d2b164a4f94) from Async(default) with arguments: #<GlobalID:0x0000000414f1c8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
87
-  (0.1ms) SAVEPOINT active_record_1
88
- Cmor::Carousels::ItemDetail Load (1.2ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
89
- ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
90
- Cmor::Carousels::Carousel Exists (1.4ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_2"], ["id", 1], ["LIMIT", 1]]
91
- Cmor::Carousels::ItemDetail Load (0.3ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
92
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94]  Disk Storage (6.3ms) Downloaded file from key: 8TbakPvfTYJbAqrJaorzHh8f
93
- Cmor::Carousels::ItemDetail Create (0.3ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 2], ["position", 2], ["published_at", "2019-06-12 14:48:03.850599"], ["created_at", "2019-06-12 14:48:03.860421"], ["updated_at", "2019-06-12 14:48:03.860421"]]
94
-  (0.1ms) RELEASE SAVEPOINT active_record_1
95
- [ActiveJob] [ActiveStorage::AnalyzeJob] [74ac4c7e-e411-4e21-8892-7a51908558ab] ActiveStorage::Blob Update (10.4ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
96
- [ActiveJob] [ActiveStorage::AnalyzeJob] [74ac4c7e-e411-4e21-8892-7a51908558ab] Performed ActiveStorage::AnalyzeJob (Job ID: 74ac4c7e-e411-4e21-8892-7a51908558ab) from Async(default) in 62.93ms
97
-  (3.4ms) SELECT COUNT(*) FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? [["carousel_id", 1]]
98
-  (0.4ms) rollback transaction
99
-  (0.2ms) begin transaction
100
-  (0.1ms) SAVEPOINT active_record_1
101
- Cmor::Carousels::Carousel Exists (0.3ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_3"], ["LIMIT", 1]]
102
- Cmor::Carousels::Carousel Create (0.6ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_3"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:03.905693"], ["updated_at", "2019-06-12 14:48:03.905693"]]
103
-  (0.6ms) RELEASE SAVEPOINT active_record_1
104
-  Disk Storage (2.4ms) Uploaded file to key: b1LcKGxfqcPXNGd81Rs5HyCr (checksum: PQckBuk+cVT3lBy73cnuAQ==)
105
-  (1.0ms) SAVEPOINT active_record_1
106
- ActiveStorage::Blob Create (0.3ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "b1LcKGxfqcPXNGd81Rs5HyCr"], ["filename", "original.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:03.919771"]]
107
-  (0.3ms) RELEASE SAVEPOINT active_record_1
108
-  (0.1ms) SAVEPOINT active_record_1
109
- ActiveStorage::Attachment Create (0.9ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:03.925893"]]
110
- Cmor::Carousels::Carousel Update (0.3ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:03.929740"], ["id", 1]]
111
-  (0.2ms) RELEASE SAVEPOINT active_record_1
112
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 8fc3452a-ea73-47aa-a6b5-f16343d1671d) to Async(default) with arguments: #<GlobalID:0x00000003003d60 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
113
- ActiveStorage::Blob Load (1.6ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
114
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d] Performing ActiveStorage::AnalyzeJob (Job ID: 8fc3452a-ea73-47aa-a6b5-f16343d1671d) from Async(default) with arguments: #<GlobalID:0x00000003055200 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
115
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d]  Disk Storage (0.2ms) Downloaded file from key: b1LcKGxfqcPXNGd81Rs5HyCr
116
-  (0.1ms) SAVEPOINT active_record_1
117
- Cmor::Carousels::ItemDetail Load (0.0ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
118
- Cmor::Carousels::Carousel Exists (0.3ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_3"], ["id", 1], ["LIMIT", 1]]
119
- Cmor::Carousels::ItemDetail Load (0.6ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
120
- Cmor::Carousels::ItemDetail Create (0.4ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["published_at", "2019-06-12 14:48:03.953808"], ["created_at", "2019-06-12 14:48:03.962200"], ["updated_at", "2019-06-12 14:48:03.962200"]]
121
-  (0.1ms) RELEASE SAVEPOINT active_record_1
122
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94]  (0.1ms) SAVEPOINT active_record_1
123
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94] ActiveStorage::Blob Update (0.0ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 2]]
124
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94]  (0.1ms) RELEASE SAVEPOINT active_record_1
125
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f16eb862-780b-4aad-a959-8d2b164a4f94] Performed ActiveStorage::AnalyzeJob (Job ID: f16eb862-780b-4aad-a959-8d2b164a4f94) from Async(default) in 238.73ms
126
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d]  (0.2ms) SAVEPOINT active_record_1
127
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
128
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d]  (0.1ms) RELEASE SAVEPOINT active_record_1
129
- [ActiveJob] [ActiveStorage::AnalyzeJob] [8fc3452a-ea73-47aa-a6b5-f16343d1671d] Performed ActiveStorage::AnalyzeJob (Job ID: 8fc3452a-ea73-47aa-a6b5-f16343d1671d) from Async(default) in 146.07ms
130
-  Disk Storage (4.8ms) Uploaded file to key: dEaDCBqXzaXB9FJbjNFLD54E (checksum: PQckBuk+cVT3lBy73cnuAQ==)
131
-  (0.1ms) SAVEPOINT active_record_1
132
- ActiveStorage::Blob Create (0.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "dEaDCBqXzaXB9FJbjNFLD54E"], ["filename", "appended.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.085564"]]
133
-  (0.1ms) RELEASE SAVEPOINT active_record_1
134
-  (0.2ms) SAVEPOINT active_record_1
135
- ActiveStorage::Attachment Create (0.4ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 2], ["created_at", "2019-06-12 14:48:04.091288"]]
136
- Cmor::Carousels::Carousel Update (0.2ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.093114"], ["id", 1]]
137
-  (0.1ms) RELEASE SAVEPOINT active_record_1
138
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: f3043f2e-100b-4b85-8b8e-87482565d2ff) to Async(default) with arguments: #<GlobalID:0x00000002d8bdf8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
139
-  (0.1ms) SAVEPOINT active_record_1
140
- Cmor::Carousels::ItemDetail Load (0.1ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? ORDER BY "cmor_carousels_item_details"."position" ASC [["carousel_id", 1]]
141
- ActiveStorage::Attachment Load (0.1ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
142
- Cmor::Carousels::Carousel Exists (0.1ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."id" != ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_3"], ["id", 1], ["LIMIT", 1]]
143
- Cmor::Carousels::ItemDetail Load (0.3ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
144
- Cmor::Carousels::ItemDetail Create (0.7ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 2], ["position", 2], ["published_at", "2019-06-12 14:48:04.098161"], ["created_at", "2019-06-12 14:48:04.104348"], ["updated_at", "2019-06-12 14:48:04.104348"]]
145
-  (0.1ms) RELEASE SAVEPOINT active_record_1
146
- ActiveStorage::Blob Load (7.2ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
147
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f3043f2e-100b-4b85-8b8e-87482565d2ff] Performing ActiveStorage::AnalyzeJob (Job ID: f3043f2e-100b-4b85-8b8e-87482565d2ff) from Async(default) with arguments: #<GlobalID:0x00000003014890 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/2>>
148
-  (0.2ms) rollback transaction
149
-  (0.2ms) begin transaction
150
-  (0.2ms) SAVEPOINT active_record_1
151
- Cmor::Carousels::Carousel Exists (0.3ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_4"], ["LIMIT", 1]]
152
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f3043f2e-100b-4b85-8b8e-87482565d2ff]  Disk Storage (14.6ms) Downloaded file from key: dEaDCBqXzaXB9FJbjNFLD54E
153
- Cmor::Carousels::Carousel Create (0.3ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_4"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.125352"], ["updated_at", "2019-06-12 14:48:04.125352"]]
154
-  (0.1ms) RELEASE SAVEPOINT active_record_1
155
-  Disk Storage (0.7ms) Uploaded file to key: kRPceucAHgwrWUSKPkxXrCJS (checksum: PQckBuk+cVT3lBy73cnuAQ==)
156
-  (0.1ms) SAVEPOINT active_record_1
157
- ActiveStorage::Blob Create (1.8ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "kRPceucAHgwrWUSKPkxXrCJS"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.132504"]]
158
-  (0.2ms) RELEASE SAVEPOINT active_record_1
159
-  (0.1ms) SAVEPOINT active_record_1
160
- ActiveStorage::Attachment Create (0.3ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.139768"]]
161
- Cmor::Carousels::Carousel Update (0.4ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.141167"], ["id", 1]]
162
-  (0.2ms) RELEASE SAVEPOINT active_record_1
163
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 9ef90db8-c2b5-4afb-814d-b8c1a542fbec) to Async(default) with arguments: #<GlobalID:0x00000003eb9418 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
164
-  (0.2ms) SAVEPOINT active_record_1
165
- Cmor::Carousels::ItemDetail Load (0.3ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
166
- Cmor::Carousels::ItemDetail Create (0.5ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.147420"], ["updated_at", "2019-06-12 14:48:04.147420"]]
167
-  (0.1ms) RELEASE SAVEPOINT active_record_1
168
- ActiveStorage::Blob Load (14.8ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
169
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec] Performing ActiveStorage::AnalyzeJob (Job ID: 9ef90db8-c2b5-4afb-814d-b8c1a542fbec) from Async(default) with arguments: #<GlobalID:0x00000003f4c3a8 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
170
-  (0.4ms) rollback transaction
171
-  (0.1ms) begin transaction
172
-  (0.1ms) SAVEPOINT active_record_1
173
- Cmor::Carousels::Carousel Exists (0.3ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_5"], ["LIMIT", 1]]
174
- Cmor::Carousels::Carousel Create (0.6ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_5"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.179460"], ["updated_at", "2019-06-12 14:48:04.179460"]]
175
-  (0.9ms) RELEASE SAVEPOINT active_record_1
176
-  Disk Storage (1.0ms) Uploaded file to key: ahqgGPdNLb7fVYb6fTdnQ9fY (checksum: PQckBuk+cVT3lBy73cnuAQ==)
177
-  (0.3ms) SAVEPOINT active_record_1
178
- ActiveStorage::Blob Create (0.4ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "ahqgGPdNLb7fVYb6fTdnQ9fY"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.187485"]]
179
-  (0.3ms) RELEASE SAVEPOINT active_record_1
180
-  (0.2ms) SAVEPOINT active_record_1
181
- ActiveStorage::Attachment Create (0.6ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.195342"]]
182
- Cmor::Carousels::Carousel Update (0.2ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.197456"], ["id", 1]]
183
-  (0.1ms) RELEASE SAVEPOINT active_record_1
184
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: a5bb698f-6776-4b50-bd5c-75f9d311cb78) to Async(default) with arguments: #<GlobalID:0x0000000419ae48 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
185
-  (0.7ms) SAVEPOINT active_record_1
186
- Cmor::Carousels::ItemDetail Load (1.7ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
187
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec]  Disk Storage (160.5ms) Downloaded file from key: kRPceucAHgwrWUSKPkxXrCJS
188
- Cmor::Carousels::ItemDetail Create (0.4ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.358460"], ["updated_at", "2019-06-12 14:48:04.358460"]]
189
-  (0.1ms) RELEASE SAVEPOINT active_record_1
190
- ActiveStorage::Blob Load (8.5ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
191
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f3043f2e-100b-4b85-8b8e-87482565d2ff] ActiveStorage::Blob Update (3.4ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 2]]
192
- [ActiveJob] [ActiveStorage::AnalyzeJob] [a5bb698f-6776-4b50-bd5c-75f9d311cb78] Performing ActiveStorage::AnalyzeJob (Job ID: a5bb698f-6776-4b50-bd5c-75f9d311cb78) from Async(default) with arguments: #<GlobalID:0x007fae0c35c750 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
193
-  (0.3ms) rollback transaction
194
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f3043f2e-100b-4b85-8b8e-87482565d2ff] Performed ActiveStorage::AnalyzeJob (Job ID: f3043f2e-100b-4b85-8b8e-87482565d2ff) from Async(default) in 266.22ms
195
- [ActiveJob] [ActiveStorage::AnalyzeJob] [a5bb698f-6776-4b50-bd5c-75f9d311cb78]  Disk Storage (0.2ms) Downloaded file from key: ahqgGPdNLb7fVYb6fTdnQ9fY
196
-  (0.1ms) begin transaction
197
-  (0.2ms) SAVEPOINT active_record_1
198
- Cmor::Carousels::Carousel Exists (0.6ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_6"], ["LIMIT", 1]]
199
- Cmor::Carousels::Carousel Create (2.0ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_6"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.403081"], ["updated_at", "2019-06-12 14:48:04.403081"]]
200
-  (0.3ms) RELEASE SAVEPOINT active_record_1
201
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec]  (0.1ms) SAVEPOINT active_record_1
202
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec] ActiveStorage::Blob Update (0.2ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
203
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec]  (0.3ms) RELEASE SAVEPOINT active_record_1
204
- [ActiveJob] [ActiveStorage::AnalyzeJob] [9ef90db8-c2b5-4afb-814d-b8c1a542fbec] Performed ActiveStorage::AnalyzeJob (Job ID: 9ef90db8-c2b5-4afb-814d-b8c1a542fbec) from Async(default) in 255.0ms
205
-  Disk Storage (11.3ms) Uploaded file to key: EhSUeZKf1zxMsa9rn58WJuuZ (checksum: PQckBuk+cVT3lBy73cnuAQ==)
206
-  (0.1ms) SAVEPOINT active_record_1
207
- ActiveStorage::Blob Create (0.5ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "EhSUeZKf1zxMsa9rn58WJuuZ"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.423381"]]
208
-  (0.1ms) RELEASE SAVEPOINT active_record_1
209
-  (0.3ms) SAVEPOINT active_record_1
210
- ActiveStorage::Attachment Create (7.2ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.429300"]]
211
- Cmor::Carousels::Carousel Update (0.5ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.438542"], ["id", 1]]
212
-  (0.3ms) RELEASE SAVEPOINT active_record_1
213
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2) to Async(default) with arguments: #<GlobalID:0x0000000509beb0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
214
-  (0.0ms) SAVEPOINT active_record_1
215
- Cmor::Carousels::ItemDetail Load (0.4ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
216
- Cmor::Carousels::ItemDetail Create (0.7ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.445859"], ["updated_at", "2019-06-12 14:48:04.445859"]]
217
-  (0.1ms) RELEASE SAVEPOINT active_record_1
218
- ActiveStorage::Blob Load (3.5ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
219
- [ActiveJob] [ActiveStorage::AnalyzeJob] [a5bb698f-6776-4b50-bd5c-75f9d311cb78] ActiveStorage::Blob Update (1.8ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
220
- [ActiveJob] [ActiveStorage::AnalyzeJob] [bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2] Performing ActiveStorage::AnalyzeJob (Job ID: bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2) from Async(default) with arguments: #<GlobalID:0x007fadfc01fe30 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
221
-  (0.3ms) rollback transaction
222
- [ActiveJob] [ActiveStorage::AnalyzeJob] [a5bb698f-6776-4b50-bd5c-75f9d311cb78] Performed ActiveStorage::AnalyzeJob (Job ID: a5bb698f-6776-4b50-bd5c-75f9d311cb78) from Async(default) in 83.87ms
223
-  (0.1ms) begin transaction
224
- [ActiveJob] [ActiveStorage::AnalyzeJob] [bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2]  Disk Storage (11.4ms) Downloaded file from key: EhSUeZKf1zxMsa9rn58WJuuZ
225
-  (0.1ms) SAVEPOINT active_record_1
226
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_7"], ["LIMIT", 1]]
227
- Cmor::Carousels::Carousel Create (0.3ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_7"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.478126"], ["updated_at", "2019-06-12 14:48:04.478126"]]
228
-  (0.1ms) RELEASE SAVEPOINT active_record_1
229
-  Disk Storage (2.1ms) Uploaded file to key: NJKn5zpwAq8C7n6sSjZz6jVd (checksum: PQckBuk+cVT3lBy73cnuAQ==)
230
-  (1.0ms) SAVEPOINT active_record_1
231
- ActiveStorage::Blob Create (4.2ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "NJKn5zpwAq8C7n6sSjZz6jVd"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.495710"]]
232
-  (0.4ms) RELEASE SAVEPOINT active_record_1
233
-  (0.4ms) SAVEPOINT active_record_1
234
- ActiveStorage::Attachment Create (0.8ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.513663"]]
235
- Cmor::Carousels::Carousel Update (0.3ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.516117"], ["id", 1]]
236
-  (0.1ms) RELEASE SAVEPOINT active_record_1
237
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 1fb7f34f-fa1a-4f4f-b621-98571f569c42) to Async(default) with arguments: #<GlobalID:0x007fae0c35d1a0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
238
-  (0.1ms) SAVEPOINT active_record_1
239
- Cmor::Carousels::ItemDetail Load (0.5ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
240
- Cmor::Carousels::ItemDetail Create (0.6ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.521820"], ["updated_at", "2019-06-12 14:48:04.521820"]]
241
-  (0.1ms) RELEASE SAVEPOINT active_record_1
242
-  (0.5ms) rollback transaction
243
-  (0.2ms) begin transaction
244
-  (0.3ms) SAVEPOINT active_record_1
245
- Cmor::Carousels::Carousel Exists (1.1ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_8"], ["LIMIT", 1]]
246
- Cmor::Carousels::Carousel Create (1.1ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_8"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.567253"], ["updated_at", "2019-06-12 14:48:04.567253"]]
247
-  (0.2ms) RELEASE SAVEPOINT active_record_1
248
- ActiveStorage::Blob Load (21.4ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
249
-  Disk Storage (0.7ms) Uploaded file to key: KGDLa2bjdBbEwC4tLYusDM2n (checksum: PQckBuk+cVT3lBy73cnuAQ==)
250
-  (0.1ms) SAVEPOINT active_record_1
251
- ActiveStorage::Blob Create (0.5ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "KGDLa2bjdBbEwC4tLYusDM2n"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.580465"]]
252
-  (0.1ms) RELEASE SAVEPOINT active_record_1
253
-  (0.3ms) SAVEPOINT active_record_1
254
- ActiveStorage::Attachment Create (0.4ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.588262"]]
255
- Cmor::Carousels::Carousel Update (0.2ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.590808"], ["id", 1]]
256
-  (0.2ms) RELEASE SAVEPOINT active_record_1
257
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: f1f2b0ba-d10e-468c-a323-08f78db3e4e4) to Async(default) with arguments: #<GlobalID:0x000000044b07e0 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
258
- [ActiveJob] [ActiveStorage::AnalyzeJob] [bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2] ActiveStorage::Blob Update (21.1ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
259
- [ActiveJob] [ActiveStorage::AnalyzeJob] [bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2] Performed ActiveStorage::AnalyzeJob (Job ID: bdd423f6-b9fd-4ac9-bd3d-871ae88d0fc2) from Async(default) in 158.65ms
260
-  (0.4ms) SAVEPOINT active_record_1
261
- Cmor::Carousels::ItemDetail Load (0.2ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
262
- Cmor::Carousels::ItemDetail Create (1.1ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.624176"], ["updated_at", "2019-06-12 14:48:04.624176"]]
263
-  (0.2ms) RELEASE SAVEPOINT active_record_1
264
- ActiveStorage::Blob Load (33.0ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
265
-  (1.6ms) rollback transaction
266
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f1f2b0ba-d10e-468c-a323-08f78db3e4e4] Performing ActiveStorage::AnalyzeJob (Job ID: f1f2b0ba-d10e-468c-a323-08f78db3e4e4) from Async(default) with arguments: #<GlobalID:0x000000042a6058 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
267
-  (0.2ms) begin transaction
268
-  (0.1ms) SAVEPOINT active_record_1
269
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_9"], ["LIMIT", 1]]
270
- Cmor::Carousels::Carousel Create (0.3ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_9"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.661654"], ["updated_at", "2019-06-12 14:48:04.661654"]]
271
-  (0.1ms) RELEASE SAVEPOINT active_record_1
272
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f1f2b0ba-d10e-468c-a323-08f78db3e4e4]  Disk Storage (15.7ms) Downloaded file from key: KGDLa2bjdBbEwC4tLYusDM2n
273
-  Disk Storage (3.4ms) Uploaded file to key: oyPixNEzsJeEtdNaRxNKw8jv (checksum: PQckBuk+cVT3lBy73cnuAQ==)
274
-  (0.4ms) SAVEPOINT active_record_1
275
- ActiveStorage::Blob Create (1.1ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "oyPixNEzsJeEtdNaRxNKw8jv"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.684485"]]
276
-  (0.5ms) RELEASE SAVEPOINT active_record_1
277
-  (0.3ms) SAVEPOINT active_record_1
278
- ActiveStorage::Attachment Create (0.5ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:04.699475"]]
279
- Cmor::Carousels::Carousel Update (0.5ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:04.701896"], ["id", 1]]
280
-  (0.2ms) RELEASE SAVEPOINT active_record_1
281
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 4d51847d-df57-48b9-9f50-f6af2155c3bf) to Async(default) with arguments: #<GlobalID:0x00000003f72468 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
282
-  (0.5ms) SAVEPOINT active_record_1
283
- Cmor::Carousels::ItemDetail Load (0.9ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
284
- Cmor::Carousels::ItemDetail Create (0.9ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["created_at", "2019-06-12 14:48:04.717537"], ["updated_at", "2019-06-12 14:48:04.717537"]]
285
-  (0.9ms) RELEASE SAVEPOINT active_record_1
286
-  (3.8ms) rollback transaction
287
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f1f2b0ba-d10e-468c-a323-08f78db3e4e4]  (0.2ms) begin transaction
288
- ActiveStorage::Blob Load (37.7ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
289
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f1f2b0ba-d10e-468c-a323-08f78db3e4e4]  (0.3ms) commit transaction
290
-  (0.2ms) begin transaction
291
- [ActiveJob] [ActiveStorage::AnalyzeJob] [f1f2b0ba-d10e-468c-a323-08f78db3e4e4] Performed ActiveStorage::AnalyzeJob (Job ID: f1f2b0ba-d10e-468c-a323-08f78db3e4e4) from Async(default) in 120.39ms
292
-  (0.2ms) rollback transaction
293
-  (0.1ms) begin transaction
294
-  (0.2ms) rollback transaction
295
-  (0.2ms) begin transaction
296
- Cmor::Carousels::Carousel Exists (0.7ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_10"], ["LIMIT", 1]]
297
-  (1.6ms) rollback transaction
298
-  (0.4ms) begin transaction
299
- Cmor::Carousels::Carousel Exists (1.0ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" IS NULL AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["LIMIT", 1]]
300
-  (0.4ms) rollback transaction
301
-  (0.2ms) begin transaction
302
-  (0.2ms) SAVEPOINT active_record_1
303
- Cmor::Carousels::Carousel Exists (0.5ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_11"], ["LIMIT", 1]]
304
- Cmor::Carousels::Carousel Create (0.5ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_11"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:04.892826"], ["updated_at", "2019-06-12 14:48:04.892826"]]
305
-  (0.4ms) RELEASE SAVEPOINT active_record_1
306
-  (0.4ms) rollback transaction
307
-  (1.0ms) begin transaction
308
-  (0.3ms) rollback transaction
309
-  (0.2ms) begin transaction
310
-  (0.2ms) rollback transaction
311
-  (0.1ms) begin transaction
312
-  Disk Storage (7.2ms) Uploaded file to key: GaMWd7jWEhGakkcs5MUV6SEX (checksum: PQckBuk+cVT3lBy73cnuAQ==)
313
-  (0.2ms) SAVEPOINT active_record_1
314
- ActiveStorage::Blob Create (1.9ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "GaMWd7jWEhGakkcs5MUV6SEX"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:04.974358"]]
315
-  (0.2ms) RELEASE SAVEPOINT active_record_1
316
-  (0.7ms) rollback transaction
317
-  (0.2ms) begin transaction
318
-  (0.2ms) rollback transaction
319
-  (0.7ms) begin transaction
320
-  Disk Storage (0.7ms) Uploaded file to key: HNXjJGg6Y6TKuUiF6imRSvCg (checksum: PQckBuk+cVT3lBy73cnuAQ==)
321
-  (0.1ms) SAVEPOINT active_record_1
322
- ActiveStorage::Blob Create (0.8ms) INSERT INTO "active_storage_blobs" ("key", "filename", "content_type", "metadata", "byte_size", "checksum", "created_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["key", "HNXjJGg6Y6TKuUiF6imRSvCg"], ["filename", "example.png"], ["content_type", "image/png"], ["metadata", "{\"identified\":true}"], ["byte_size", 9691], ["checksum", "PQckBuk+cVT3lBy73cnuAQ=="], ["created_at", "2019-06-12 14:48:05.026475"]]
323
-  (0.5ms) RELEASE SAVEPOINT active_record_1
324
-  (0.3ms) SAVEPOINT active_record_1
325
- Cmor::Carousels::Carousel Exists (0.2ms) SELECT 1 AS one FROM "cmor_carousels_carousels" WHERE "cmor_carousels_carousels"."identifier" = ? AND "cmor_carousels_carousels"."locale" IS NULL LIMIT ? [["identifier", "carousel_13"], ["LIMIT", 1]]
326
- Cmor::Carousels::Carousel Create (2.8ms) INSERT INTO "cmor_carousels_carousels" ("identifier", "variant_options", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["identifier", "carousel_13"], ["variant_options", "---\n:resize: x\n"], ["created_at", "2019-06-12 14:48:05.073901"], ["updated_at", "2019-06-12 14:48:05.073901"]]
327
- ActiveStorage::Attachment Create (9.9ms) INSERT INTO "active_storage_attachments" ("name", "record_type", "record_id", "blob_id", "created_at") VALUES (?, ?, ?, ?, ?) [["name", "assets"], ["record_type", "Cmor::Carousels::Carousel"], ["record_id", 1], ["blob_id", 1], ["created_at", "2019-06-12 14:48:05.083312"]]
328
- Cmor::Carousels::ItemDetail Load (0.9ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
329
- Cmor::Carousels::ItemDetail Create (0.3ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "published_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 1], ["published_at", "2019-06-12 14:48:05.062541"], ["created_at", "2019-06-12 14:48:05.095895"], ["updated_at", "2019-06-12 14:48:05.095895"]]
330
- Cmor::Carousels::ItemDetail Load (0.0ms) SELECT "cmor_carousels_item_details".* FROM "cmor_carousels_item_details" WHERE "cmor_carousels_item_details"."carousel_id" = ? AND ("cmor_carousels_item_details"."position" IS NOT NULL) ORDER BY "cmor_carousels_item_details"."position" DESC LIMIT ? [["carousel_id", 1], ["LIMIT", 1]]
331
- Cmor::Carousels::ItemDetail Create (0.4ms) INSERT INTO "cmor_carousels_item_details" ("carousel_id", "asset_id", "position", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["carousel_id", 1], ["asset_id", 1], ["position", 2], ["created_at", "2019-06-12 14:48:05.102682"], ["updated_at", "2019-06-12 14:48:05.102682"]]
332
- Cmor::Carousels::Carousel Update (2.1ms) UPDATE "cmor_carousels_carousels" SET "updated_at" = ? WHERE "cmor_carousels_carousels"."id" = ? [["updated_at", "2019-06-12 14:48:05.095273"], ["id", 1]]
333
-  (0.1ms) RELEASE SAVEPOINT active_record_1
334
- [ActiveJob] Enqueued ActiveStorage::AnalyzeJob (Job ID: 69431184-dfba-47bf-b791-ce935fd31c1f) to Async(default) with arguments: #<GlobalID:0x00000002edbf28 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
335
- ActiveStorage::Blob Load (2.8ms) SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
336
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f] Performing ActiveStorage::AnalyzeJob (Job ID: 69431184-dfba-47bf-b791-ce935fd31c1f) from Async(default) with arguments: #<GlobalID:0x00000002eaa950 @uri=#<URI::GID gid://dummy/ActiveStorage::Blob/1>>
337
-  (0.4ms) rollback transaction
338
-  (0.2ms) begin transaction
339
-  (0.1ms) rollback transaction
340
-  (0.2ms) begin transaction
341
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f]  Disk Storage (12.7ms) Downloaded file from key: HNXjJGg6Y6TKuUiF6imRSvCg
342
-  (0.2ms) rollback transaction
343
-  (0.2ms) begin transaction
344
-  (0.2ms) rollback transaction
345
-  (0.2ms) begin transaction
346
-  (0.2ms) rollback transaction
347
-  (0.3ms) begin transaction
348
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f]  (0.4ms) begin transaction
349
-  (0.2ms) rollback transaction
350
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f]  (0.2ms) begin transaction
351
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f] ActiveStorage::Blob Update (0.7ms) UPDATE "active_storage_blobs" SET "metadata" = ? WHERE "active_storage_blobs"."id" = ? [["metadata", "{\"identified\":true,\"width\":830,\"height\":477,\"analyzed\":true}"], ["id", 1]]
352
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f]  (0.3ms) commit transaction
353
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f]  (0.2ms) commit transaction
354
- [ActiveJob] [ActiveStorage::AnalyzeJob] [69431184-dfba-47bf-b791-ce935fd31c1f] Performed ActiveStorage::AnalyzeJob (Job ID: 69431184-dfba-47bf-b791-ce935fd31c1f) from Async(default) in 111.7ms
355
-  (0.1ms) begin transaction
356
-  (0.1ms) rollback transaction
357
-  (0.2ms) begin transaction
358
-  (0.1ms) rollback transaction
359
-  (0.8ms) begin transaction
360
-  (0.6ms) rollback transaction
361
-  (0.1ms) begin transaction
362
-  (0.1ms) rollback transaction
363
-  (0.1ms) begin transaction
364
-  (0.0ms) rollback transaction
365
-  (0.9ms) begin transaction
366
-  (0.2ms) rollback transaction
367
-  (0.1ms) begin transaction
368
-  (0.1ms) rollback transaction
369
-  (0.2ms) begin transaction
370
-  (0.1ms) rollback transaction
371
-  (0.4ms) begin transaction
372
-  (0.1ms) rollback transaction
373
-  (0.2ms) begin transaction
374
-  (0.1ms) rollback transaction
375
-  (0.1ms) begin transaction
376
-  (0.1ms) rollback transaction
377
-  (0.1ms) begin transaction
378
-  (0.1ms) rollback transaction
379
-  (0.2ms) begin transaction
380
-  (2.3ms) rollback transaction
381
-  (0.2ms) begin transaction
382
-  (0.1ms) rollback transaction
383
-  (0.2ms) begin transaction
384
-  (0.1ms) rollback transaction
385
-  (0.2ms) begin transaction
386
-  (2.9ms) rollback transaction
387
-  (1.3ms) begin transaction
388
-  (0.1ms) rollback transaction
389
-  (1.9ms) begin transaction
390
-  (0.2ms) rollback transaction
391
-  (0.1ms) begin transaction
392
-  (0.2ms) rollback transaction
393
-  (0.2ms) begin transaction
394
-  (0.2ms) rollback transaction
395
-  (0.2ms) begin transaction
396
-  (0.1ms) rollback transaction
397
-  (0.3ms) begin transaction
398
-  (0.3ms) rollback transaction
399
-  (0.1ms) begin transaction
400
-  (0.1ms) rollback transaction
401
-  (0.5ms) begin transaction
402
-  (0.2ms) rollback transaction
403
-  (0.3ms) begin transaction
404
-  (0.3ms) rollback transaction
405
-  (0.1ms) begin transaction
406
-  (7.3ms) rollback transaction
407
-  (0.1ms) begin transaction
408
-  (0.2ms) rollback transaction
409
-  (0.1ms) begin transaction
410
-  (4.8ms) rollback transaction
411
-  (0.4ms) begin transaction
412
-  (0.2ms) rollback transaction
413
-  (0.2ms) begin transaction
414
-  (0.2ms) rollback transaction
415
-  (0.4ms) begin transaction
416
-  (0.2ms) rollback transaction
417
-  (0.3ms) begin transaction
418
-  (0.2ms) rollback transaction
419
-  (0.2ms) begin transaction
420
-  (0.1ms) rollback transaction