nulogy_message_bus_producer 5.0.1 → 5.0.2

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: 7accbce03180375451026a5f27101d51757eb2a60c39a7455828f34b18587321
4
- data.tar.gz: c6ce50203bd2611c19266620cecc8c30ea8e7cfcd53097a9d2231e2a252c2719
3
+ metadata.gz: 93bda3d0310b1f2596d6a3af465802bce9e4228dc493fa82890ed3b226cc0ced
4
+ data.tar.gz: 15d8b2383df3a0774aabc90a2eb9bf5e55b385a34675afaa670b0f80699d7dc6
5
5
  SHA512:
6
- metadata.gz: cb6d3b9cc0d606b6626f07c455edba2ed5ef783b6298e182b36b4428673960c17e5383a6a3fc67f4c90a971fac957c9945525c33ed80ff90b4becf59b805ff3c
7
- data.tar.gz: f0c326b768b5b2c47ca1c4ade5b86438b8fcbd0b7008eacce8dbf1fd22ef1b4e2f8c1790f166c8987808712fcf1dab33eeb8cb33b68d50b7878d802992b6ff35
6
+ metadata.gz: 777d0800870a6bd0f0300207e9340c77a8699493d12d37f70a7e18813c84eb9141bd7d967438ee51cb5e548d46608487cd9f9cc32381ff1b9b74da5907946823
7
+ data.tar.gz: b56d6df225a3ea86f7cfffab25f54b04cfa561bb1b60819b915c17ff4b45f9fc4b735b1cbc7d67cb4861be27115c149f6f665803ad0964ad3ae5c628ea4e74d7
@@ -1,3 +1,3 @@
1
1
  module NulogyMessageBusProducer
2
- VERSION = "5.0.1".freeze
2
+ VERSION = "5.0.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nulogy_message_bus_producer
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nulogy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.15
19
+ version: 2.0.16
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.15
26
+ version: 2.0.16
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: railties
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -313,8 +313,6 @@ files:
313
313
  - spec/dummy/config/storage.yml
314
314
  - spec/dummy/db/migrate/20201005164116_create_active_storage_tables.active_storage.rb
315
315
  - spec/dummy/db/schema.rb
316
- - spec/dummy/log/development.log
317
- - spec/dummy/log/test.log
318
316
  - spec/dummy/package.json
319
317
  - spec/dummy/public/404.html
320
318
  - spec/dummy/public/422.html
@@ -415,8 +413,6 @@ test_files:
415
413
  - spec/dummy/config.ru
416
414
  - spec/dummy/db/migrate/20201005164116_create_active_storage_tables.active_storage.rb
417
415
  - spec/dummy/db/schema.rb
418
- - spec/dummy/log/development.log
419
- - spec/dummy/log/test.log
420
416
  - spec/dummy/package.json
421
417
  - spec/dummy/public/404.html
422
418
  - spec/dummy/public/422.html
@@ -1,136 +0,0 @@
1
-  (374.4ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
2
-  (4.0ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
3
- SQL (12.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
- SQL (23.5ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
5
-  (7.2ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
6
-  (15.0ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
7
-  (7.6ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
8
-  (4.7ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
9
-  (11.0ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
10
-  (4.2ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
11
-  (11.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
12
-  (7.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
13
-  (6.0ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
14
-  (4.9ms) INSERT INTO "schema_migrations" (version) VALUES
15
- (20200611150212),
16
- (20201005150212);
17
-
18
- 
19
-  (13.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)
20
- ActiveRecord::InternalMetadata Load (3.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
21
- TRANSACTION (3.1ms) BEGIN
22
- ActiveRecord::InternalMetadata Create (4.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-04-05 19:16:00.147532"], ["updated_at", "2022-04-05 19:16:00.147532"]]
23
- TRANSACTION (3.7ms) COMMIT
24
- ActiveRecord::InternalMetadata Load (4.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
25
- ActiveRecord::InternalMetadata Load (2.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
26
- TRANSACTION (2.4ms) BEGIN
27
- ActiveRecord::InternalMetadata Create (2.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-04-05 19:16:00.179001"], ["updated_at", "2022-04-05 19:16:00.179001"]]
28
- TRANSACTION (2.7ms) COMMIT
29
- SQL (5.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
30
- SQL (11.0ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
31
-  (3.3ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
32
-  (18.9ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
33
-  (5.8ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
34
-  (3.0ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
35
-  (10.6ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
36
-  (6.1ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
37
-  (11.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
38
-  (8.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39
-  (11.3ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
40
-  (7.0ms) INSERT INTO "schema_migrations" (version) VALUES
41
- (20200611150212),
42
- (20201005150212);
43
-
44
- 
45
-  (16.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)
46
- ActiveRecord::InternalMetadata Load (5.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
47
- TRANSACTION (3.6ms) BEGIN
48
- ActiveRecord::InternalMetadata Create (2.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-04-05 19:16:00.457036"], ["updated_at", "2022-04-05 19:16:00.457036"]]
49
- TRANSACTION (2.6ms) COMMIT
50
- ActiveRecord::InternalMetadata Load (4.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
51
- TRANSACTION (2.0ms) BEGIN
52
- ActiveRecord::InternalMetadata Update (5.8ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-04-05 19:16:00.481743"], ["key", "environment"]]
53
- TRANSACTION (3.7ms) COMMIT
54
- ActiveRecord::InternalMetadata Load (2.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
55
- TRANSACTION (2.4ms) BEGIN
56
- ActiveRecord::InternalMetadata Create (2.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-04-05 19:16:00.503316"], ["updated_at", "2022-04-05 19:16:00.503316"]]
57
- TRANSACTION (3.7ms) COMMIT
58
-  (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
59
-  (3.2ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
60
-  (1.3ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
61
-  (3.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
62
-  (2.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
63
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
64
-  (1.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
65
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66
-  (1.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
67
- SQL (4.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
68
- SQL (1.7ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
69
-  (13.0ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
70
-  (26.3ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
71
-  (3.3ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
72
-  (3.5ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
73
-  (5.2ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
74
-  (3.7ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
75
-  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
76
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
77
- ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
78
- ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
79
- SQL (2.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
80
- SQL (1.8ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
81
-  (10.6ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
82
-  (21.3ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
83
-  (3.2ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
84
-  (3.3ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
85
-  (5.6ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
86
-  (3.2ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
87
-  (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
88
- ActiveRecord::InternalMetadata Load (3.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
89
- TRANSACTION (1.4ms) BEGIN
90
- ActiveRecord::InternalMetadata Update (3.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2022-08-16 14:46:29.140584"], ["key", "environment"]]
91
- TRANSACTION (1.7ms) COMMIT
92
- ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
93
- TRANSACTION (1.2ms) BEGIN
94
- ActiveRecord::InternalMetadata Update (1.2ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-08-16 14:46:29.155081"], ["key", "environment"]]
95
- TRANSACTION (1.5ms) COMMIT
96
- ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
97
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
98
-  (1.8ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
99
-  (1.4ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
100
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
101
-  (1.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
102
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
103
-  (1.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
104
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
105
-  (1.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
106
- SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
107
- SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
108
-  (3.4ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
109
-  (6.3ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
110
-  (3.6ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
111
-  (2.4ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
112
-  (5.3ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
113
-  (3.3ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
114
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
115
- ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
116
- ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
117
- ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
118
- SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
119
- SQL (1.5ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
120
-  (3.2ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
121
-  (7.4ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
122
-  (3.2ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
123
-  (3.0ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
124
-  (6.3ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
125
-  (3.1ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
126
-  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
127
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
128
- TRANSACTION (1.2ms) BEGIN
129
- ActiveRecord::InternalMetadata Update (1.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2022-08-16 15:24:22.586895"], ["key", "environment"]]
130
- TRANSACTION (1.7ms) COMMIT
131
- ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
132
- TRANSACTION (1.2ms) BEGIN
133
- ActiveRecord::InternalMetadata Update (1.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-08-16 15:24:22.598633"], ["key", "environment"]]
134
- TRANSACTION (1.8ms) COMMIT
135
- ActiveRecord::InternalMetadata Load (1.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
136
-  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC