global-registry-bindings 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 78f5d227325b3a668d79bb8fb43bea17e04688fe
4
- data.tar.gz: 8395bfbf9052fb03b8f013ee0a1577f28c3e3b00
2
+ SHA256:
3
+ metadata.gz: 15ddd09951feb876e8ca7d28e5fb7b7807f2f433cbe0ad1288a8501b71161761
4
+ data.tar.gz: d8c752a2c69890db440aa43ee5fb1ac148da8999590fe20fde73933ec555df36
5
5
  SHA512:
6
- metadata.gz: 516cf14dbb57e7739b3a77db3331bf88bcbd3c0cd2b63a88aa23f129d3e658138d9216d4a31c44f790bfcbc6e16663ec9c3665c63205eda99c4bbb921db6c4a9
7
- data.tar.gz: b59de05603bbdbfc2e7b58c3385827924b5518f9ca5cb0a5fccc1d5a21bb78e1fd452c961c16de5c8bd5a224c30e786da3a8226ff969c663718f6e2f914ce5d2
6
+ metadata.gz: 60e07a5233f2139077ca420a9c9c202a6be546823af6c6561d3079f304e478df1c7f034f1c90349762d77bcd13d934c3b6e0a1f3e4b3ddf37178f916a64fa16a
7
+ data.tar.gz: f9c98ceb0fa1e27302fc62c54e8bc1663c310443918abf3ed2cd735132cbc7b22ca4f04c41533d83454a64362d0c94d425efb802bcff7ccf2d8826d2e013ef3f
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.4.0'
5
+ VERSION = '0.5.0'
6
6
  end
7
7
  end
@@ -0,0 +1,1457 @@
1
+  (2.1ms) SELECT sqlite_version(*)
2
+  (0.1ms) SELECT sqlite_version(*)
3
+  (0.1ms) DROP TABLE IF EXISTS "people"
4
+  (1.8ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
5
+  (1.0ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
6
+  (1.1ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
7
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
8
+  (1.1ms) CREATE TABLE "addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "address1" varchar, "zip" varchar, "primary" boolean, "person_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
9
+  (0.9ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
10
+  (0.1ms) DROP TABLE IF EXISTS "organizations"
11
+  (1.2ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
12
+  (1.2ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
13
+  (1.0ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
14
+  (0.1ms) DROP TABLE IF EXISTS "assignments"
15
+  (1.1ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
16
+  (0.9ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
17
+  (0.9ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
18
+  (1.1ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
19
+  (0.1ms) DROP TABLE IF EXISTS "areas"
20
+  (1.0ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
21
+  (0.1ms) DROP TABLE IF EXISTS "countries"
22
+  (1.0ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
23
+  (0.1ms) DROP TABLE IF EXISTS "communities"
24
+  (0.9ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
25
+  (0.1ms) DROP TABLE IF EXISTS "foos"
26
+  (1.1ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
27
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
28
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
29
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
30
+  (1.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
31
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
32
+ TRANSACTION (0.0ms) begin transaction
33
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-20 20:13:45.191581"], ["updated_at", "2021-01-20 20:13:45.191581"]]
34
+ TRANSACTION (0.8ms) commit transaction
35
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
36
+  (3.1ms) SELECT sqlite_version(*)
37
+  (0.1ms) SELECT sqlite_version(*)
38
+  (0.1ms) DROP TABLE IF EXISTS "people"
39
+  (2.2ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
40
+  (1.8ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
41
+  (1.8ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
42
+  (0.2ms) DROP TABLE IF EXISTS "addresses"
43
+  (1.6ms) CREATE TABLE "addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "address1" varchar, "zip" varchar, "primary" boolean, "person_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
44
+  (1.7ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
45
+  (0.2ms) DROP TABLE IF EXISTS "organizations"
46
+  (1.6ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
47
+  (1.7ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
48
+  (1.7ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
49
+  (0.2ms) DROP TABLE IF EXISTS "assignments"
50
+  (1.5ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
51
+  (1.7ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
52
+  (1.9ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
53
+  (1.4ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
54
+  (0.1ms) DROP TABLE IF EXISTS "areas"
55
+  (1.1ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
56
+  (0.1ms) DROP TABLE IF EXISTS "countries"
57
+  (1.1ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
58
+  (0.1ms) DROP TABLE IF EXISTS "communities"
59
+  (1.2ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
60
+  (0.1ms) DROP TABLE IF EXISTS "foos"
61
+  (1.1ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
62
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
63
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
64
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
65
+  (1.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
66
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
67
+ TRANSACTION (0.0ms) begin transaction
68
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:44:04.885400"], ["updated_at", "2021-01-21 19:44:04.885400"]]
69
+ TRANSACTION (1.3ms) commit transaction
70
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
71
+  (1.4ms) SELECT sqlite_version(*)
72
+  (0.0ms) SELECT sqlite_version(*)
73
+  (0.1ms) DROP TABLE IF EXISTS "people"
74
+  (7.4ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
75
+  (1.7ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
76
+  (1.7ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
77
+  (0.2ms) DROP TABLE IF EXISTS "addresses"
78
+  (1.5ms) CREATE TABLE "addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "address1" varchar, "zip" varchar, "primary" boolean, "person_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
79
+  (1.7ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
80
+  (0.2ms) DROP TABLE IF EXISTS "organizations"
81
+  (1.6ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
82
+  (1.8ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
83
+  (1.8ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
84
+  (0.2ms) DROP TABLE IF EXISTS "assignments"
85
+  (1.7ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
86
+  (1.7ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
87
+  (1.8ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
88
+  (1.8ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
89
+  (0.2ms) DROP TABLE IF EXISTS "areas"
90
+  (1.7ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
91
+  (0.2ms) DROP TABLE IF EXISTS "countries"
92
+  (1.7ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
93
+  (0.2ms) DROP TABLE IF EXISTS "communities"
94
+  (1.7ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
95
+  (0.2ms) DROP TABLE IF EXISTS "foos"
96
+  (1.4ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
97
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
98
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
99
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES (0)
100
+  (1.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
101
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
102
+ TRANSACTION (0.0ms) begin transaction
103
+ ActiveRecord::InternalMetadata Create (17.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:44:47.007038"], ["updated_at", "2021-01-21 19:44:47.007038"]]
104
+ TRANSACTION (1.6ms) commit transaction
105
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
106
+  (2.3ms) SELECT sqlite_version(*)
107
+  (0.1ms) SELECT sqlite_version(*)
108
+  (0.1ms) DROP TABLE IF EXISTS "people"
109
+  (1.3ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
110
+  (0.9ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
111
+  (1.0ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
112
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
113
+  (1.0ms) CREATE TABLE "addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "address1" varchar, "zip" varchar, "primary" boolean, "person_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
114
+  (0.9ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
115
+  (0.1ms) DROP TABLE IF EXISTS "organizations"
116
+  (1.0ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
117
+  (0.9ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
118
+  (0.9ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
119
+  (0.1ms) DROP TABLE IF EXISTS "assignments"
120
+  (0.9ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
121
+  (0.8ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
122
+  (0.9ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
123
+  (1.1ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
124
+  (0.1ms) DROP TABLE IF EXISTS "areas"
125
+  (1.2ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
126
+  (0.3ms) DROP TABLE IF EXISTS "countries"
127
+  (1.3ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
128
+  (0.1ms) DROP TABLE IF EXISTS "communities"
129
+  (1.5ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
130
+  (0.2ms) DROP TABLE IF EXISTS "foos"
131
+  (1.4ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
132
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
133
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
134
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES (0)
135
+  (1.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
136
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
137
+  (0.1ms) begin transaction
138
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:55:14.029440"], ["updated_at", "2021-01-21 19:55:14.029440"]]
139
+  (0.9ms) commit transaction
140
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
141
+  (0.1ms) SELECT sqlite_version(*)
142
+  (0.0ms) begin transaction
143
+  (0.1ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+  (0.1ms) rollback transaction
148
+  (0.1ms) begin transaction
149
+  (0.1ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+  (0.1ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+  (0.1ms) rollback transaction
154
+  (0.0ms) begin transaction
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+  (0.0ms) rollback transaction
158
+  (0.0ms) begin transaction
159
+  (0.0ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+  (0.1ms) rollback transaction
162
+  (0.1ms) begin transaction
163
+  (0.1ms) rollback transaction
164
+  (0.0ms) begin transaction
165
+  (0.0ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+  (0.1ms) rollback transaction
168
+  (0.0ms) begin transaction
169
+  (0.0ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+  (0.0ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+  (0.1ms) SAVEPOINT active_record_1
174
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.644532"], ["updated_at", "2021-01-21 19:55:15.644532"]]
175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
176
+  (0.0ms) SAVEPOINT active_record_1
177
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.647109"], ["updated_at", "2021-01-21 19:55:15.647109"]]
178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
179
+  (0.1ms) SAVEPOINT active_record_1
180
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2020-11-21 19:55:15.650197"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.651023"], ["updated_at", "2021-01-21 19:55:15.651023"]]
181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
182
+  (0.6ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+  (0.1ms) SAVEPOINT active_record_1
185
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.656356"], ["updated_at", "2021-01-21 19:55:15.656356"]]
186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
187
+  (0.0ms) SAVEPOINT active_record_1
188
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.658659"], ["updated_at", "2021-01-21 19:55:15.658659"]]
189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190
+  (0.0ms) SAVEPOINT active_record_1
191
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2020-11-21 19:55:15.660000"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.660282"], ["updated_at", "2021-01-21 19:55:15.660282"]]
192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
193
+  (0.0ms) SAVEPOINT active_record_1
194
+ Assignment Update (0.1ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2021-01-21 19:55:15.662103"], ["id", 1]]
195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
196
+  (0.4ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+  (0.1ms) SAVEPOINT active_record_1
199
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.665971"], ["updated_at", "2021-01-21 19:55:15.665971"]]
200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
201
+  (0.1ms) SAVEPOINT active_record_1
202
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.669207"], ["updated_at", "2021-01-21 19:55:15.669207"]]
203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
204
+  (0.1ms) SAVEPOINT active_record_1
205
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "abc"], ["role", "leader"], ["hired_at", "2020-11-21 19:55:15.671694"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.672102"], ["updated_at", "2021-01-21 19:55:15.672102"]]
206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
207
+  (0.0ms) SAVEPOINT active_record_1
208
+ Assignment Destroy (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
210
+  (0.4ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+  (0.0ms) SAVEPOINT active_record_1
213
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.676787"], ["updated_at", "2021-01-21 19:55:15.676787"]]
214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
215
+  (0.3ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+  (0.1ms) SAVEPOINT active_record_1
218
+ Area Create (0.4ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.688667"], ["updated_at", "2021-01-21 19:55:15.688667"]]
219
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["created_at", "2021-01-21 19:55:15.689912"], ["updated_at", "2021-01-21 19:55:15.689912"]]
220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
221
+  (0.4ms) rollback transaction
222
+  (0.0ms) begin transaction
223
+  (0.0ms) SAVEPOINT active_record_1
224
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.693691"], ["updated_at", "2021-01-21 19:55:15.693691"]]
225
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 19:55:15.694765"], ["updated_at", "2021-01-21 19:55:15.694765"]]
226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
227
+  (0.4ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+  (0.1ms) SAVEPOINT active_record_1
230
+ Organization Create (0.7ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.698261"], ["updated_at", "2021-01-21 19:55:15.698261"]]
231
+ Area Create (0.3ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.700212"], ["updated_at", "2021-01-21 19:55:15.700212"]]
232
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["created_at", "2021-01-21 19:55:15.701469"], ["updated_at", "2021-01-21 19:55:15.701469"]]
233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+  (0.6ms) rollback transaction
235
+  (0.1ms) begin transaction
236
+  (0.1ms) SAVEPOINT active_record_1
237
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.706526"], ["updated_at", "2021-01-21 19:55:15.706526"]]
238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
239
+  (0.0ms) SAVEPOINT active_record_1
240
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
242
+  (0.3ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+  (0.0ms) SAVEPOINT active_record_1
245
+ Area Create (0.3ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.710820"], ["updated_at", "2021-01-21 19:55:15.710820"]]
246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
247
+  (0.0ms) SAVEPOINT active_record_1
248
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 19:55:15.712667"], ["updated_at", "2021-01-21 19:55:15.712667"]]
249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
250
+  (0.0ms) SAVEPOINT active_record_1
251
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
253
+  (0.5ms) rollback transaction
254
+  (0.1ms) begin transaction
255
+  (0.1ms) SAVEPOINT active_record_1
256
+ Organization Create (0.6ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.717646"], ["updated_at", "2021-01-21 19:55:15.717646"]]
257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
258
+  (0.1ms) SAVEPOINT active_record_1
259
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 19:55:15.720196"], ["updated_at", "2021-01-21 19:55:15.720196"]]
260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
261
+  (0.1ms) SAVEPOINT active_record_1
262
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
264
+  (0.4ms) rollback transaction
265
+  (0.0ms) begin transaction
266
+  (0.0ms) SAVEPOINT active_record_1
267
+ Area Create (0.3ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.725430"], ["updated_at", "2021-01-21 19:55:15.725430"]]
268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
269
+  (0.0ms) SAVEPOINT active_record_1
270
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.727271"], ["updated_at", "2021-01-21 19:55:15.727271"]]
271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
272
+  (0.0ms) SAVEPOINT active_record_1
273
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 19:55:15.729095"], ["updated_at", "2021-01-21 19:55:15.729095"]]
274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
275
+  (0.0ms) SAVEPOINT active_record_1
276
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
278
+  (0.5ms) rollback transaction
279
+  (0.1ms) begin transaction
280
+  (0.1ms) SAVEPOINT active_record_1
281
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.734034"], ["updated_at", "2021-01-21 19:55:15.734034"]]
282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
283
+  (0.4ms) rollback transaction
284
+  (0.0ms) begin transaction
285
+  (0.1ms) SAVEPOINT active_record_1
286
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.743420"], ["updated_at", "2021-01-21 19:55:15.743420"]]
287
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2021-01-21 19:55:15.744786"], ["updated_at", "2021-01-21 19:55:15.744786"]]
288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
289
+  (0.5ms) rollback transaction
290
+  (0.1ms) begin transaction
291
+  (0.1ms) SAVEPOINT active_record_1
292
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.750698"], ["updated_at", "2021-01-21 19:55:15.750698"]]
293
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.751975"], ["updated_at", "2021-01-21 19:55:15.751975"]]
294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
295
+  (0.5ms) rollback transaction
296
+  (0.0ms) begin transaction
297
+  (0.1ms) SAVEPOINT active_record_1
298
+ Country Create (0.5ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.756675"], ["updated_at", "2021-01-21 19:55:15.756675"]]
299
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.758169"], ["updated_at", "2021-01-21 19:55:15.758169"]]
300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
301
+  (0.5ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+  (0.1ms) SAVEPOINT active_record_1
304
+ Namespaced::Person Create (0.9ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.763884"], ["updated_at", "2021-01-21 19:55:15.763884"]]
305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
306
+  (0.1ms) SAVEPOINT active_record_1
307
+ Namespaced::Person Update (0.2ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2021-01-21 19:55:15.767582"], ["id", 1]]
308
+  (0.1ms) RELEASE SAVEPOINT active_record_1
309
+  (0.5ms) rollback transaction
310
+  (0.1ms) begin transaction
311
+  (0.1ms) SAVEPOINT active_record_1
312
+ Country Create (0.5ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.772146"], ["updated_at", "2021-01-21 19:55:15.772146"]]
313
+  (0.1ms) RELEASE SAVEPOINT active_record_1
314
+  (0.0ms) SAVEPOINT active_record_1
315
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.774831"], ["updated_at", "2021-01-21 19:55:15.774831"]]
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+  (0.0ms) SAVEPOINT active_record_1
318
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2021-01-21 19:55:15.777316"], ["id", 1]]
319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
320
+  (0.4ms) rollback transaction
321
+  (0.0ms) begin transaction
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.780543"], ["updated_at", "2021-01-21 19:55:15.780543"]]
324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
+  (0.1ms) SAVEPOINT active_record_1
326
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.782839"], ["updated_at", "2021-01-21 19:55:15.782839"]]
327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
328
+  (0.0ms) SAVEPOINT active_record_1
329
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_residence_id", nil], ["updated_at", "2021-01-21 19:55:15.785497"], ["id", 1]]
330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
331
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", nil], ["id", 1]]
332
+  (0.4ms) rollback transaction
333
+  (0.0ms) begin transaction
334
+  (0.0ms) SAVEPOINT active_record_1
335
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 19:55:15.789160"], ["updated_at", "2021-01-21 19:55:15.789160"]]
336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
337
+  (0.0ms) SAVEPOINT active_record_1
338
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Peru"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9963c"], ["created_at", "2021-01-21 19:55:15.790841"], ["updated_at", "2021-01-21 19:55:15.790841"]]
339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
340
+  (0.0ms) SAVEPOINT active_record_1
341
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.792364"], ["updated_at", "2021-01-21 19:55:15.792364"]]
342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
343
+  (0.0ms) SAVEPOINT active_record_1
344
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_service_id", 2], ["updated_at", "2021-01-21 19:55:15.795309"], ["id", 1]]
345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
346
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", nil], ["id", 1]]
347
+  (0.4ms) rollback transaction
348
+  (0.0ms) begin transaction
349
+  (0.1ms) SAVEPOINT active_record_1
350
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.824654"], ["updated_at", "2021-01-21 19:55:15.824654"]]
351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
352
+  (0.1ms) SAVEPOINT active_record_1
353
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
354
+ Namespaced::Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
356
+  (0.6ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+  (0.1ms) SAVEPOINT active_record_1
359
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 19:55:15.851718"], ["updated_at", "2021-01-21 19:55:15.851718"]]
360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
361
+  (0.1ms) SAVEPOINT active_record_1
362
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d99639"], ["created_at", "2021-01-21 19:55:15.853646"], ["updated_at", "2021-01-21 19:55:15.853646"]]
363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
364
+  (0.1ms) SAVEPOINT active_record_1
365
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 2], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.855673"], ["updated_at", "2021-01-21 19:55:15.855673"]]
366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
367
+  (0.1ms) SAVEPOINT active_record_1
368
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
369
+ Namespaced::Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
371
+  (0.5ms) rollback transaction
372
+  (0.1ms) begin transaction
373
+  (0.1ms) SAVEPOINT active_record_1
374
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.863091"], ["updated_at", "2021-01-21 19:55:15.863091"]]
375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
376
+  (0.5ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+  (0.1ms) SAVEPOINT active_record_1
379
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.869404"], ["updated_at", "2021-01-21 19:55:15.869404"]]
380
+  (0.1ms) RELEASE SAVEPOINT active_record_1
381
+  (0.6ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+  (0.1ms) SAVEPOINT active_record_1
384
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.875425"], ["updated_at", "2021-01-21 19:55:15.875425"]]
385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
386
+  (0.4ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+  (0.1ms) rollback transaction
389
+  (0.1ms) begin transaction
390
+  (0.1ms) SAVEPOINT active_record_1
391
+ Foo Create (0.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.901921"], ["updated_at", "2021-01-21 19:55:15.901921"]]
392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
393
+  (0.5ms) rollback transaction
394
+  (0.1ms) begin transaction
395
+  (0.1ms) SAVEPOINT active_record_1
396
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.910776"], ["updated_at", "2021-01-21 19:55:15.910776"]]
397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
398
+  (0.4ms) rollback transaction
399
+  (0.1ms) begin transaction
400
+  (0.1ms) SAVEPOINT active_record_1
401
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.919323"], ["updated_at", "2021-01-21 19:55:15.919323"]]
402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
403
+  (0.4ms) rollback transaction
404
+  (0.0ms) begin transaction
405
+  (0.1ms) SAVEPOINT active_record_1
406
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.927073"], ["updated_at", "2021-01-21 19:55:15.927073"]]
407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
408
+  (0.4ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+  (0.1ms) SAVEPOINT active_record_1
411
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.937493"], ["updated_at", "2021-01-21 19:55:15.937493"]]
412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
413
+  (0.6ms) rollback transaction
414
+  (0.0ms) begin transaction
415
+  (0.1ms) SAVEPOINT active_record_1
416
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.946219"], ["updated_at", "2021-01-21 19:55:15.946219"]]
417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
418
+  (0.4ms) rollback transaction
419
+  (0.1ms) begin transaction
420
+  (0.1ms) SAVEPOINT active_record_1
421
+ Foo Create (0.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.955100"], ["updated_at", "2021-01-21 19:55:15.955100"]]
422
+  (0.1ms) RELEASE SAVEPOINT active_record_1
423
+  (0.5ms) rollback transaction
424
+  (0.0ms) begin transaction
425
+  (0.1ms) SAVEPOINT active_record_1
426
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 19:55:15.963490"], ["updated_at", "2021-01-21 19:55:15.963490"]]
427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
428
+  (0.5ms) rollback transaction
429
+  (0.1ms) begin transaction
430
+  (0.1ms) rollback transaction
431
+  (0.0ms) begin transaction
432
+  (0.1ms) rollback transaction
433
+  (0.1ms) begin transaction
434
+  (0.1ms) SAVEPOINT active_record_1
435
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.002842"], ["updated_at", "2021-01-21 19:55:16.002842"]]
436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
437
+  (0.6ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+  (0.1ms) SAVEPOINT active_record_1
440
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.008583"], ["updated_at", "2021-01-21 19:55:16.008583"]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+  (0.4ms) rollback transaction
443
+  (0.0ms) begin transaction
444
+  (0.1ms) SAVEPOINT active_record_1
445
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.013096"], ["updated_at", "2021-01-21 19:55:16.013096"]]
446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
447
+  (0.5ms) rollback transaction
448
+  (0.1ms) begin transaction
449
+  (0.1ms) SAVEPOINT active_record_1
450
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.018887"], ["updated_at", "2021-01-21 19:55:16.018887"]]
451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
452
+  (0.6ms) rollback transaction
453
+  (0.1ms) begin transaction
454
+  (0.1ms) SAVEPOINT active_record_1
455
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.024508"], ["updated_at", "2021-01-21 19:55:16.024508"]]
456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
457
+  (0.5ms) rollback transaction
458
+  (0.0ms) begin transaction
459
+  (0.1ms) SAVEPOINT active_record_1
460
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.046718"], ["updated_at", "2021-01-21 19:55:16.046718"]]
461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
462
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = ? WHERE "people"."id" = ? [["global_registry_mdm_id", "c81340b2-7e57-4978-b6b9-396f21bb0bb2"], ["id", 1]]
463
+  (0.5ms) rollback transaction
464
+  (0.1ms) begin transaction
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+  (0.1ms) SAVEPOINT active_record_1
468
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
470
+  (0.6ms) rollback transaction
471
+  (0.0ms) begin transaction
472
+  (0.1ms) SAVEPOINT active_record_1
473
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
475
+  (0.4ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+  (0.1ms) SAVEPOINT active_record_1
478
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
479
+  (0.1ms) RELEASE SAVEPOINT active_record_1
480
+  (0.5ms) rollback transaction
481
+  (0.0ms) begin transaction
482
+  (0.1ms) SAVEPOINT active_record_1
483
+ Organization Create (0.6ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
485
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 1]]
486
+  (0.4ms) rollback transaction
487
+  (0.0ms) begin transaction
488
+  (0.1ms) SAVEPOINT active_record_1
489
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
491
+  (0.0ms) SAVEPOINT active_record_1
492
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
494
+  (0.5ms) rollback transaction
495
+  (0.0ms) begin transaction
496
+  (0.1ms) SAVEPOINT active_record_1
497
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "cd5da38a-c336-46a7-b818-dcdd51c4acde"], ["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
499
+  (0.0ms) SAVEPOINT active_record_1
500
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
502
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 2]]
503
+  (2.2ms) rollback transaction
504
+  (0.1ms) begin transaction
505
+  (0.1ms) SAVEPOINT active_record_1
506
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
508
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
509
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
510
+  (2.2ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+  (0.1ms) SAVEPOINT active_record_1
513
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
515
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
516
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
517
+  (0.4ms) rollback transaction
518
+  (0.0ms) begin transaction
519
+  (0.1ms) SAVEPOINT active_record_1
520
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
522
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
523
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
524
+  (0.4ms) rollback transaction
525
+  (0.1ms) begin transaction
526
+  (0.1ms) SAVEPOINT active_record_1
527
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
530
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
531
+  (0.4ms) rollback transaction
532
+  (0.0ms) begin transaction
533
+  (0.1ms) SAVEPOINT active_record_1
534
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
536
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
537
+  (0.5ms) rollback transaction
538
+  (0.1ms) begin transaction
539
+  (0.1ms) SAVEPOINT active_record_1
540
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
542
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
543
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
544
+  (0.4ms) rollback transaction
545
+  (0.0ms) begin transaction
546
+  (0.1ms) SAVEPOINT active_record_1
547
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
549
+  (0.4ms) rollback transaction
550
+  (0.0ms) begin transaction
551
+  (0.1ms) SAVEPOINT active_record_1
552
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
554
+  (0.4ms) rollback transaction
555
+  (0.1ms) begin transaction
556
+  (0.1ms) SAVEPOINT active_record_1
557
+ Address Create (0.4ms) INSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
559
+  (0.4ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+  (0.1ms) SAVEPOINT active_record_1
562
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
564
+  (0.1ms) SAVEPOINT active_record_1
565
+ Address Create (0.2ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
567
+  (0.4ms) rollback transaction
568
+  (0.0ms) begin transaction
569
+  (0.1ms) SAVEPOINT active_record_1
570
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
572
+  (0.0ms) SAVEPOINT active_record_1
573
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
575
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
576
+  (5.8ms) rollback transaction
577
+  (0.1ms) begin transaction
578
+  (0.1ms) SAVEPOINT active_record_1
579
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
581
+  (0.1ms) SAVEPOINT active_record_1
582
+ Address Create (0.2ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
584
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
585
+  (0.4ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+  (0.1ms) SAVEPOINT active_record_1
588
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
590
+  (0.1ms) SAVEPOINT active_record_1
591
+ Address Create (0.2ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
593
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
594
+  (0.5ms) rollback transaction
595
+  (0.0ms) begin transaction
596
+  (0.1ms) SAVEPOINT active_record_1
597
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
599
+  (0.0ms) SAVEPOINT active_record_1
600
+ Address Create (0.1ms) INSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
602
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
603
+  (0.4ms) rollback transaction
604
+  (0.0ms) begin transaction
605
+  (0.1ms) SAVEPOINT active_record_1
606
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
607
+  (0.1ms) RELEASE SAVEPOINT active_record_1
608
+  (0.1ms) SAVEPOINT active_record_1
609
+ Address Create (0.2ms) INSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
611
+  (0.5ms) rollback transaction
612
+  (0.0ms) begin transaction
613
+  (0.1ms) SAVEPOINT active_record_1
614
+ Community Create (0.5ms) INSERT INTO "communities" ("name", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Community"], ["infobase_id", 234], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
616
+ Community Update (0.1ms) UPDATE "communities" SET "global_registry_id" = ? WHERE "communities"."id" = ? [["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["id", 1]]
617
+  (0.5ms) rollback transaction
618
+  (0.0ms) begin transaction
619
+  (0.1ms) SAVEPOINT active_record_1
620
+ Assignment Create (0.5ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+  (0.4ms) rollback transaction
623
+  (0.1ms) begin transaction
624
+  (0.1ms) SAVEPOINT active_record_1
625
+ Assignment Create (0.5ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
627
+  (0.4ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+  (0.1ms) SAVEPOINT active_record_1
630
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
632
+  (0.1ms) SAVEPOINT active_record_1
633
+ Organization Create (0.3ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
635
+  (0.1ms) SAVEPOINT active_record_1
636
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
638
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
639
+  (0.5ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+  (0.1ms) SAVEPOINT active_record_1
642
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
644
+  (0.1ms) SAVEPOINT active_record_1
645
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
647
+  (0.0ms) SAVEPOINT active_record_1
648
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
650
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
651
+  (0.4ms) rollback transaction
652
+  (0.0ms) begin transaction
653
+  (0.1ms) SAVEPOINT active_record_1
654
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
656
+  (0.0ms) SAVEPOINT active_record_1
657
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
659
+  (0.0ms) SAVEPOINT active_record_1
660
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
661
+  (0.1ms) RELEASE SAVEPOINT active_record_1
662
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
663
+  (0.4ms) rollback transaction
664
+  (0.0ms) begin transaction
665
+  (0.1ms) SAVEPOINT active_record_1
666
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
668
+  (0.0ms) SAVEPOINT active_record_1
669
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
671
+  (0.1ms) SAVEPOINT active_record_1
672
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
674
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
675
+  (0.5ms) rollback transaction
676
+  (0.0ms) begin transaction
677
+  (0.1ms) SAVEPOINT active_record_1
678
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
680
+  (0.0ms) SAVEPOINT active_record_1
681
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
683
+  (0.1ms) SAVEPOINT active_record_1
684
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
686
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", nil], ["id", 1]]
687
+  (0.5ms) rollback transaction
688
+  (0.0ms) begin transaction
689
+  (0.1ms) SAVEPOINT active_record_1
690
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
691
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
692
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
694
+  (0.4ms) rollback transaction
695
+  (0.0ms) begin transaction
696
+  (0.1ms) SAVEPOINT active_record_1
697
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
698
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
699
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
701
+  (0.5ms) rollback transaction
702
+  (0.1ms) begin transaction
703
+  (0.1ms) SAVEPOINT active_record_1
704
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
705
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
706
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
708
+  (0.5ms) rollback transaction
709
+  (0.1ms) begin transaction
710
+  (0.1ms) SAVEPOINT active_record_1
711
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
713
+  (0.1ms) SAVEPOINT active_record_1
714
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
716
+  (0.1ms) SAVEPOINT active_record_1
717
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
719
+ Assignment Update (0.1ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = ? WHERE "assignments"."id" = ? [["assigned_by_gr_rel_id", "0fd8b8b8-76c9-11e7-b15c-129bd0521531"], ["id", 1]]
720
+  (0.4ms) rollback transaction
721
+  (0.1ms) begin transaction
722
+  (0.1ms) SAVEPOINT active_record_1
723
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
725
+  (0.1ms) SAVEPOINT active_record_1
726
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
727
+  (0.1ms) RELEASE SAVEPOINT active_record_1
728
+  (0.0ms) SAVEPOINT active_record_1
729
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
731
+  (0.4ms) rollback transaction
732
+  (0.1ms) begin transaction
733
+  (0.1ms) SAVEPOINT active_record_1
734
+ Area Create (0.4ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "0fdb70c5-f51e-4628-a1fe-caa37fae53cd"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
736
+  (0.0ms) SAVEPOINT active_record_1
737
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["area_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
739
+ Organization Update (0.1ms) UPDATE "organizations" SET "global_registry_area_id" = ? WHERE "organizations"."id" = ? [["global_registry_area_id", "c99d7d7e-8b14-4fe6-9c11-e5359ee03637"], ["id", 1]]
740
+  (0.4ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+  (0.1ms) SAVEPOINT active_record_1
743
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "0f9089a3-2b93-4de8-9b81-92be0261f325"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
745
+  (0.1ms) SAVEPOINT active_record_1
746
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
748
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", "420d2fd1-7a73-41ed-9d8f-5dc79b00a688"], ["id", 1]]
749
+  (0.5ms) rollback transaction
750
+  (0.0ms) begin transaction
751
+  (0.1ms) SAVEPOINT active_record_1
752
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
754
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ? [["id", 12345], ["LIMIT", 1]]
755
+  (0.4ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+  (0.1ms) SAVEPOINT active_record_1
758
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "7cdaf399-d449-4008-8c6b-3c64a2b2730c"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+  (0.0ms) SAVEPOINT active_record_1
761
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
763
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", "a4c030ce-13f2-44f5-8131-4003eb21c0ae"], ["id", 1]]
764
+  (0.6ms) rollback transaction
765
+  (0.1ms) begin transaction
766
+  (0.1ms) SAVEPOINT active_record_1
767
+ Community Create (0.4ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
769
+  (0.5ms) rollback transaction
770
+  (0.1ms) begin transaction
771
+  (0.1ms) SAVEPOINT active_record_1
772
+ Community Create (0.4ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "infobase_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
774
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", nil], ["id", 1]]
775
+  (0.5ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+  (0.1ms) SAVEPOINT active_record_1
778
+ Community Create (0.4ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
780
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
781
+  (0.4ms) rollback transaction
782
+  (2.2ms) SELECT sqlite_version(*)
783
+  (0.1ms) SELECT sqlite_version(*)
784
+  (0.1ms) DROP TABLE IF EXISTS "people"
785
+  (2.0ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
786
+  (1.6ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
787
+  (1.6ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
788
+  (0.2ms) DROP TABLE IF EXISTS "addresses"
789
+  (1.4ms) CREATE TABLE "addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "address1" varchar, "zip" varchar, "primary" boolean, "person_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
790
+  (1.4ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
791
+  (0.2ms) DROP TABLE IF EXISTS "organizations"
792
+  (1.4ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
793
+  (1.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
794
+  (1.2ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
795
+  (0.1ms) DROP TABLE IF EXISTS "assignments"
796
+  (1.2ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
797
+  (1.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
798
+  (1.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
799
+  (1.0ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
800
+  (0.2ms) DROP TABLE IF EXISTS "areas"
801
+  (1.3ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
802
+  (0.1ms) DROP TABLE IF EXISTS "countries"
803
+  (1.1ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
804
+  (0.1ms) DROP TABLE IF EXISTS "communities"
805
+  (1.0ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
806
+  (0.1ms) DROP TABLE IF EXISTS "foos"
807
+  (1.2ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
808
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
809
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
810
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
811
+  (1.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
812
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
813
+  (0.1ms) begin transaction
814
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 20:00:21.556762"], ["updated_at", "2021-01-21 20:00:21.556762"]]
815
+  (1.4ms) commit transaction
816
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
817
+  (0.1ms) SELECT sqlite_version(*)
818
+  (0.0ms) begin transaction
819
+  (0.1ms) rollback transaction
820
+  (0.0ms) begin transaction
821
+  (0.1ms) rollback transaction
822
+  (0.0ms) begin transaction
823
+  (0.1ms) rollback transaction
824
+  (0.0ms) begin transaction
825
+  (0.1ms) rollback transaction
826
+  (0.0ms) begin transaction
827
+  (0.1ms) rollback transaction
828
+  (0.0ms) begin transaction
829
+  (0.1ms) rollback transaction
830
+  (0.0ms) begin transaction
831
+  (0.0ms) rollback transaction
832
+  (0.0ms) begin transaction
833
+  (0.0ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+  (0.0ms) rollback transaction
836
+  (0.0ms) begin transaction
837
+  (0.1ms) rollback transaction
838
+  (0.0ms) begin transaction
839
+  (0.1ms) rollback transaction
840
+  (0.1ms) begin transaction
841
+  (0.1ms) rollback transaction
842
+  (0.1ms) begin transaction
843
+  (0.1ms) rollback transaction
844
+  (0.0ms) begin transaction
845
+  (0.0ms) rollback transaction
846
+  (0.0ms) begin transaction
847
+  (0.0ms) rollback transaction
848
+  (0.0ms) begin transaction
849
+  (0.1ms) SAVEPOINT active_record_1
850
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:22.985326"], ["updated_at", "2021-01-21 20:00:22.985326"]]
851
+  (0.2ms) RELEASE SAVEPOINT active_record_1
852
+  (0.1ms) SAVEPOINT active_record_1
853
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:22.989170"], ["updated_at", "2021-01-21 20:00:22.989170"]]
854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
855
+  (0.1ms) SAVEPOINT active_record_1
856
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2020-11-21 20:00:22.991911"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:22.992558"], ["updated_at", "2021-01-21 20:00:22.992558"]]
857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
858
+  (0.6ms) rollback transaction
859
+  (0.1ms) begin transaction
860
+  (0.1ms) SAVEPOINT active_record_1
861
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:22.997880"], ["updated_at", "2021-01-21 20:00:22.997880"]]
862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
863
+  (0.0ms) SAVEPOINT active_record_1
864
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.000522"], ["updated_at", "2021-01-21 20:00:23.000522"]]
865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
866
+  (0.0ms) SAVEPOINT active_record_1
867
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2020-11-21 20:00:23.002067"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:23.002385"], ["updated_at", "2021-01-21 20:00:23.002385"]]
868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
869
+  (0.1ms) SAVEPOINT active_record_1
870
+ Assignment Update (0.1ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2021-01-21 20:00:23.004566"], ["id", 1]]
871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
872
+  (0.4ms) rollback transaction
873
+  (0.0ms) begin transaction
874
+  (0.1ms) SAVEPOINT active_record_1
875
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.008048"], ["updated_at", "2021-01-21 20:00:23.008048"]]
876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
877
+  (0.0ms) SAVEPOINT active_record_1
878
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.010594"], ["updated_at", "2021-01-21 20:00:23.010594"]]
879
+  (0.1ms) RELEASE SAVEPOINT active_record_1
880
+  (0.1ms) SAVEPOINT active_record_1
881
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "abc"], ["role", "leader"], ["hired_at", "2020-11-21 20:00:23.012499"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:23.012872"], ["updated_at", "2021-01-21 20:00:23.012872"]]
882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
883
+  (0.0ms) SAVEPOINT active_record_1
884
+ Assignment Destroy (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+  (0.5ms) rollback transaction
887
+  (0.0ms) begin transaction
888
+  (0.1ms) SAVEPOINT active_record_1
889
+ Organization Create (0.5ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.018125"], ["updated_at", "2021-01-21 20:00:23.018125"]]
890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
891
+  (1.0ms) rollback transaction
892
+  (0.1ms) begin transaction
893
+  (0.1ms) SAVEPOINT active_record_1
894
+ Area Create (0.4ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.031632"], ["updated_at", "2021-01-21 20:00:23.031632"]]
895
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["created_at", "2021-01-21 20:00:23.032929"], ["updated_at", "2021-01-21 20:00:23.032929"]]
896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
897
+  (0.4ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+  (0.1ms) SAVEPOINT active_record_1
900
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.037174"], ["updated_at", "2021-01-21 20:00:23.037174"]]
901
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 20:00:23.038384"], ["updated_at", "2021-01-21 20:00:23.038384"]]
902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
903
+  (0.4ms) rollback transaction
904
+  (0.1ms) begin transaction
905
+  (0.1ms) SAVEPOINT active_record_1
906
+ Organization Create (0.5ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.042342"], ["updated_at", "2021-01-21 20:00:23.042342"]]
907
+ Area Create (0.1ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.043730"], ["updated_at", "2021-01-21 20:00:23.043730"]]
908
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["created_at", "2021-01-21 20:00:23.044365"], ["updated_at", "2021-01-21 20:00:23.044365"]]
909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
910
+  (0.4ms) rollback transaction
911
+  (0.0ms) begin transaction
912
+  (0.1ms) SAVEPOINT active_record_1
913
+ Organization Create (0.5ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.048875"], ["updated_at", "2021-01-21 20:00:23.048875"]]
914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
918
+  (0.4ms) rollback transaction
919
+  (0.0ms) begin transaction
920
+  (0.1ms) SAVEPOINT active_record_1
921
+ Area Create (0.4ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.053806"], ["updated_at", "2021-01-21 20:00:23.053806"]]
922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
923
+  (0.1ms) SAVEPOINT active_record_1
924
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 20:00:23.056477"], ["updated_at", "2021-01-21 20:00:23.056477"]]
925
+  (0.1ms) RELEASE SAVEPOINT active_record_1
926
+  (0.1ms) SAVEPOINT active_record_1
927
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
929
+  (0.5ms) rollback transaction
930
+  (0.1ms) begin transaction
931
+  (0.1ms) SAVEPOINT active_record_1
932
+ Organization Create (0.5ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.063205"], ["updated_at", "2021-01-21 20:00:23.063205"]]
933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
934
+  (0.0ms) SAVEPOINT active_record_1
935
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 20:00:23.065803"], ["updated_at", "2021-01-21 20:00:23.065803"]]
936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
937
+  (0.0ms) SAVEPOINT active_record_1
938
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
940
+  (0.4ms) rollback transaction
941
+  (0.0ms) begin transaction
942
+  (0.1ms) SAVEPOINT active_record_1
943
+ Area Create (0.5ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.069973"], ["updated_at", "2021-01-21 20:00:23.069973"]]
944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
945
+  (0.1ms) SAVEPOINT active_record_1
946
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.072387"], ["updated_at", "2021-01-21 20:00:23.072387"]]
947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
948
+  (0.0ms) SAVEPOINT active_record_1
949
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 20:00:23.074429"], ["updated_at", "2021-01-21 20:00:23.074429"]]
950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
951
+  (0.0ms) SAVEPOINT active_record_1
952
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
954
+  (0.5ms) rollback transaction
955
+  (0.0ms) begin transaction
956
+  (0.1ms) SAVEPOINT active_record_1
957
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.079653"], ["updated_at", "2021-01-21 20:00:23.079653"]]
958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
959
+  (0.4ms) rollback transaction
960
+  (0.0ms) begin transaction
961
+  (0.1ms) SAVEPOINT active_record_1
962
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.090285"], ["updated_at", "2021-01-21 20:00:23.090285"]]
963
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2021-01-21 20:00:23.091649"], ["updated_at", "2021-01-21 20:00:23.091649"]]
964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
965
+  (5.5ms) rollback transaction
966
+  (0.1ms) begin transaction
967
+  (0.1ms) SAVEPOINT active_record_1
968
+ Country Create (0.8ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.104156"], ["updated_at", "2021-01-21 20:00:23.104156"]]
969
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.106261"], ["updated_at", "2021-01-21 20:00:23.106261"]]
970
+  (0.1ms) RELEASE SAVEPOINT active_record_1
971
+  (0.5ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+  (0.1ms) SAVEPOINT active_record_1
974
+ Country Create (0.6ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.111835"], ["updated_at", "2021-01-21 20:00:23.111835"]]
975
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.113615"], ["updated_at", "2021-01-21 20:00:23.113615"]]
976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
977
+  (0.4ms) rollback transaction
978
+  (0.1ms) begin transaction
979
+  (0.1ms) SAVEPOINT active_record_1
980
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.118949"], ["updated_at", "2021-01-21 20:00:23.118949"]]
981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
982
+  (0.1ms) SAVEPOINT active_record_1
983
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2021-01-21 20:00:23.121771"], ["id", 1]]
984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
985
+  (1.1ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+  (0.1ms) SAVEPOINT active_record_1
988
+ Country Create (0.8ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.127987"], ["updated_at", "2021-01-21 20:00:23.127987"]]
989
+  (0.2ms) RELEASE SAVEPOINT active_record_1
990
+  (0.1ms) SAVEPOINT active_record_1
991
+ Namespaced::Person Create (0.8ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.132101"], ["updated_at", "2021-01-21 20:00:23.132101"]]
992
+  (0.2ms) RELEASE SAVEPOINT active_record_1
993
+  (0.1ms) SAVEPOINT active_record_1
994
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2021-01-21 20:00:23.137351"], ["id", 1]]
995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
996
+  (0.7ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+  (0.1ms) SAVEPOINT active_record_1
999
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.141921"], ["updated_at", "2021-01-21 20:00:23.141921"]]
1000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.1ms) SAVEPOINT active_record_1
1002
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.144353"], ["updated_at", "2021-01-21 20:00:23.144353"]]
1003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.2ms) SAVEPOINT active_record_1
1005
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_residence_id", nil], ["updated_at", "2021-01-21 20:00:23.147614"], ["id", 1]]
1006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1007
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", nil], ["id", 1]]
1008
+  (0.5ms) rollback transaction
1009
+  (0.0ms) begin transaction
1010
+  (0.1ms) SAVEPOINT active_record_1
1011
+ Country Create (0.5ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 20:00:23.153603"], ["updated_at", "2021-01-21 20:00:23.153603"]]
1012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1013
+  (0.1ms) SAVEPOINT active_record_1
1014
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Peru"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9963c"], ["created_at", "2021-01-21 20:00:23.156420"], ["updated_at", "2021-01-21 20:00:23.156420"]]
1015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1016
+  (0.0ms) SAVEPOINT active_record_1
1017
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.158303"], ["updated_at", "2021-01-21 20:00:23.158303"]]
1018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1019
+  (0.1ms) SAVEPOINT active_record_1
1020
+ Namespaced::Person Update (0.2ms) UPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_service_id", 2], ["updated_at", "2021-01-21 20:00:23.162063"], ["id", 1]]
1021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", nil], ["id", 1]]
1023
+  (0.5ms) rollback transaction
1024
+  (0.0ms) begin transaction
1025
+  (0.1ms) SAVEPOINT active_record_1
1026
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.190641"], ["updated_at", "2021-01-21 20:00:23.190641"]]
1027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1028
+  (0.1ms) SAVEPOINT active_record_1
1029
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
1030
+ Namespaced::Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
1031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032
+  (0.4ms) rollback transaction
1033
+  (0.0ms) begin transaction
1034
+  (0.1ms) SAVEPOINT active_record_1
1035
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 20:00:23.210697"], ["updated_at", "2021-01-21 20:00:23.210697"]]
1036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1037
+  (0.1ms) SAVEPOINT active_record_1
1038
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d99639"], ["created_at", "2021-01-21 20:00:23.213004"], ["updated_at", "2021-01-21 20:00:23.213004"]]
1039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1040
+  (0.1ms) SAVEPOINT active_record_1
1041
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 2], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.215614"], ["updated_at", "2021-01-21 20:00:23.215614"]]
1042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1043
+  (0.1ms) SAVEPOINT active_record_1
1044
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
1045
+ Namespaced::Person Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
1046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1047
+  (0.4ms) rollback transaction
1048
+  (0.1ms) begin transaction
1049
+  (0.1ms) SAVEPOINT active_record_1
1050
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.224050"], ["updated_at", "2021-01-21 20:00:23.224050"]]
1051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1052
+  (0.4ms) rollback transaction
1053
+  (0.0ms) begin transaction
1054
+  (0.1ms) SAVEPOINT active_record_1
1055
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.227713"], ["updated_at", "2021-01-21 20:00:23.227713"]]
1056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1057
+  (0.5ms) rollback transaction
1058
+  (0.1ms) begin transaction
1059
+  (0.1ms) SAVEPOINT active_record_1
1060
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.233374"], ["updated_at", "2021-01-21 20:00:23.233374"]]
1061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
+  (0.6ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+  (0.1ms) rollback transaction
1065
+  (0.1ms) begin transaction
1066
+  (0.1ms) SAVEPOINT active_record_1
1067
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.260039"], ["updated_at", "2021-01-21 20:00:23.260039"]]
1068
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1069
+  (0.7ms) rollback transaction
1070
+  (0.1ms) begin transaction
1071
+  (0.1ms) SAVEPOINT active_record_1
1072
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.268619"], ["updated_at", "2021-01-21 20:00:23.268619"]]
1073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.4ms) rollback transaction
1075
+  (0.0ms) begin transaction
1076
+  (0.1ms) SAVEPOINT active_record_1
1077
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.276803"], ["updated_at", "2021-01-21 20:00:23.276803"]]
1078
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079
+  (0.8ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+  (0.1ms) SAVEPOINT active_record_1
1082
+ Foo Create (0.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.287039"], ["updated_at", "2021-01-21 20:00:23.287039"]]
1083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1084
+  (0.4ms) rollback transaction
1085
+  (0.0ms) begin transaction
1086
+  (0.2ms) SAVEPOINT active_record_1
1087
+ Foo Create (0.9ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.298049"], ["updated_at", "2021-01-21 20:00:23.298049"]]
1088
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1089
+  (0.5ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+  (0.1ms) SAVEPOINT active_record_1
1092
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.308455"], ["updated_at", "2021-01-21 20:00:23.308455"]]
1093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1094
+  (0.4ms) rollback transaction
1095
+  (0.1ms) begin transaction
1096
+  (0.1ms) SAVEPOINT active_record_1
1097
+ Foo Create (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.317298"], ["updated_at", "2021-01-21 20:00:23.317298"]]
1098
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1099
+  (0.5ms) rollback transaction
1100
+  (0.1ms) begin transaction
1101
+  (0.1ms) SAVEPOINT active_record_1
1102
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2021-01-21 20:00:23.326669"], ["updated_at", "2021-01-21 20:00:23.326669"]]
1103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1104
+  (0.4ms) rollback transaction
1105
+  (0.1ms) begin transaction
1106
+  (0.1ms) rollback transaction
1107
+  (0.0ms) begin transaction
1108
+  (0.1ms) rollback transaction
1109
+  (0.0ms) begin transaction
1110
+  (0.1ms) SAVEPOINT active_record_1
1111
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.366801"], ["updated_at", "2021-01-21 20:00:23.366801"]]
1112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
+  (2.2ms) rollback transaction
1114
+  (0.1ms) begin transaction
1115
+  (0.1ms) SAVEPOINT active_record_1
1116
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.374410"], ["updated_at", "2021-01-21 20:00:23.374410"]]
1117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1118
+  (0.5ms) rollback transaction
1119
+  (0.1ms) begin transaction
1120
+  (0.1ms) SAVEPOINT active_record_1
1121
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.379460"], ["updated_at", "2021-01-21 20:00:23.379460"]]
1122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1123
+  (0.4ms) rollback transaction
1124
+  (0.1ms) begin transaction
1125
+  (0.1ms) SAVEPOINT active_record_1
1126
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.384875"], ["updated_at", "2021-01-21 20:00:23.384875"]]
1127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1128
+  (0.6ms) rollback transaction
1129
+  (0.1ms) begin transaction
1130
+  (0.1ms) SAVEPOINT active_record_1
1131
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.390679"], ["updated_at", "2021-01-21 20:00:23.390679"]]
1132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1133
+  (0.6ms) rollback transaction
1134
+  (0.1ms) begin transaction
1135
+  (0.1ms) SAVEPOINT active_record_1
1136
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.414044"], ["updated_at", "2021-01-21 20:00:23.414044"]]
1137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1138
+ Namespaced::Person Update (0.2ms) UPDATE "people" SET "global_registry_mdm_id" = ? WHERE "people"."id" = ? [["global_registry_mdm_id", "c81340b2-7e57-4978-b6b9-396f21bb0bb2"], ["id", 1]]
1139
+  (0.7ms) rollback transaction
1140
+  (0.1ms) begin transaction
1141
+  (0.1ms) rollback transaction
1142
+  (0.0ms) begin transaction
1143
+  (0.1ms) SAVEPOINT active_record_1
1144
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1146
+  (0.4ms) rollback transaction
1147
+  (0.0ms) begin transaction
1148
+  (0.1ms) SAVEPOINT active_record_1
1149
+ Namespaced::Person Create (0.8ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.5ms) rollback transaction
1152
+  (0.1ms) begin transaction
1153
+  (0.1ms) SAVEPOINT active_record_1
1154
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1156
+  (0.4ms) rollback transaction
1157
+  (0.0ms) begin transaction
1158
+  (0.1ms) SAVEPOINT active_record_1
1159
+ Organization Create (0.5ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1160
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1161
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 1]]
1162
+  (2.1ms) rollback transaction
1163
+  (0.1ms) begin transaction
1164
+  (0.1ms) SAVEPOINT active_record_1
1165
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1167
+  (0.1ms) SAVEPOINT active_record_1
1168
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1169
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1170
+  (2.2ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+  (0.1ms) SAVEPOINT active_record_1
1173
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "cd5da38a-c336-46a7-b818-dcdd51c4acde"], ["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1175
+  (0.0ms) SAVEPOINT active_record_1
1176
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1178
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 2]]
1179
+  (2.1ms) rollback transaction
1180
+  (0.0ms) begin transaction
1181
+  (0.1ms) SAVEPOINT active_record_1
1182
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1184
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
1185
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1186
+  (2.2ms) rollback transaction
1187
+  (0.1ms) begin transaction
1188
+  (0.1ms) SAVEPOINT active_record_1
1189
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1191
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
1192
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1193
+  (0.5ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+  (0.1ms) SAVEPOINT active_record_1
1196
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1198
+ Namespaced::Person Update (0.2ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
1199
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1200
+  (0.4ms) rollback transaction
1201
+  (0.0ms) begin transaction
1202
+  (0.1ms) SAVEPOINT active_record_1
1203
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1205
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
1206
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1207
+  (0.5ms) rollback transaction
1208
+  (0.1ms) begin transaction
1209
+  (0.1ms) SAVEPOINT active_record_1
1210
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1212
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1213
+  (0.4ms) rollback transaction
1214
+  (0.0ms) begin transaction
1215
+  (0.1ms) SAVEPOINT active_record_1
1216
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1218
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
1219
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
1220
+  (2.3ms) rollback transaction
1221
+  (0.1ms) begin transaction
1222
+  (0.1ms) SAVEPOINT active_record_1
1223
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1225
+  (0.5ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+  (0.1ms) SAVEPOINT active_record_1
1228
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1230
+  (0.6ms) rollback transaction
1231
+  (0.1ms) begin transaction
1232
+  (0.1ms) SAVEPOINT active_record_1
1233
+ Address Create (0.8ms) INSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1235
+  (0.6ms) rollback transaction
1236
+  (0.1ms) begin transaction
1237
+  (0.1ms) SAVEPOINT active_record_1
1238
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1240
+  (0.1ms) SAVEPOINT active_record_1
1241
+ Address Create (0.2ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1242
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1243
+  (2.1ms) rollback transaction
1244
+  (0.1ms) begin transaction
1245
+  (0.1ms) SAVEPOINT active_record_1
1246
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1248
+  (0.1ms) SAVEPOINT active_record_1
1249
+ Address Create (0.2ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1251
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
1252
+  (6.1ms) rollback transaction
1253
+  (0.1ms) begin transaction
1254
+  (0.1ms) SAVEPOINT active_record_1
1255
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1257
+  (0.0ms) SAVEPOINT active_record_1
1258
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1260
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
1261
+  (2.1ms) rollback transaction
1262
+  (0.1ms) begin transaction
1263
+  (0.1ms) SAVEPOINT active_record_1
1264
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1266
+  (0.0ms) SAVEPOINT active_record_1
1267
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1269
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
1270
+  (0.4ms) rollback transaction
1271
+  (0.0ms) begin transaction
1272
+  (0.1ms) SAVEPOINT active_record_1
1273
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1275
+  (0.0ms) SAVEPOINT active_record_1
1276
+ Address Create (0.1ms) INSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1278
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
1279
+  (0.6ms) rollback transaction
1280
+  (0.1ms) begin transaction
1281
+  (0.1ms) SAVEPOINT active_record_1
1282
+ Namespaced::Person Create (0.6ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1284
+  (0.1ms) SAVEPOINT active_record_1
1285
+ Address Create (0.2ms) INSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1287
+  (0.5ms) rollback transaction
1288
+  (0.0ms) begin transaction
1289
+  (0.1ms) SAVEPOINT active_record_1
1290
+ Community Create (0.7ms) INSERT INTO "communities" ("name", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Community"], ["infobase_id", 234], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1292
+ Community Update (0.1ms) UPDATE "communities" SET "global_registry_id" = ? WHERE "communities"."id" = ? [["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["id", 1]]
1293
+  (0.4ms) rollback transaction
1294
+  (0.0ms) begin transaction
1295
+  (0.1ms) SAVEPOINT active_record_1
1296
+ Assignment Create (0.5ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1298
+  (0.4ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+  (0.1ms) SAVEPOINT active_record_1
1301
+ Assignment Create (0.5ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.4ms) rollback transaction
1304
+  (0.0ms) begin transaction
1305
+  (0.1ms) SAVEPOINT active_record_1
1306
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1308
+  (0.1ms) SAVEPOINT active_record_1
1309
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1311
+  (0.1ms) SAVEPOINT active_record_1
1312
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1314
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
1315
+  (0.5ms) rollback transaction
1316
+  (0.0ms) begin transaction
1317
+  (0.1ms) SAVEPOINT active_record_1
1318
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1320
+  (0.0ms) SAVEPOINT active_record_1
1321
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1323
+  (0.1ms) SAVEPOINT active_record_1
1324
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1326
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
1327
+  (0.5ms) rollback transaction
1328
+  (0.0ms) begin transaction
1329
+  (0.1ms) SAVEPOINT active_record_1
1330
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1332
+  (0.1ms) SAVEPOINT active_record_1
1333
+ Organization Create (0.3ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1335
+  (0.1ms) SAVEPOINT active_record_1
1336
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1338
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
1339
+  (0.5ms) rollback transaction
1340
+  (0.0ms) begin transaction
1341
+  (0.1ms) SAVEPOINT active_record_1
1342
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1344
+  (0.0ms) SAVEPOINT active_record_1
1345
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1347
+  (0.1ms) SAVEPOINT active_record_1
1348
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1350
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
1351
+  (0.5ms) rollback transaction
1352
+  (0.0ms) begin transaction
1353
+  (0.1ms) SAVEPOINT active_record_1
1354
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1356
+  (0.1ms) SAVEPOINT active_record_1
1357
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1359
+  (0.1ms) SAVEPOINT active_record_1
1360
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1362
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", nil], ["id", 1]]
1363
+  (0.5ms) rollback transaction
1364
+  (0.0ms) begin transaction
1365
+  (0.1ms) SAVEPOINT active_record_1
1366
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1367
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1368
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1370
+  (0.4ms) rollback transaction
1371
+  (0.1ms) begin transaction
1372
+  (0.1ms) SAVEPOINT active_record_1
1373
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1374
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1375
+ Assignment Create (0.3ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1376
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1377
+  (0.7ms) rollback transaction
1378
+  (0.1ms) begin transaction
1379
+  (0.1ms) SAVEPOINT active_record_1
1380
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1381
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1382
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1384
+  (0.6ms) rollback transaction
1385
+  (0.1ms) begin transaction
1386
+  (0.1ms) SAVEPOINT active_record_1
1387
+ Namespaced::Person Create (0.7ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1389
+  (0.1ms) SAVEPOINT active_record_1
1390
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1392
+  (0.0ms) SAVEPOINT active_record_1
1393
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1395
+ Assignment Update (0.1ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = ? WHERE "assignments"."id" = ? [["assigned_by_gr_rel_id", "0fd8b8b8-76c9-11e7-b15c-129bd0521531"], ["id", 1]]
1396
+  (0.5ms) rollback transaction
1397
+  (0.1ms) begin transaction
1398
+  (0.1ms) SAVEPOINT active_record_1
1399
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1401
+  (0.0ms) SAVEPOINT active_record_1
1402
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1404
+  (0.0ms) SAVEPOINT active_record_1
1405
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1407
+  (5.8ms) rollback transaction
1408
+  (0.1ms) begin transaction
1409
+  (0.1ms) SAVEPOINT active_record_1
1410
+ Area Create (0.5ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "0fdb70c5-f51e-4628-a1fe-caa37fae53cd"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1412
+  (0.0ms) SAVEPOINT active_record_1
1413
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["area_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1415
+ Organization Update (0.1ms) UPDATE "organizations" SET "global_registry_area_id" = ? WHERE "organizations"."id" = ? [["global_registry_area_id", "c99d7d7e-8b14-4fe6-9c11-e5359ee03637"], ["id", 1]]
1416
+  (0.4ms) rollback transaction
1417
+  (0.0ms) begin transaction
1418
+  (0.1ms) SAVEPOINT active_record_1
1419
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "0f9089a3-2b93-4de8-9b81-92be0261f325"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1421
+  (0.0ms) SAVEPOINT active_record_1
1422
+ Namespaced::Person Create (0.1ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1424
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", "420d2fd1-7a73-41ed-9d8f-5dc79b00a688"], ["id", 1]]
1425
+  (0.4ms) rollback transaction
1426
+  (0.0ms) begin transaction
1427
+  (0.1ms) SAVEPOINT active_record_1
1428
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1430
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ? [["id", 12345], ["LIMIT", 1]]
1431
+  (0.4ms) rollback transaction
1432
+  (0.0ms) begin transaction
1433
+  (0.1ms) SAVEPOINT active_record_1
1434
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "7cdaf399-d449-4008-8c6b-3c64a2b2730c"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1436
+  (0.0ms) SAVEPOINT active_record_1
1437
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1439
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", "a4c030ce-13f2-44f5-8131-4003eb21c0ae"], ["id", 1]]
1440
+  (0.4ms) rollback transaction
1441
+  (0.1ms) begin transaction
1442
+  (0.1ms) SAVEPOINT active_record_1
1443
+ Community Create (0.8ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1445
+  (0.4ms) rollback transaction
1446
+  (0.0ms) begin transaction
1447
+  (0.1ms) SAVEPOINT active_record_1
1448
+ Community Create (0.4ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "infobase_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1450
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", nil], ["id", 1]]
1451
+  (0.4ms) rollback transaction
1452
+  (0.1ms) begin transaction
1453
+  (0.1ms) SAVEPOINT active_record_1
1454
+ Community Create (0.4ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
1455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1456
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
1457
+  (0.4ms) rollback transaction