global-registry-bindings 0.1.7 → 0.1.8

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: ac230e0a4dd32294cbceb300412528b853298676
4
- data.tar.gz: e28842e4a04101d9b02a052b09d7e72eed1ab04a
3
+ metadata.gz: e63b9390ed913e92450704e8261a27225c4e6e9e
4
+ data.tar.gz: deedae90d1e14392c880a703dc54c4abfe63465e
5
5
  SHA512:
6
- metadata.gz: 22a723ba2c596d1c20371afbf5f2c624f392860036957177f82e156d4c64a10b4440e2e598d7ab7016a061474eee59c9feb99125efdbb7c0ed8c0551648bf86e
7
- data.tar.gz: 39e67d4e4e7c9b0d5b58c6583629cfae6490456bb191ff5b29347d640dbced2b2a8f68d0feb150476f958c72cc3259fa5481164766f500ca72d6121c4d9d9c9c
6
+ metadata.gz: a1d90291157e81980b411fa5afa583d283537d7bed4eac20c9907881dcbb015765d8eea0ee8b2fc4d3a9ca1b447be71a54e863fd1c2439f23b18ab5c3389e80a
7
+ data.tar.gz: 4f6f06086125822e67ee1b48d51309e04e6ddf09f56c1834034f1de54175958edeecba748665290447d1d59d546537f58d8cda2b58d03e503a549e71570b863c
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.1.7'
5
+ VERSION = '0.1.8'
6
6
  end
7
7
  end
@@ -7,6 +7,7 @@ module GlobalRegistry #:nodoc:
7
7
  sidekiq_options unique: :until_executed
8
8
 
9
9
  def perform(global_registry_id)
10
+ return unless global_registry_id
10
11
  GlobalRegistry::Entity.delete(global_registry_id)
11
12
  rescue RestClient::ResourceNotFound # rubocop:disable Lint/HandleExceptions
12
13
  # If the record doesn't exist, we don't care
@@ -189432,3 +189432,625 @@ global-registry-bindings: Unknown options (binding)
189432
189432
   (0.0ms) RELEASE SAVEPOINT active_record_1
189433
189433
  SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
189434
189434
   (0.0ms) rollback transaction
189435
+  (0.1ms) DROP TABLE IF EXISTS "people"
189436
+  (2.0ms) SELECT sqlite_version(*)
189437
+  (0.7ms) 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)
189438
+  (0.1ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
189439
+  (0.3ms)  SELECT sql
189440
+ FROM sqlite_master
189441
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
189442
+ UNION ALL
189443
+ SELECT sql
189444
+ FROM sqlite_temp_master
189445
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
189446
+ 
189447
+  (0.1ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
189448
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
189449
+  (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)
189450
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
189451
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
189452
+  (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)
189453
+  (0.2ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
189454
+  (0.0ms)  SELECT sql
189455
+ FROM sqlite_master
189456
+ WHERE name='index_organizations_on_parent_id' AND type='index'
189457
+ UNION ALL
189458
+ SELECT sql
189459
+ FROM sqlite_temp_master
189460
+ WHERE name='index_organizations_on_parent_id' AND type='index'
189461
+ 
189462
+  (0.1ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
189463
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
189464
+  (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)
189465
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
189466
+  (0.0ms)  SELECT sql
189467
+ FROM sqlite_master
189468
+ WHERE name='index_assignments_on_person_id' AND type='index'
189469
+ UNION ALL
189470
+ SELECT sql
189471
+ FROM sqlite_temp_master
189472
+ WHERE name='index_assignments_on_person_id' AND type='index'
189473
+ 
189474
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
189475
+  (0.0ms)  SELECT sql
189476
+ FROM sqlite_master
189477
+ WHERE name='index_assignments_on_organization_id' AND type='index'
189478
+ UNION ALL
189479
+ SELECT sql
189480
+ FROM sqlite_temp_master
189481
+ WHERE name='index_assignments_on_organization_id' AND type='index'
189482
+ 
189483
+  (0.0ms)  SELECT sql
189484
+ FROM sqlite_master
189485
+ WHERE name='index_assignments_on_person_id' AND type='index'
189486
+ UNION ALL
189487
+ SELECT sql
189488
+ FROM sqlite_temp_master
189489
+ WHERE name='index_assignments_on_person_id' AND type='index'
189490
+ 
189491
+  (0.1ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
189492
+  (0.0ms) DROP TABLE IF EXISTS "areas"
189493
+  (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)
189494
+  (0.0ms) DROP TABLE IF EXISTS "countries"
189495
+  (0.1ms) 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)
189496
+  (0.0ms) DROP TABLE IF EXISTS "communities"
189497
+  (0.1ms) 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)
189498
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
189499
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
189500
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
189501
+  (0.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
189502
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
189503
+  (0.0ms) begin transaction
189504
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-10-02 18:41:32.015233"], ["updated_at", "2017-10-02 18:41:32.015233"]]
189505
+  (0.0ms) commit transaction
189506
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
189507
+  (0.0ms) begin transaction
189508
+  (0.0ms) commit transaction
189509
+  (0.1ms) begin transaction
189510
+  (0.1ms) rollback transaction
189511
+  (0.0ms) begin transaction
189512
+  (0.1ms) rollback transaction
189513
+  (0.0ms) begin transaction
189514
+  (0.0ms) rollback transaction
189515
+  (0.0ms) begin transaction
189516
+  (0.1ms) rollback transaction
189517
+  (0.0ms) begin transaction
189518
+  (0.1ms) rollback transaction
189519
+  (0.1ms) begin transaction
189520
+  (0.1ms) rollback transaction
189521
+  (0.0ms) begin transaction
189522
+  (0.0ms) rollback transaction
189523
+  (0.0ms) begin transaction
189524
+  (0.0ms) rollback transaction
189525
+  (0.0ms) begin transaction
189526
+  (0.1ms) rollback transaction
189527
+  (0.0ms) begin transaction
189528
+  (0.0ms) rollback transaction
189529
+  (0.0ms) begin transaction
189530
+  (0.0ms) rollback transaction
189531
+  (0.0ms) begin transaction
189532
+  (0.0ms) SAVEPOINT active_record_1
189533
+ 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-10-02 18:41:32.825612"], ["updated_at", "2017-10-02 18:41:32.825612"]]
189534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189535
+  (0.0ms) SAVEPOINT active_record_1
189536
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.828755"], ["updated_at", "2017-10-02 18:41:32.828755"]]
189537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189538
+  (0.0ms) SAVEPOINT active_record_1
189539
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-08-02 18:41:32.831764"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-10-02 18:41:32.832659"], ["updated_at", "2017-10-02 18:41:32.832659"]]
189540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189541
+  (0.0ms) rollback transaction
189542
+  (0.0ms) begin transaction
189543
+  (0.0ms) SAVEPOINT active_record_1
189544
+ 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-10-02 18:41:32.836117"], ["updated_at", "2017-10-02 18:41:32.836117"]]
189545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189546
+  (0.0ms) SAVEPOINT active_record_1
189547
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.838256"], ["updated_at", "2017-10-02 18:41:32.838256"]]
189548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189549
+  (0.0ms) SAVEPOINT active_record_1
189550
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-08-02 18:41:32.839605"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-10-02 18:41:32.840160"], ["updated_at", "2017-10-02 18:41:32.840160"]]
189551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189552
+  (0.0ms) SAVEPOINT active_record_1
189553
+ SQL (0.1ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2017-10-02 18:41:32.842245"], ["id", 1]]
189554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189555
+  (0.0ms) rollback transaction
189556
+  (0.0ms) begin transaction
189557
+  (0.0ms) SAVEPOINT active_record_1
189558
+ 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-10-02 18:41:32.845744"], ["updated_at", "2017-10-02 18:41:32.845744"]]
189559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189560
+  (0.0ms) SAVEPOINT active_record_1
189561
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.847826"], ["updated_at", "2017-10-02 18:41:32.847826"]]
189562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189563
+  (0.0ms) SAVEPOINT active_record_1
189564
+ 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-08-02 18:41:32.849237"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-10-02 18:41:32.849741"], ["updated_at", "2017-10-02 18:41:32.849741"]]
189565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189566
+  (0.0ms) SAVEPOINT active_record_1
189567
+ SQL (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
189568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189569
+  (0.0ms) rollback transaction
189570
+  (0.0ms) begin transaction
189571
+  (0.0ms) SAVEPOINT active_record_1
189572
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.854256"], ["updated_at", "2017-10-02 18:41:32.854256"]]
189573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189574
+  (0.0ms) rollback transaction
189575
+  (0.0ms) begin transaction
189576
+  (0.1ms) SAVEPOINT active_record_1
189577
+ 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-10-02 18:41:32.864515"], ["updated_at", "2017-10-02 18:41:32.864515"]]
189578
+ 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-10-02"], ["area_id", 1], ["created_at", "2017-10-02 18:41:32.865420"], ["updated_at", "2017-10-02 18:41:32.865420"]]
189579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189580
+  (0.0ms) rollback transaction
189581
+  (0.0ms) begin transaction
189582
+  (0.0ms) SAVEPOINT active_record_1
189583
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.869715"], ["updated_at", "2017-10-02 18:41:32.869715"]]
189584
+ 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-10-02"], ["parent_id", 1], ["created_at", "2017-10-02 18:41:32.870385"], ["updated_at", "2017-10-02 18:41:32.870385"]]
189585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189586
+  (0.1ms) rollback transaction
189587
+  (0.0ms) begin transaction
189588
+  (0.0ms) SAVEPOINT active_record_1
189589
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-10-02"], ["created_at", "2017-10-02 18:41:32.874442"], ["updated_at", "2017-10-02 18:41:32.874442"]]
189590
+ 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-10-02 18:41:32.875221"], ["updated_at", "2017-10-02 18:41:32.875221"]]
189591
+ 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-10-02"], ["parent_id", 1], ["area_id", 1], ["created_at", "2017-10-02 18:41:32.875766"], ["updated_at", "2017-10-02 18:41:32.875766"]]
189592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189593
+  (0.1ms) rollback transaction
189594
+  (0.0ms) begin transaction
189595
+  (0.1ms) SAVEPOINT active_record_1
189596
+ 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-10-02"], ["created_at", "2017-10-02 18:41:32.880869"], ["updated_at", "2017-10-02 18:41:32.880869"]]
189597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189598
+  (0.1ms) SAVEPOINT active_record_1
189599
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
189600
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189601
+  (0.0ms) rollback transaction
189602
+  (0.0ms) begin transaction
189603
+  (0.0ms) SAVEPOINT active_record_1
189604
+ 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-10-02 18:41:32.885456"], ["updated_at", "2017-10-02 18:41:32.885456"]]
189605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189606
+  (0.0ms) SAVEPOINT active_record_1
189607
+ 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-10-02"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2017-10-02 18:41:32.887364"], ["updated_at", "2017-10-02 18:41:32.887364"]]
189608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189609
+  (0.0ms) SAVEPOINT active_record_1
189610
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
189611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189612
+  (0.0ms) rollback transaction
189613
+  (0.0ms) begin transaction
189614
+  (0.0ms) SAVEPOINT active_record_1
189615
+ 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-10-02"], ["created_at", "2017-10-02 18:41:32.892470"], ["updated_at", "2017-10-02 18:41:32.892470"]]
189616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189617
+  (0.1ms) SAVEPOINT active_record_1
189618
+ 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-10-02"], ["parent_id", 1], ["created_at", "2017-10-02 18:41:32.894561"], ["updated_at", "2017-10-02 18:41:32.894561"]]
189619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189620
+  (0.0ms) SAVEPOINT active_record_1
189621
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
189622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189623
+  (0.0ms) rollback transaction
189624
+  (0.0ms) begin transaction
189625
+  (0.0ms) SAVEPOINT active_record_1
189626
+ 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-10-02 18:41:32.898522"], ["updated_at", "2017-10-02 18:41:32.898522"]]
189627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189628
+  (0.0ms) SAVEPOINT active_record_1
189629
+ 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-10-02"], ["created_at", "2017-10-02 18:41:32.900501"], ["updated_at", "2017-10-02 18:41:32.900501"]]
189630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189631
+  (0.0ms) SAVEPOINT active_record_1
189632
+ 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-10-02"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2017-10-02 18:41:32.902791"], ["updated_at", "2017-10-02 18:41:32.902791"]]
189633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189634
+  (0.0ms) SAVEPOINT active_record_1
189635
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
189636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189637
+  (0.0ms) rollback transaction
189638
+  (0.0ms) begin transaction
189639
+  (0.1ms) SAVEPOINT active_record_1
189640
+ 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-10-02 18:41:32.908616"], ["updated_at", "2017-10-02 18:41:32.908616"]]
189641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189642
+  (0.0ms) rollback transaction
189643
+  (0.0ms) begin transaction
189644
+  (0.1ms) SAVEPOINT active_record_1
189645
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-10-02 18:41:32.917634"], ["updated_at", "2017-10-02 18:41:32.917634"]]
189646
+ 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-10-02 18:41:32.918429"], ["updated_at", "2017-10-02 18:41:32.918429"]]
189647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189648
+  (0.0ms) rollback transaction
189649
+  (0.1ms) begin transaction
189650
+  (0.1ms) SAVEPOINT active_record_1
189651
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-10-02 18:41:32.923890"], ["updated_at", "2017-10-02 18:41:32.923890"]]
189652
+ 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-10-02 18:41:32.924749"], ["updated_at", "2017-10-02 18:41:32.924749"]]
189653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189654
+  (0.0ms) rollback transaction
189655
+  (0.0ms) begin transaction
189656
+  (0.0ms) SAVEPOINT active_record_1
189657
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-10-02 18:41:32.929548"], ["updated_at", "2017-10-02 18:41:32.929548"]]
189658
+ 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-10-02 18:41:32.930198"], ["updated_at", "2017-10-02 18:41:32.930198"]]
189659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189660
+  (0.0ms) rollback transaction
189661
+  (0.0ms) begin transaction
189662
+  (0.0ms) SAVEPOINT active_record_1
189663
+ 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-10-02 18:41:32.934485"], ["updated_at", "2017-10-02 18:41:32.934485"]]
189664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189665
+  (0.0ms) SAVEPOINT active_record_1
189666
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-10-02 18:41:32.936423"], ["id", 1]]
189667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189668
+  (0.0ms) rollback transaction
189669
+  (0.0ms) begin transaction
189670
+  (0.1ms) SAVEPOINT active_record_1
189671
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-10-02 18:41:32.939776"], ["updated_at", "2017-10-02 18:41:32.939776"]]
189672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189673
+  (0.0ms) SAVEPOINT active_record_1
189674
+ 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-10-02 18:41:32.941941"], ["updated_at", "2017-10-02 18:41:32.941941"]]
189675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189676
+  (0.1ms) SAVEPOINT active_record_1
189677
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-10-02 18:41:32.945950"], ["id", 1]]
189678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189679
+  (0.0ms) rollback transaction
189680
+  (0.0ms) begin transaction
189681
+  (0.0ms) SAVEPOINT active_record_1
189682
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-10-02 18:41:32.949774"], ["updated_at", "2017-10-02 18:41:32.949774"]]
189683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189684
+  (0.1ms) SAVEPOINT active_record_1
189685
+ 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-10-02 18:41:32.952409"], ["updated_at", "2017-10-02 18:41:32.952409"]]
189686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189687
+  (0.1ms) SAVEPOINT active_record_1
189688
+ SQL (0.1ms) UPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_residence_id", nil], ["updated_at", "2017-10-02 18:41:32.956103"], ["id", 1]]
189689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189690
+ SQL (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
189691
+  (0.1ms) rollback transaction
189692
+  (0.0ms) begin transaction
189693
+  (0.0ms) SAVEPOINT active_record_1
189694
+ 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-10-02 18:41:32.960880"], ["updated_at", "2017-10-02 18:41:32.960880"]]
189695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189696
+  (0.0ms) SAVEPOINT active_record_1
189697
+ 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-10-02 18:41:32.962398"], ["updated_at", "2017-10-02 18:41:32.962398"]]
189698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189699
+  (0.0ms) SAVEPOINT active_record_1
189700
+ 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-10-02 18:41:32.964073"], ["updated_at", "2017-10-02 18:41:32.964073"]]
189701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189702
+  (0.1ms) SAVEPOINT active_record_1
189703
+ SQL (0.1ms) UPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_service_id", 2], ["updated_at", "2017-10-02 18:41:32.967929"], ["id", 1]]
189704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189705
+ SQL (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
189706
+  (0.1ms) rollback transaction
189707
+  (0.1ms) begin transaction
189708
+  (0.1ms) SAVEPOINT active_record_1
189709
+ 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-10-02 18:41:32.998185"], ["updated_at", "2017-10-02 18:41:32.998185"]]
189710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189711
+  (0.0ms) SAVEPOINT active_record_1
189712
+ Address Load (0.2ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
189713
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
189714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189715
+  (0.0ms) rollback transaction
189716
+  (0.0ms) begin transaction
189717
+  (0.0ms) SAVEPOINT active_record_1
189718
+ 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-10-02 18:41:33.016975"], ["updated_at", "2017-10-02 18:41:33.016975"]]
189719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189720
+  (0.0ms) SAVEPOINT active_record_1
189721
+ 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-10-02 18:41:33.018480"], ["updated_at", "2017-10-02 18:41:33.018480"]]
189722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189723
+  (0.1ms) SAVEPOINT active_record_1
189724
+ 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-10-02 18:41:33.020228"], ["updated_at", "2017-10-02 18:41:33.020228"]]
189725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189726
+  (0.1ms) SAVEPOINT active_record_1
189727
+ Address Load (0.0ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
189728
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
189729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189730
+  (0.0ms) rollback transaction
189731
+  (0.0ms) begin transaction
189732
+  (0.1ms) rollback transaction
189733
+  (0.0ms) begin transaction
189734
+  (0.1ms) rollback transaction
189735
+  (0.0ms) begin transaction
189736
+  (0.0ms) rollback transaction
189737
+  (0.0ms) begin transaction
189738
+  (0.0ms) SAVEPOINT active_record_1
189739
+ 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-10-02 18:41:33.062826"], ["updated_at", "2017-10-02 18:41:33.062826"]]
189740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189741
+  (0.0ms) rollback transaction
189742
+  (0.0ms) begin transaction
189743
+  (0.0ms) SAVEPOINT active_record_1
189744
+ 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-10-02 18:41:33.066698"], ["updated_at", "2017-10-02 18:41:33.066698"]]
189745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189746
+  (0.0ms) rollback transaction
189747
+  (0.1ms) begin transaction
189748
+  (0.0ms) SAVEPOINT active_record_1
189749
+ 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-10-02 18:41:33.070179"], ["updated_at", "2017-10-02 18:41:33.070179"]]
189750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189751
+  (0.0ms) rollback transaction
189752
+  (0.0ms) begin transaction
189753
+  (0.1ms) SAVEPOINT active_record_1
189754
+ 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-10-02 18:41:33.073832"], ["updated_at", "2017-10-02 18:41:33.073832"]]
189755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189756
+  (0.1ms) rollback transaction
189757
+  (0.0ms) begin transaction
189758
+  (0.0ms) SAVEPOINT active_record_1
189759
+ 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-10-02 18:41:33.081728"], ["updated_at", "2017-10-02 18:41:33.081728"]]
189760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189761
+  (0.1ms) rollback transaction
189762
+  (0.0ms) begin transaction
189763
+  (0.1ms) SAVEPOINT active_record_1
189764
+ 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-10-02 18:41:33.099174"], ["updated_at", "2017-10-02 18:41:33.099174"]]
189765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189766
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
189767
+  (0.0ms) rollback transaction
189768
+  (0.0ms) begin transaction
189769
+  (0.0ms) rollback transaction
189770
+  (0.0ms) begin transaction
189771
+  (0.0ms) SAVEPOINT active_record_1
189772
+ 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"]]
189773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189774
+  (0.0ms) rollback transaction
189775
+  (0.0ms) begin transaction
189776
+  (0.0ms) SAVEPOINT active_record_1
189777
+ 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"]]
189778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189779
+  (0.1ms) rollback transaction
189780
+  (0.0ms) begin transaction
189781
+  (0.0ms) SAVEPOINT active_record_1
189782
+ 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"]]
189783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189784
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
189785
+  (0.0ms) rollback transaction
189786
+  (0.0ms) begin transaction
189787
+  (0.0ms) SAVEPOINT active_record_1
189788
+ 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"]]
189789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189790
+  (0.0ms) SAVEPOINT active_record_1
189791
+ 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"]]
189792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189793
+  (0.1ms) rollback transaction
189794
+  (0.0ms) begin transaction
189795
+  (0.0ms) SAVEPOINT active_record_1
189796
+ 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"]]
189797
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189798
+  (0.0ms) SAVEPOINT active_record_1
189799
+ 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"]]
189800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189801
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
189802
+  (0.1ms) rollback transaction
189803
+  (0.0ms) begin transaction
189804
+  (0.0ms) SAVEPOINT active_record_1
189805
+ 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"]]
189806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189807
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
189808
+  (0.1ms) rollback transaction
189809
+  (0.0ms) begin transaction
189810
+  (0.0ms) SAVEPOINT active_record_1
189811
+ 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"]]
189812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189813
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
189814
+  (0.1ms) rollback transaction
189815
+  (0.0ms) begin transaction
189816
+  (0.0ms) SAVEPOINT active_record_1
189817
+ 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"]]
189818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189819
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
189820
+  (0.0ms) rollback transaction
189821
+  (0.1ms) begin transaction
189822
+  (0.0ms) SAVEPOINT active_record_1
189823
+ 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"]]
189824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189825
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
189826
+  (0.1ms) rollback transaction
189827
+  (0.0ms) begin transaction
189828
+  (0.0ms) SAVEPOINT active_record_1
189829
+ 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"]]
189830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189831
+  (0.1ms) rollback transaction
189832
+  (0.0ms) begin transaction
189833
+  (0.0ms) SAVEPOINT active_record_1
189834
+ 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"]]
189835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189836
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
189837
+  (0.0ms) rollback transaction
189838
+  (0.0ms) begin transaction
189839
+  (0.0ms) SAVEPOINT active_record_1
189840
+ 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"]]
189841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189842
+  (0.0ms) rollback transaction
189843
+  (0.0ms) begin transaction
189844
+  (0.0ms) SAVEPOINT active_record_1
189845
+ 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"]]
189846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189847
+  (0.0ms) SAVEPOINT active_record_1
189848
+ 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"]]
189849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189850
+  (0.1ms) rollback transaction
189851
+  (0.0ms) begin transaction
189852
+  (0.0ms) SAVEPOINT active_record_1
189853
+ 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"]]
189854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189855
+  (0.0ms) SAVEPOINT active_record_1
189856
+ 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"]]
189857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189858
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
189859
+  (0.1ms) rollback transaction
189860
+  (0.0ms) begin transaction
189861
+  (0.0ms) SAVEPOINT active_record_1
189862
+ 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"]]
189863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189864
+  (0.0ms) SAVEPOINT active_record_1
189865
+ 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"]]
189866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189867
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
189868
+  (0.0ms) rollback transaction
189869
+  (0.0ms) begin transaction
189870
+  (0.0ms) SAVEPOINT active_record_1
189871
+ 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"]]
189872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189873
+  (0.0ms) SAVEPOINT active_record_1
189874
+ 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"]]
189875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189876
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
189877
+  (0.1ms) rollback transaction
189878
+  (0.1ms) begin transaction
189879
+  (0.0ms) SAVEPOINT active_record_1
189880
+ 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"]]
189881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189882
+  (0.0ms) SAVEPOINT active_record_1
189883
+ 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"]]
189884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189885
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
189886
+  (0.1ms) rollback transaction
189887
+  (0.0ms) begin transaction
189888
+  (0.0ms) SAVEPOINT active_record_1
189889
+ 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"]]
189890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189891
+ SQL (0.0ms) UPDATE "communities" SET "global_registry_id" = '6133f6fe-c63a-425a-bb46-68917c689723' WHERE "communities"."id" = ? [["id", 1]]
189892
+  (0.1ms) rollback transaction
189893
+  (0.0ms) begin transaction
189894
+  (0.0ms) SAVEPOINT active_record_1
189895
+ 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"]]
189896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189897
+  (0.0ms) rollback transaction
189898
+  (0.0ms) begin transaction
189899
+  (0.0ms) SAVEPOINT active_record_1
189900
+ 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"]]
189901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189902
+  (0.0ms) rollback transaction
189903
+  (0.0ms) begin transaction
189904
+  (0.0ms) SAVEPOINT active_record_1
189905
+ 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"]]
189906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189907
+  (0.0ms) SAVEPOINT active_record_1
189908
+ 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"]]
189909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189910
+  (0.0ms) SAVEPOINT active_record_1
189911
+ 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"]]
189912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189913
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
189914
+  (0.1ms) rollback transaction
189915
+  (0.1ms) begin transaction
189916
+  (0.0ms) SAVEPOINT active_record_1
189917
+ 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"]]
189918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189919
+  (0.0ms) SAVEPOINT active_record_1
189920
+ 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"]]
189921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189922
+  (0.0ms) SAVEPOINT active_record_1
189923
+ 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"]]
189924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189925
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
189926
+  (0.1ms) rollback transaction
189927
+  (0.0ms) begin transaction
189928
+  (0.0ms) SAVEPOINT active_record_1
189929
+ 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"]]
189930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189931
+  (0.0ms) SAVEPOINT active_record_1
189932
+ 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"]]
189933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189934
+  (0.0ms) SAVEPOINT active_record_1
189935
+ 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"]]
189936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189937
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
189938
+  (0.1ms) rollback transaction
189939
+  (0.1ms) begin transaction
189940
+  (0.0ms) SAVEPOINT active_record_1
189941
+ 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"]]
189942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189943
+  (0.0ms) SAVEPOINT active_record_1
189944
+ 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"]]
189945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189946
+  (0.0ms) SAVEPOINT active_record_1
189947
+ 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"]]
189948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189949
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
189950
+  (0.1ms) rollback transaction
189951
+  (0.0ms) begin transaction
189952
+  (0.0ms) SAVEPOINT active_record_1
189953
+ 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"]]
189954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189955
+  (0.0ms) SAVEPOINT active_record_1
189956
+ 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"]]
189957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189958
+  (0.0ms) SAVEPOINT active_record_1
189959
+ 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"]]
189960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189961
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = NULL WHERE "assignments"."id" = ? [["id", 1]]
189962
+  (0.1ms) rollback transaction
189963
+  (0.0ms) begin transaction
189964
+  (0.0ms) SAVEPOINT active_record_1
189965
+ 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"]]
189966
+ 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"]]
189967
+ 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"]]
189968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189969
+  (0.1ms) rollback transaction
189970
+  (0.0ms) begin transaction
189971
+  (0.0ms) SAVEPOINT active_record_1
189972
+ 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"]]
189973
+ 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"]]
189974
+ 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"]]
189975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189976
+  (0.1ms) rollback transaction
189977
+  (0.0ms) begin transaction
189978
+  (0.0ms) SAVEPOINT active_record_1
189979
+ 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"]]
189980
+ 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"]]
189981
+ 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"]]
189982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189983
+  (0.1ms) rollback transaction
189984
+  (0.0ms) begin transaction
189985
+  (0.0ms) SAVEPOINT active_record_1
189986
+ 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"]]
189987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189988
+  (0.0ms) SAVEPOINT active_record_1
189989
+ 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"]]
189990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189991
+  (0.0ms) SAVEPOINT active_record_1
189992
+ 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"]]
189993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189994
+ SQL (0.0ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = '0fd8b8b8-76c9-11e7-b15c-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
189995
+  (0.1ms) rollback transaction
189996
+  (0.0ms) begin transaction
189997
+  (0.0ms) SAVEPOINT active_record_1
189998
+ 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"]]
189999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190000
+  (0.0ms) SAVEPOINT active_record_1
190001
+ 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"]]
190002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190003
+  (0.0ms) SAVEPOINT active_record_1
190004
+ 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"]]
190005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190006
+  (0.1ms) rollback transaction
190007
+  (0.1ms) begin transaction
190008
+  (0.0ms) SAVEPOINT active_record_1
190009
+ 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"]]
190010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190011
+  (0.0ms) SAVEPOINT active_record_1
190012
+ 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"]]
190013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190014
+ SQL (0.0ms) UPDATE "organizations" SET "global_registry_area_id" = 'c99d7d7e-8b14-4fe6-9c11-e5359ee03637' WHERE "organizations"."id" = ? [["id", 1]]
190015
+  (0.0ms) rollback transaction
190016
+  (0.0ms) begin transaction
190017
+  (0.0ms) SAVEPOINT active_record_1
190018
+ 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"]]
190019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190020
+  (0.0ms) SAVEPOINT active_record_1
190021
+ 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"]]
190022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190023
+ SQL (0.0ms) UPDATE "people" SET "country_of_service_gr_id" = '420d2fd1-7a73-41ed-9d8f-5dc79b00a688' WHERE "people"."id" = ? [["id", 1]]
190024
+  (0.1ms) rollback transaction
190025
+  (0.0ms) begin transaction
190026
+  (0.0ms) SAVEPOINT active_record_1
190027
+ 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", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
190028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190029
+ Country Load (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ? [["id", 12345], ["LIMIT", 1]]
190030
+  (0.0ms) rollback transaction
190031
+  (0.1ms) begin transaction
190032
+  (0.0ms) SAVEPOINT active_record_1
190033
+ 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"]]
190034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190035
+  (0.0ms) SAVEPOINT active_record_1
190036
+ 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"]]
190037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190038
+ SQL (0.0ms) UPDATE "people" SET "country_of_residence_gr_id" = 'a4c030ce-13f2-44f5-8131-4003eb21c0ae' WHERE "people"."id" = ? [["id", 1]]
190039
+  (0.1ms) rollback transaction
190040
+  (0.0ms) begin transaction
190041
+  (0.0ms) SAVEPOINT active_record_1
190042
+ 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"]]
190043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190044
+  (0.1ms) rollback transaction
190045
+  (0.0ms) begin transaction
190046
+  (0.0ms) SAVEPOINT active_record_1
190047
+ 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"]]
190048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190049
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = NULL WHERE "communities"."id" = ? [["id", 1]]
190050
+  (0.0ms) rollback transaction
190051
+  (0.1ms) begin transaction
190052
+  (0.0ms) SAVEPOINT active_record_1
190053
+ 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"]]
190054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
190055
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
190056
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global-registry-bindings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Zoetewey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-07 00:00:00.000000000 Z
11
+ date: 2017-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord