global-registry-bindings 0.1.5 → 0.1.6

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
2
  SHA1:
3
- metadata.gz: 525e05cabeac2282b366adfaeae74c6c46fcf12b
4
- data.tar.gz: e353b1f107438aa2a9fec74f5bd4dd6f60aac0a2
3
+ metadata.gz: 9b4f9c564a05de5df1a37a03b9fdf89f70505b62
4
+ data.tar.gz: 6077e6f810950c1b9e6f1050af020d68dd010ec9
5
5
  SHA512:
6
- metadata.gz: 3abca6d0c62f254d357a4666b854ec3300b0df710f583e7787df9750d1887ed01e7d9039314d800bf3335164a447f85d735e46d443cc237aded5f2e445019d21
7
- data.tar.gz: b34d001e8531e90c94cd07a36618b700e8d32f2ee847d0178f9300f4b0989e25de11e6707dcc3387cbaaf2f9fc4a885da733de8cda63879a059a7da8700a8bee
6
+ metadata.gz: 83d302711c38f6a9d885eb65d1e1a3f349236745ce7d9cbf544ddcf82815540afba12aca111c8c1dac0e9d899bac73db4b5d60e8ddeb37e3be795cb508fdaa31
7
+ data.tar.gz: bdcc65199aaf5122496fbfd0f0d0a1f4fb2dd05cbc48f7d6eaae85cc387f46eea3dffcd6c7894bb307e053f3a69caacedd83f4fee4d14548a4c89221e2108d76
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.1.5'
5
+ VERSION = '0.1.6'
6
6
  end
7
7
  end
@@ -156054,3 +156054,615 @@ global-registry-bindings: Unknown options (binding)
156054
156054
   (0.0ms) RELEASE SAVEPOINT active_record_1
156055
156055
  SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
156056
156056
   (0.0ms) rollback transaction
156057
+  (0.1ms) DROP TABLE IF EXISTS "people"
156058
+  (1.5ms) SELECT sqlite_version(*)
156059
+  (0.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" 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 NOT NULL, "updated_at" datetime NOT NULL)
156060
+  (0.1ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
156061
+  (0.3ms)  SELECT sql
156062
+ FROM sqlite_master
156063
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
156064
+ UNION ALL
156065
+ SELECT sql
156066
+ FROM sqlite_temp_master
156067
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
156068
+ 
156069
+  (0.1ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
156070
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
156071
+  (0.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 NOT NULL, "updated_at" datetime NOT NULL)
156072
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
156073
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
156074
+  (0.1ms) 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 NOT NULL, "updated_at" datetime NOT NULL)
156075
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
156076
+  (0.0ms)  SELECT sql
156077
+ FROM sqlite_master
156078
+ WHERE name='index_organizations_on_parent_id' AND type='index'
156079
+ UNION ALL
156080
+ SELECT sql
156081
+ FROM sqlite_temp_master
156082
+ WHERE name='index_organizations_on_parent_id' AND type='index'
156083
+ 
156084
+  (0.1ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
156085
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
156086
+  (0.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 NOT NULL, "updated_at" datetime NOT NULL)
156087
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
156088
+  (0.0ms)  SELECT sql
156089
+ FROM sqlite_master
156090
+ WHERE name='index_assignments_on_person_id' AND type='index'
156091
+ UNION ALL
156092
+ SELECT sql
156093
+ FROM sqlite_temp_master
156094
+ WHERE name='index_assignments_on_person_id' AND type='index'
156095
+ 
156096
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
156097
+  (0.1ms)  SELECT sql
156098
+ FROM sqlite_master
156099
+ WHERE name='index_assignments_on_organization_id' AND type='index'
156100
+ UNION ALL
156101
+ SELECT sql
156102
+ FROM sqlite_temp_master
156103
+ WHERE name='index_assignments_on_organization_id' AND type='index'
156104
+ 
156105
+  (0.0ms)  SELECT sql
156106
+ FROM sqlite_master
156107
+ WHERE name='index_assignments_on_person_id' AND type='index'
156108
+ UNION ALL
156109
+ SELECT sql
156110
+ FROM sqlite_temp_master
156111
+ WHERE name='index_assignments_on_person_id' AND type='index'
156112
+ 
156113
+  (0.1ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
156114
+  (0.0ms) DROP TABLE IF EXISTS "areas"
156115
+  (0.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 NOT NULL, "updated_at" datetime NOT NULL)
156116
+  (0.0ms) DROP TABLE IF EXISTS "countries"
156117
+  (0.2ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
156118
+  (0.1ms) DROP TABLE IF EXISTS "communities"
156119
+  (0.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 NOT NULL, "updated_at" datetime NOT NULL)
156120
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
156121
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
156122
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
156123
+  (0.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
156124
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
156125
+  (0.1ms) begin transaction
156126
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-08-14 14:47:06.542742"], ["updated_at", "2017-08-14 14:47:06.542742"]]
156127
+  (0.0ms) commit transaction
156128
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
156129
+  (0.0ms) begin transaction
156130
+  (0.0ms) commit transaction
156131
+  (0.1ms) begin transaction
156132
+  (0.1ms) rollback transaction
156133
+  (0.0ms) begin transaction
156134
+  (0.1ms) rollback transaction
156135
+  (0.0ms) begin transaction
156136
+  (0.0ms) rollback transaction
156137
+  (0.0ms) begin transaction
156138
+  (0.1ms) rollback transaction
156139
+  (0.0ms) begin transaction
156140
+  (0.1ms) rollback transaction
156141
+  (0.1ms) begin transaction
156142
+  (0.1ms) rollback transaction
156143
+  (0.0ms) begin transaction
156144
+  (0.0ms) rollback transaction
156145
+  (0.0ms) begin transaction
156146
+  (0.0ms) rollback transaction
156147
+  (0.0ms) begin transaction
156148
+  (0.0ms) rollback transaction
156149
+  (0.0ms) begin transaction
156150
+  (0.0ms) SAVEPOINT active_record_1
156151
+ SQL (0.2ms) 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", "2017-08-14 14:47:07.134864"], ["updated_at", "2017-08-14 14:47:07.134864"]]
156152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156153
+  (0.1ms) SAVEPOINT active_record_1
156154
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.139043"], ["updated_at", "2017-08-14 14:47:07.139043"]]
156155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156156
+  (0.0ms) SAVEPOINT active_record_1
156157
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-06-14 14:47:07.141130"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:47:07.141982"], ["updated_at", "2017-08-14 14:47:07.141982"]]
156158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156159
+  (0.1ms) rollback transaction
156160
+  (0.0ms) begin transaction
156161
+  (0.1ms) SAVEPOINT active_record_1
156162
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.146838"], ["updated_at", "2017-08-14 14:47:07.146838"]]
156163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156164
+  (0.0ms) SAVEPOINT active_record_1
156165
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.149543"], ["updated_at", "2017-08-14 14:47:07.149543"]]
156166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156167
+  (0.1ms) SAVEPOINT active_record_1
156168
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-06-14 14:47:07.151111"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:47:07.151676"], ["updated_at", "2017-08-14 14:47:07.151676"]]
156169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156170
+  (0.1ms) SAVEPOINT active_record_1
156171
+ SQL (0.1ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2017-08-14 14:47:07.154089"], ["id", 1]]
156172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156173
+  (0.1ms) rollback transaction
156174
+  (0.1ms) begin transaction
156175
+  (0.0ms) SAVEPOINT active_record_1
156176
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.158489"], ["updated_at", "2017-08-14 14:47:07.158489"]]
156177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156178
+  (0.0ms) SAVEPOINT active_record_1
156179
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.161570"], ["updated_at", "2017-08-14 14:47:07.161570"]]
156180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156181
+  (0.0ms) SAVEPOINT active_record_1
156182
+ SQL (0.1ms) 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", "2017-06-14 14:47:07.163327"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:47:07.163906"], ["updated_at", "2017-08-14 14:47:07.163906"]]
156183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156184
+  (0.0ms) SAVEPOINT active_record_1
156185
+ SQL (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
156186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156187
+  (0.1ms) rollback transaction
156188
+  (0.0ms) begin transaction
156189
+  (0.0ms) SAVEPOINT active_record_1
156190
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.168988"], ["updated_at", "2017-08-14 14:47:07.168988"]]
156191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156192
+  (0.0ms) rollback transaction
156193
+  (0.0ms) begin transaction
156194
+  (0.0ms) SAVEPOINT active_record_1
156195
+ SQL (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", "t"], ["created_at", "2017-08-14 14:47:07.178060"], ["updated_at", "2017-08-14 14:47:07.178060"]]
156196
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["area_id", 1], ["created_at", "2017-08-14 14:47:07.178814"], ["updated_at", "2017-08-14 14:47:07.178814"]]
156197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156198
+  (0.1ms) rollback transaction
156199
+  (0.0ms) begin transaction
156200
+  (0.0ms) SAVEPOINT active_record_1
156201
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.184063"], ["updated_at", "2017-08-14 14:47:07.184063"]]
156202
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["parent_id", 1], ["created_at", "2017-08-14 14:47:07.184869"], ["updated_at", "2017-08-14 14:47:07.184869"]]
156203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156204
+  (0.0ms) rollback transaction
156205
+  (0.0ms) begin transaction
156206
+  (0.1ms) SAVEPOINT active_record_1
156207
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.190041"], ["updated_at", "2017-08-14 14:47:07.190041"]]
156208
+ SQL (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", "t"], ["created_at", "2017-08-14 14:47:07.191056"], ["updated_at", "2017-08-14 14:47:07.191056"]]
156209
+ SQL (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", "2017-08-14"], ["parent_id", 1], ["area_id", 1], ["created_at", "2017-08-14 14:47:07.191697"], ["updated_at", "2017-08-14 14:47:07.191697"]]
156210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156211
+  (0.0ms) rollback transaction
156212
+  (0.0ms) begin transaction
156213
+  (0.0ms) SAVEPOINT active_record_1
156214
+ SQL (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.196482"], ["updated_at", "2017-08-14 14:47:07.196482"]]
156215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156216
+  (0.0ms) SAVEPOINT active_record_1
156217
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
156218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156219
+  (0.0ms) rollback transaction
156220
+  (0.0ms) begin transaction
156221
+  (0.0ms) SAVEPOINT active_record_1
156222
+ SQL (0.1ms) 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", "t"], ["created_at", "2017-08-14 14:47:07.200770"], ["updated_at", "2017-08-14 14:47:07.200770"]]
156223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156224
+  (0.0ms) SAVEPOINT active_record_1
156225
+ SQL (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", "2017-08-14"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2017-08-14 14:47:07.202752"], ["updated_at", "2017-08-14 14:47:07.202752"]]
156226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156227
+  (0.0ms) SAVEPOINT active_record_1
156228
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
156229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156230
+  (0.0ms) rollback transaction
156231
+  (0.0ms) begin transaction
156232
+  (0.0ms) SAVEPOINT active_record_1
156233
+ SQL (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.208015"], ["updated_at", "2017-08-14 14:47:07.208015"]]
156234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156235
+  (0.0ms) SAVEPOINT active_record_1
156236
+ SQL (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", "2017-08-14"], ["parent_id", 1], ["created_at", "2017-08-14 14:47:07.210032"], ["updated_at", "2017-08-14 14:47:07.210032"]]
156237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156238
+  (0.0ms) SAVEPOINT active_record_1
156239
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
156240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156241
+  (0.0ms) rollback transaction
156242
+  (0.0ms) begin transaction
156243
+  (0.0ms) SAVEPOINT active_record_1
156244
+ SQL (0.1ms) 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", "t"], ["created_at", "2017-08-14 14:47:07.213780"], ["updated_at", "2017-08-14 14:47:07.213780"]]
156245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156246
+  (0.0ms) SAVEPOINT active_record_1
156247
+ SQL (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-08-14"], ["created_at", "2017-08-14 14:47:07.215408"], ["updated_at", "2017-08-14 14:47:07.215408"]]
156248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156249
+  (0.0ms) SAVEPOINT active_record_1
156250
+ SQL (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", "2017-08-14"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2017-08-14 14:47:07.217306"], ["updated_at", "2017-08-14 14:47:07.217306"]]
156251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156252
+  (0.0ms) SAVEPOINT active_record_1
156253
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
156254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156255
+  (0.0ms) rollback transaction
156256
+  (0.0ms) begin transaction
156257
+  (0.0ms) SAVEPOINT active_record_1
156258
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.222434"], ["updated_at", "2017-08-14 14:47:07.222434"]]
156259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156260
+  (0.1ms) rollback transaction
156261
+  (0.0ms) begin transaction
156262
+  (0.1ms) SAVEPOINT active_record_1
156263
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:47:07.231447"], ["updated_at", "2017-08-14 14:47:07.231447"]]
156264
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.232238"], ["updated_at", "2017-08-14 14:47:07.232238"]]
156265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156266
+  (0.1ms) rollback transaction
156267
+  (0.0ms) begin transaction
156268
+  (0.1ms) SAVEPOINT active_record_1
156269
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:47:07.238393"], ["updated_at", "2017-08-14 14:47:07.238393"]]
156270
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.239137"], ["updated_at", "2017-08-14 14:47:07.239137"]]
156271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156272
+  (0.0ms) rollback transaction
156273
+  (0.0ms) begin transaction
156274
+  (0.1ms) SAVEPOINT active_record_1
156275
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:47:07.244346"], ["updated_at", "2017-08-14 14:47:07.244346"]]
156276
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.245096"], ["updated_at", "2017-08-14 14:47:07.245096"]]
156277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156278
+  (0.0ms) rollback transaction
156279
+  (0.0ms) begin transaction
156280
+  (0.0ms) SAVEPOINT active_record_1
156281
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.250042"], ["updated_at", "2017-08-14 14:47:07.250042"]]
156282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156283
+  (0.0ms) SAVEPOINT active_record_1
156284
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-08-14 14:47:07.252247"], ["id", 1]]
156285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156286
+  (0.0ms) rollback transaction
156287
+  (0.0ms) begin transaction
156288
+  (0.0ms) SAVEPOINT active_record_1
156289
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:47:07.255305"], ["updated_at", "2017-08-14 14:47:07.255305"]]
156290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156291
+  (0.0ms) SAVEPOINT active_record_1
156292
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.257019"], ["updated_at", "2017-08-14 14:47:07.257019"]]
156293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156294
+  (0.0ms) SAVEPOINT active_record_1
156295
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-08-14 14:47:07.260093"], ["id", 1]]
156296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156297
+  (0.0ms) rollback transaction
156298
+  (0.0ms) begin transaction
156299
+  (0.0ms) SAVEPOINT active_record_1
156300
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:47:07.263554"], ["updated_at", "2017-08-14 14:47:07.263554"]]
156301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156302
+  (0.0ms) SAVEPOINT active_record_1
156303
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.265366"], ["updated_at", "2017-08-14 14:47:07.265366"]]
156304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156305
+  (0.0ms) SAVEPOINT active_record_1
156306
+ SQL (0.1ms) UPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_residence_id", nil], ["updated_at", "2017-08-14 14:47:07.268296"], ["id", 1]]
156307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156308
+ SQL (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
156309
+  (0.0ms) rollback transaction
156310
+  (0.0ms) begin transaction
156311
+  (0.0ms) SAVEPOINT active_record_1
156312
+ SQL (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2017-08-14 14:47:07.273065"], ["updated_at", "2017-08-14 14:47:07.273065"]]
156313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156314
+  (0.0ms) SAVEPOINT active_record_1
156315
+ SQL (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", "2017-08-14 14:47:07.274611"], ["updated_at", "2017-08-14 14:47:07.274611"]]
156316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156317
+  (0.0ms) SAVEPOINT active_record_1
156318
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.276309"], ["updated_at", "2017-08-14 14:47:07.276309"]]
156319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156320
+  (0.1ms) SAVEPOINT active_record_1
156321
+ SQL (0.1ms) UPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_service_id", 2], ["updated_at", "2017-08-14 14:47:07.281697"], ["id", 1]]
156322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156323
+ SQL (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
156324
+  (0.0ms) rollback transaction
156325
+  (0.0ms) begin transaction
156326
+  (0.0ms) SAVEPOINT active_record_1
156327
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.308949"], ["updated_at", "2017-08-14 14:47:07.308949"]]
156328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156329
+  (0.0ms) SAVEPOINT active_record_1
156330
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
156331
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
156332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156333
+  (0.1ms) rollback transaction
156334
+  (0.0ms) begin transaction
156335
+  (0.1ms) SAVEPOINT active_record_1
156336
+ SQL (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2017-08-14 14:47:07.325692"], ["updated_at", "2017-08-14 14:47:07.325692"]]
156337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156338
+  (0.0ms) SAVEPOINT active_record_1
156339
+ SQL (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", "2017-08-14 14:47:07.327505"], ["updated_at", "2017-08-14 14:47:07.327505"]]
156340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156341
+  (0.0ms) SAVEPOINT active_record_1
156342
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.329501"], ["updated_at", "2017-08-14 14:47:07.329501"]]
156343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156344
+  (0.0ms) SAVEPOINT active_record_1
156345
+ Address Load (0.0ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
156346
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
156347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156348
+  (0.0ms) rollback transaction
156349
+  (0.0ms) begin transaction
156350
+  (0.0ms) rollback transaction
156351
+  (0.0ms) begin transaction
156352
+  (0.0ms) rollback transaction
156353
+  (0.0ms) begin transaction
156354
+  (0.1ms) rollback transaction
156355
+  (0.7ms) begin transaction
156356
+  (0.1ms) SAVEPOINT active_record_1
156357
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.370694"], ["updated_at", "2017-08-14 14:47:07.370694"]]
156358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156359
+  (0.1ms) rollback transaction
156360
+  (0.0ms) begin transaction
156361
+  (0.0ms) SAVEPOINT active_record_1
156362
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.374934"], ["updated_at", "2017-08-14 14:47:07.374934"]]
156363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156364
+  (0.1ms) rollback transaction
156365
+  (0.1ms) begin transaction
156366
+  (0.1ms) SAVEPOINT active_record_1
156367
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.379891"], ["updated_at", "2017-08-14 14:47:07.379891"]]
156368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156369
+  (0.1ms) rollback transaction
156370
+  (0.1ms) begin transaction
156371
+  (0.1ms) SAVEPOINT active_record_1
156372
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.384960"], ["updated_at", "2017-08-14 14:47:07.384960"]]
156373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156374
+  (0.0ms) rollback transaction
156375
+  (0.0ms) begin transaction
156376
+  (0.1ms) SAVEPOINT active_record_1
156377
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.393392"], ["updated_at", "2017-08-14 14:47:07.393392"]]
156378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156379
+  (0.1ms) rollback transaction
156380
+  (0.0ms) begin transaction
156381
+  (0.1ms) SAVEPOINT active_record_1
156382
+ SQL (0.1ms) 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", "2017-08-14 14:47:07.409752"], ["updated_at", "2017-08-14 14:47:07.409752"]]
156383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156384
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
156385
+  (0.1ms) rollback transaction
156386
+  (0.0ms) begin transaction
156387
+  (0.0ms) rollback transaction
156388
+  (0.0ms) begin transaction
156389
+  (0.0ms) SAVEPOINT active_record_1
156390
+ SQL (0.0ms) 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"]]
156391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156392
+  (0.1ms) rollback transaction
156393
+  (0.1ms) begin transaction
156394
+  (0.0ms) SAVEPOINT active_record_1
156395
+ SQL (0.0ms) 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"]]
156396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156397
+  (0.0ms) rollback transaction
156398
+  (0.0ms) begin transaction
156399
+  (0.0ms) SAVEPOINT active_record_1
156400
+ SQL (0.0ms) 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"]]
156401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156402
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
156403
+  (0.1ms) rollback transaction
156404
+  (0.0ms) begin transaction
156405
+  (0.0ms) SAVEPOINT active_record_1
156406
+ SQL (0.0ms) 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"]]
156407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156408
+  (0.0ms) SAVEPOINT active_record_1
156409
+ SQL (0.0ms) 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"]]
156410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156411
+  (0.1ms) rollback transaction
156412
+  (0.0ms) begin transaction
156413
+  (0.0ms) SAVEPOINT active_record_1
156414
+ SQL (0.0ms) 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"]]
156415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156416
+  (0.0ms) SAVEPOINT active_record_1
156417
+ SQL (0.0ms) 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"]]
156418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156419
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
156420
+  (0.1ms) rollback transaction
156421
+  (0.0ms) begin transaction
156422
+  (0.0ms) SAVEPOINT active_record_1
156423
+ SQL (0.0ms) 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"]]
156424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156425
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
156426
+  (0.0ms) rollback transaction
156427
+  (0.0ms) begin transaction
156428
+  (0.0ms) SAVEPOINT active_record_1
156429
+ SQL (0.0ms) 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"]]
156430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156431
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
156432
+  (0.0ms) rollback transaction
156433
+  (0.1ms) begin transaction
156434
+  (0.0ms) SAVEPOINT active_record_1
156435
+ SQL (0.0ms) 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"]]
156436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156437
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
156438
+  (0.1ms) rollback transaction
156439
+  (0.0ms) begin transaction
156440
+  (0.0ms) SAVEPOINT active_record_1
156441
+ SQL (0.0ms) 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"]]
156442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156443
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
156444
+  (0.0ms) rollback transaction
156445
+  (0.0ms) begin transaction
156446
+  (0.0ms) SAVEPOINT active_record_1
156447
+ SQL (0.0ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["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"]]
156448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156449
+  (0.1ms) rollback transaction
156450
+  (0.0ms) begin transaction
156451
+  (0.0ms) SAVEPOINT active_record_1
156452
+ SQL (0.0ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["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"]]
156453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156454
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
156455
+  (0.1ms) rollback transaction
156456
+  (0.0ms) begin transaction
156457
+  (0.0ms) SAVEPOINT active_record_1
156458
+ SQL (0.0ms) INSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", "t"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156460
+  (0.0ms) rollback transaction
156461
+  (0.0ms) begin transaction
156462
+  (0.0ms) SAVEPOINT active_record_1
156463
+ SQL (0.0ms) 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"]]
156464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156465
+  (0.0ms) SAVEPOINT active_record_1
156466
+ SQL (0.0ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", "t"], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156468
+  (0.1ms) rollback transaction
156469
+  (0.1ms) begin transaction
156470
+  (0.0ms) SAVEPOINT active_record_1
156471
+ SQL (0.0ms) 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"]]
156472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156473
+  (0.0ms) SAVEPOINT active_record_1
156474
+ SQL (0.0ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", "t"], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156476
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
156477
+  (0.1ms) rollback transaction
156478
+  (0.0ms) begin transaction
156479
+  (0.0ms) SAVEPOINT active_record_1
156480
+ SQL (0.0ms) 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"]]
156481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156482
+  (0.0ms) SAVEPOINT active_record_1
156483
+ SQL (0.0ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", "t"], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156485
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
156486
+  (0.0ms) rollback transaction
156487
+  (0.0ms) begin transaction
156488
+  (0.0ms) SAVEPOINT active_record_1
156489
+ SQL (0.0ms) 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"]]
156490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156491
+  (0.0ms) SAVEPOINT active_record_1
156492
+ SQL (0.0ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", "t"], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156494
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
156495
+  (0.0ms) rollback transaction
156496
+  (0.0ms) begin transaction
156497
+  (0.0ms) SAVEPOINT active_record_1
156498
+ SQL (0.0ms) 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"]]
156499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156500
+  (0.0ms) SAVEPOINT active_record_1
156501
+ SQL (0.0ms) 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", "t"], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156503
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
156504
+  (0.1ms) rollback transaction
156505
+  (0.0ms) begin transaction
156506
+  (0.0ms) SAVEPOINT active_record_1
156507
+ SQL (0.0ms) 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"]]
156508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156509
+ SQL (0.0ms) UPDATE "communities" SET "global_registry_id" = '6133f6fe-c63a-425a-bb46-68917c689723' WHERE "communities"."id" = ? [["id", 1]]
156510
+  (0.0ms) rollback transaction
156511
+  (0.0ms) begin transaction
156512
+  (0.0ms) SAVEPOINT active_record_1
156513
+ SQL (0.0ms) 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"]]
156514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156515
+  (0.0ms) rollback transaction
156516
+  (0.0ms) begin transaction
156517
+  (0.0ms) SAVEPOINT active_record_1
156518
+ SQL (0.0ms) 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"]]
156519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156520
+  (0.0ms) rollback transaction
156521
+  (0.0ms) begin transaction
156522
+  (0.0ms) SAVEPOINT active_record_1
156523
+ SQL (0.0ms) 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"]]
156524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156525
+  (0.0ms) SAVEPOINT active_record_1
156526
+ SQL (0.0ms) 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"]]
156527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156528
+  (0.0ms) SAVEPOINT active_record_1
156529
+ SQL (0.0ms) 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"]]
156530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156531
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156532
+  (0.1ms) rollback transaction
156533
+  (0.0ms) begin transaction
156534
+  (0.0ms) SAVEPOINT active_record_1
156535
+ SQL (0.0ms) 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"]]
156536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156537
+  (0.0ms) SAVEPOINT active_record_1
156538
+ SQL (0.0ms) 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"]]
156539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156540
+  (0.0ms) SAVEPOINT active_record_1
156541
+ SQL (0.0ms) 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"]]
156542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156543
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156544
+  (0.1ms) rollback transaction
156545
+  (0.0ms) begin transaction
156546
+  (0.0ms) SAVEPOINT active_record_1
156547
+ SQL (0.0ms) 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"]]
156548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156549
+  (0.0ms) SAVEPOINT active_record_1
156550
+ SQL (0.0ms) 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"]]
156551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156552
+  (0.0ms) SAVEPOINT active_record_1
156553
+ SQL (0.0ms) 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"]]
156554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156555
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156556
+  (0.1ms) rollback transaction
156557
+  (0.0ms) begin transaction
156558
+  (0.0ms) SAVEPOINT active_record_1
156559
+ SQL (0.0ms) 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"]]
156560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156561
+  (0.0ms) SAVEPOINT active_record_1
156562
+ SQL (0.0ms) 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"]]
156563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156564
+  (0.0ms) SAVEPOINT active_record_1
156565
+ SQL (0.0ms) 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"]]
156566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156567
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156568
+  (0.1ms) rollback transaction
156569
+  (0.0ms) begin transaction
156570
+  (0.0ms) SAVEPOINT active_record_1
156571
+ SQL (0.0ms) 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"]]
156572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156573
+  (0.0ms) SAVEPOINT active_record_1
156574
+ SQL (0.0ms) 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"]]
156575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156576
+  (0.0ms) SAVEPOINT active_record_1
156577
+ SQL (0.0ms) 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"]]
156578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156579
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = NULL WHERE "assignments"."id" = ? [["id", 1]]
156580
+  (0.1ms) rollback transaction
156581
+  (0.0ms) begin transaction
156582
+  (0.0ms) SAVEPOINT active_record_1
156583
+ SQL (0.0ms) 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"]]
156584
+ SQL (0.0ms) 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"]]
156585
+ SQL (0.0ms) 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"]]
156586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156587
+  (2.1ms) rollback transaction
156588
+  (0.0ms) begin transaction
156589
+  (0.0ms) SAVEPOINT active_record_1
156590
+ SQL (0.0ms) 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"]]
156591
+ SQL (0.0ms) 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"]]
156592
+ SQL (0.0ms) 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"]]
156593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156594
+  (0.1ms) rollback transaction
156595
+  (0.0ms) begin transaction
156596
+  (0.0ms) SAVEPOINT active_record_1
156597
+ SQL (0.0ms) 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"]]
156598
+ SQL (0.0ms) 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"]]
156599
+ SQL (0.0ms) 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"]]
156600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156601
+  (0.1ms) rollback transaction
156602
+  (0.0ms) begin transaction
156603
+  (0.0ms) SAVEPOINT active_record_1
156604
+ SQL (0.0ms) 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"]]
156605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156606
+  (0.0ms) SAVEPOINT active_record_1
156607
+ SQL (0.0ms) 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"]]
156608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156609
+  (0.0ms) SAVEPOINT active_record_1
156610
+ SQL (0.0ms) 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"]]
156611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156612
+ SQL (0.0ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = '0fd8b8b8-76c9-11e7-b15c-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156613
+  (0.1ms) rollback transaction
156614
+  (0.0ms) begin transaction
156615
+  (0.0ms) SAVEPOINT active_record_1
156616
+ SQL (0.0ms) 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"]]
156617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156618
+  (0.0ms) SAVEPOINT active_record_1
156619
+ SQL (0.0ms) 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"]]
156620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156621
+  (0.0ms) SAVEPOINT active_record_1
156622
+ SQL (0.0ms) 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"]]
156623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156624
+  (0.0ms) rollback transaction
156625
+  (0.0ms) begin transaction
156626
+  (0.0ms) SAVEPOINT active_record_1
156627
+ SQL (0.0ms) 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", "t"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
156628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156629
+  (0.0ms) SAVEPOINT active_record_1
156630
+ SQL (0.0ms) 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"]]
156631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156632
+ SQL (0.0ms) UPDATE "organizations" SET "global_registry_area_id" = 'c99d7d7e-8b14-4fe6-9c11-e5359ee03637' WHERE "organizations"."id" = ? [["id", 1]]
156633
+  (0.0ms) rollback transaction
156634
+  (0.0ms) begin transaction
156635
+  (0.0ms) SAVEPOINT active_record_1
156636
+ SQL (0.0ms) 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"]]
156637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156638
+  (0.0ms) SAVEPOINT active_record_1
156639
+ SQL (0.0ms) 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"]]
156640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156641
+ SQL (0.0ms) UPDATE "people" SET "country_of_service_gr_id" = '420d2fd1-7a73-41ed-9d8f-5dc79b00a688' WHERE "people"."id" = ? [["id", 1]]
156642
+  (0.0ms) rollback transaction
156643
+  (0.0ms) begin transaction
156644
+  (0.0ms) SAVEPOINT active_record_1
156645
+ SQL (0.0ms) 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"]]
156646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156647
+  (0.0ms) SAVEPOINT active_record_1
156648
+ SQL (0.0ms) 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"]]
156649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156650
+ SQL (0.0ms) UPDATE "people" SET "country_of_residence_gr_id" = 'a4c030ce-13f2-44f5-8131-4003eb21c0ae' WHERE "people"."id" = ? [["id", 1]]
156651
+  (0.0ms) rollback transaction
156652
+  (0.0ms) begin transaction
156653
+  (0.0ms) SAVEPOINT active_record_1
156654
+ SQL (0.0ms) 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"]]
156655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156656
+  (0.1ms) rollback transaction
156657
+  (0.0ms) begin transaction
156658
+  (0.0ms) SAVEPOINT active_record_1
156659
+ SQL (0.0ms) 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"]]
156660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156661
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = NULL WHERE "communities"."id" = ? [["id", 1]]
156662
+  (0.0ms) rollback transaction
156663
+  (0.1ms) begin transaction
156664
+  (0.0ms) SAVEPOINT active_record_1
156665
+ SQL (0.0ms) 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"]]
156666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156667
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
156668
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global-registry-bindings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Zoetewey
@@ -54,9 +54,9 @@ dependencies:
54
54
  name: sidekiq
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - "~>"
57
+ - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: '4.0'
59
+ version: 4.0.0
60
60
  - - "<"
61
61
  - !ruby/object:Gem::Version
62
62
  version: '6'
@@ -64,9 +64,9 @@ dependencies:
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - "~>"
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '4.0'
69
+ version: 4.0.0
70
70
  - - "<"
71
71
  - !ruby/object:Gem::Version
72
72
  version: '6'
@@ -74,9 +74,9 @@ dependencies:
74
74
  name: sidekiq-unique-jobs
75
75
  requirement: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - "~>"
77
+ - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '4.0'
79
+ version: 4.0.0
80
80
  - - "<"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '6'
@@ -84,9 +84,9 @@ dependencies:
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '4.0'
89
+ version: 4.0.0
90
90
  - - "<"
91
91
  - !ruby/object:Gem::Version
92
92
  version: '6'