global-registry-bindings 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 746c1c5f80dc01e231c4da4f98293da950e4dc00
4
- data.tar.gz: 0bd3877aebe765e52b9674f05788eddf409f3e1c
3
+ metadata.gz: 525e05cabeac2282b366adfaeae74c6c46fcf12b
4
+ data.tar.gz: e353b1f107438aa2a9fec74f5bd4dd6f60aac0a2
5
5
  SHA512:
6
- metadata.gz: e6033a8a498c1547f60aeaeb1a78a8305742d12907d6917de62a4fd148f235e39f0a045d9010e38bd73ae5b75b0a8fd1d2a1ff6838a86efaab15ec65d687e2d6
7
- data.tar.gz: 256bd53774e56971f3cf5f4291edc0a128ebd77f2ae16f9658970d1612ffef35e662d7efe807d4f23903259e0b1e13c1436665dcb46979d3bee2282f9e8a01bb
6
+ metadata.gz: 3abca6d0c62f254d357a4666b854ec3300b0df710f583e7787df9750d1887ed01e7d9039314d800bf3335164a447f85d735e46d443cc237aded5f2e445019d21
7
+ data.tar.gz: b34d001e8531e90c94cd07a36618b700e8d32f2ee847d0178f9300f4b0989e25de11e6707dcc3387cbaaf2f9fc4a885da733de8cda63879a059a7da8700a8bee
@@ -12,7 +12,9 @@ module GlobalRegistry #:nodoc:
12
12
  end.compact.to_h
13
13
  entity_attributes[:client_integration_id] = id unless global_registry_entity.exclude
14
14
  .include?(:client_integration_id)
15
- entity_attributes[:client_updated_at] = updated_at.to_s(:db) if respond_to?(:updated_at)
15
+ if respond_to?(:updated_at) && updated_at.present?
16
+ entity_attributes[:client_updated_at] = updated_at.to_s(:db)
17
+ end
16
18
  if global_registry_entity.parent_is_self?
17
19
  entity_attributes[:parent_id] = global_registry_entity.parent_id_value
18
20
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.1.4'
5
+ VERSION = '0.1.5'
6
6
  end
7
7
  end
@@ -155442,3 +155442,615 @@ global-registry-bindings: Unknown options (binding)
155442
155442
   (0.0ms) RELEASE SAVEPOINT active_record_1
155443
155443
  SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
155444
155444
   (0.0ms) rollback transaction
155445
+  (0.1ms) DROP TABLE IF EXISTS "people"
155446
+  (1.9ms) SELECT sqlite_version(*)
155447
+  (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)
155448
+  (0.1ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
155449
+  (0.2ms)  SELECT sql
155450
+ FROM sqlite_master
155451
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
155452
+ UNION ALL
155453
+ SELECT sql
155454
+ FROM sqlite_temp_master
155455
+ WHERE name='index_people_on_country_of_service_id' AND type='index'
155456
+ 
155457
+  (0.1ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
155458
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
155459
+  (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)
155460
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
155461
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
155462
+  (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)
155463
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
155464
+  (0.0ms)  SELECT sql
155465
+ FROM sqlite_master
155466
+ WHERE name='index_organizations_on_parent_id' AND type='index'
155467
+ UNION ALL
155468
+ SELECT sql
155469
+ FROM sqlite_temp_master
155470
+ WHERE name='index_organizations_on_parent_id' AND type='index'
155471
+ 
155472
+  (0.1ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
155473
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
155474
+  (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)
155475
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
155476
+  (0.0ms)  SELECT sql
155477
+ FROM sqlite_master
155478
+ WHERE name='index_assignments_on_person_id' AND type='index'
155479
+ UNION ALL
155480
+ SELECT sql
155481
+ FROM sqlite_temp_master
155482
+ WHERE name='index_assignments_on_person_id' AND type='index'
155483
+ 
155484
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
155485
+  (0.0ms)  SELECT sql
155486
+ FROM sqlite_master
155487
+ WHERE name='index_assignments_on_organization_id' AND type='index'
155488
+ UNION ALL
155489
+ SELECT sql
155490
+ FROM sqlite_temp_master
155491
+ WHERE name='index_assignments_on_organization_id' AND type='index'
155492
+ 
155493
+  (0.0ms)  SELECT sql
155494
+ FROM sqlite_master
155495
+ WHERE name='index_assignments_on_person_id' AND type='index'
155496
+ UNION ALL
155497
+ SELECT sql
155498
+ FROM sqlite_temp_master
155499
+ WHERE name='index_assignments_on_person_id' AND type='index'
155500
+ 
155501
+  (0.1ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
155502
+  (0.0ms) DROP TABLE IF EXISTS "areas"
155503
+  (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)
155504
+  (0.0ms) DROP TABLE IF EXISTS "countries"
155505
+  (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)
155506
+  (0.0ms) DROP TABLE IF EXISTS "communities"
155507
+  (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)
155508
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
155509
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
155510
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
155511
+  (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)
155512
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
155513
+  (0.0ms) begin transaction
155514
+ 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:20:46.266424"], ["updated_at", "2017-08-14 14:20:46.266424"]]
155515
+  (0.0ms) commit transaction
155516
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
155517
+  (0.1ms) begin transaction
155518
+  (0.0ms) commit transaction
155519
+  (0.1ms) begin transaction
155520
+  (0.1ms) rollback transaction
155521
+  (0.0ms) begin transaction
155522
+  (0.1ms) rollback transaction
155523
+  (0.0ms) begin transaction
155524
+  (0.1ms) rollback transaction
155525
+  (0.1ms) begin transaction
155526
+  (0.1ms) rollback transaction
155527
+  (0.0ms) begin transaction
155528
+  (0.1ms) rollback transaction
155529
+  (0.0ms) begin transaction
155530
+  (0.1ms) rollback transaction
155531
+  (0.1ms) begin transaction
155532
+  (0.1ms) rollback transaction
155533
+  (0.1ms) begin transaction
155534
+  (0.0ms) rollback transaction
155535
+  (0.0ms) begin transaction
155536
+  (0.0ms) rollback transaction
155537
+  (0.0ms) begin transaction
155538
+  (0.0ms) SAVEPOINT active_record_1
155539
+ 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:20:47.073117"], ["updated_at", "2017-08-14 14:20:47.073117"]]
155540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155541
+  (0.0ms) SAVEPOINT active_record_1
155542
+ 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:20:47.076524"], ["updated_at", "2017-08-14 14:20:47.076524"]]
155543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155544
+  (0.1ms) SAVEPOINT active_record_1
155545
+ 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:20:47.080275"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:20:47.081226"], ["updated_at", "2017-08-14 14:20:47.081226"]]
155546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155547
+  (0.1ms) rollback transaction
155548
+  (0.0ms) begin transaction
155549
+  (0.0ms) SAVEPOINT active_record_1
155550
+ 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:20:47.085174"], ["updated_at", "2017-08-14 14:20:47.085174"]]
155551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155552
+  (0.0ms) SAVEPOINT active_record_1
155553
+ 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:20:47.087571"], ["updated_at", "2017-08-14 14:20:47.087571"]]
155554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155555
+  (0.1ms) SAVEPOINT active_record_1
155556
+ 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:20:47.089158"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:20:47.089703"], ["updated_at", "2017-08-14 14:20:47.089703"]]
155557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155558
+  (0.0ms) SAVEPOINT active_record_1
155559
+ SQL (0.1ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2017-08-14 14:20:47.091965"], ["id", 1]]
155560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155561
+  (0.1ms) rollback transaction
155562
+  (0.0ms) begin transaction
155563
+  (0.0ms) SAVEPOINT active_record_1
155564
+ 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:20:47.095698"], ["updated_at", "2017-08-14 14:20:47.095698"]]
155565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155566
+  (0.0ms) SAVEPOINT active_record_1
155567
+ 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:20:47.098460"], ["updated_at", "2017-08-14 14:20:47.098460"]]
155568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155569
+  (0.0ms) SAVEPOINT active_record_1
155570
+ 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:20:47.100705"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-08-14 14:20:47.101320"], ["updated_at", "2017-08-14 14:20:47.101320"]]
155571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155572
+  (0.0ms) SAVEPOINT active_record_1
155573
+ SQL (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
155574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155575
+  (0.1ms) rollback transaction
155576
+  (0.0ms) begin transaction
155577
+  (0.0ms) SAVEPOINT active_record_1
155578
+ 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:20:47.106648"], ["updated_at", "2017-08-14 14:20:47.106648"]]
155579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155580
+  (0.0ms) rollback transaction
155581
+  (0.0ms) begin transaction
155582
+  (0.1ms) SAVEPOINT active_record_1
155583
+ 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:20:47.117097"], ["updated_at", "2017-08-14 14:20:47.117097"]]
155584
+ 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:20:47.117916"], ["updated_at", "2017-08-14 14:20:47.117916"]]
155585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155586
+  (0.0ms) rollback transaction
155587
+  (0.0ms) begin transaction
155588
+  (0.1ms) SAVEPOINT active_record_1
155589
+ 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:20:47.122613"], ["updated_at", "2017-08-14 14:20:47.122613"]]
155590
+ 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:20:47.123295"], ["updated_at", "2017-08-14 14:20:47.123295"]]
155591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155592
+  (0.0ms) rollback transaction
155593
+  (0.0ms) begin transaction
155594
+  (0.1ms) SAVEPOINT active_record_1
155595
+ 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:20:47.128525"], ["updated_at", "2017-08-14 14:20:47.128525"]]
155596
+ 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:20:47.129749"], ["updated_at", "2017-08-14 14:20:47.129749"]]
155597
+ 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:20:47.130549"], ["updated_at", "2017-08-14 14:20:47.130549"]]
155598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155599
+  (0.1ms) rollback transaction
155600
+  (0.1ms) begin transaction
155601
+  (0.1ms) SAVEPOINT active_record_1
155602
+ 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:20:47.136759"], ["updated_at", "2017-08-14 14:20:47.136759"]]
155603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155604
+  (0.1ms) SAVEPOINT active_record_1
155605
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
155606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155607
+  (0.0ms) rollback transaction
155608
+  (0.1ms) begin transaction
155609
+  (0.0ms) SAVEPOINT active_record_1
155610
+ 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:20:47.142979"], ["updated_at", "2017-08-14 14:20:47.142979"]]
155611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155612
+  (0.1ms) SAVEPOINT active_record_1
155613
+ 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:20:47.145603"], ["updated_at", "2017-08-14 14:20:47.145603"]]
155614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155615
+  (0.0ms) SAVEPOINT active_record_1
155616
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
155617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155618
+  (0.1ms) rollback transaction
155619
+  (0.0ms) begin transaction
155620
+  (0.0ms) SAVEPOINT active_record_1
155621
+ 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:20:47.152695"], ["updated_at", "2017-08-14 14:20:47.152695"]]
155622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155623
+  (0.0ms) SAVEPOINT active_record_1
155624
+ 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:20:47.155197"], ["updated_at", "2017-08-14 14:20:47.155197"]]
155625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155626
+  (0.0ms) SAVEPOINT active_record_1
155627
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
155628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155629
+  (0.0ms) rollback transaction
155630
+  (0.0ms) begin transaction
155631
+  (0.0ms) SAVEPOINT active_record_1
155632
+ 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:20:47.159647"], ["updated_at", "2017-08-14 14:20:47.159647"]]
155633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155634
+  (0.0ms) SAVEPOINT active_record_1
155635
+ 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:20:47.161438"], ["updated_at", "2017-08-14 14:20:47.161438"]]
155636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155637
+  (0.0ms) SAVEPOINT active_record_1
155638
+ SQL (0.2ms) 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:20:47.163747"], ["updated_at", "2017-08-14 14:20:47.163747"]]
155639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155640
+  (0.0ms) SAVEPOINT active_record_1
155641
+ SQL (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
155642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155643
+  (0.0ms) rollback transaction
155644
+  (0.0ms) begin transaction
155645
+  (0.1ms) SAVEPOINT active_record_1
155646
+ 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:20:47.169799"], ["updated_at", "2017-08-14 14:20:47.169799"]]
155647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155648
+  (0.0ms) rollback transaction
155649
+  (0.0ms) begin transaction
155650
+  (0.1ms) SAVEPOINT active_record_1
155651
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:20:47.181691"], ["updated_at", "2017-08-14 14:20:47.181691"]]
155652
+ 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:20:47.182718"], ["updated_at", "2017-08-14 14:20:47.182718"]]
155653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155654
+  (0.0ms) rollback transaction
155655
+  (0.0ms) begin transaction
155656
+  (0.1ms) SAVEPOINT active_record_1
155657
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:20:47.189573"], ["updated_at", "2017-08-14 14:20:47.189573"]]
155658
+ SQL (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2017-08-14 14:20:47.190406"], ["updated_at", "2017-08-14 14:20:47.190406"]]
155659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155660
+  (0.1ms) rollback transaction
155661
+  (0.1ms) begin transaction
155662
+  (0.1ms) SAVEPOINT active_record_1
155663
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:20:47.198202"], ["updated_at", "2017-08-14 14:20:47.198202"]]
155664
+ 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:20:47.199441"], ["updated_at", "2017-08-14 14:20:47.199441"]]
155665
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155666
+  (0.1ms) rollback transaction
155667
+  (0.1ms) begin transaction
155668
+  (0.1ms) SAVEPOINT active_record_1
155669
+ 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:20:47.208456"], ["updated_at", "2017-08-14 14:20:47.208456"]]
155670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155671
+  (0.0ms) SAVEPOINT active_record_1
155672
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-08-14 14:20:47.211315"], ["id", 1]]
155673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155674
+  (0.0ms) rollback transaction
155675
+  (0.0ms) begin transaction
155676
+  (0.0ms) SAVEPOINT active_record_1
155677
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:20:47.215065"], ["updated_at", "2017-08-14 14:20:47.215065"]]
155678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155679
+  (0.0ms) SAVEPOINT active_record_1
155680
+ 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:20:47.217534"], ["updated_at", "2017-08-14 14:20:47.217534"]]
155681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155682
+  (0.1ms) SAVEPOINT active_record_1
155683
+ SQL (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2017-08-14 14:20:47.222197"], ["id", 1]]
155684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155685
+  (0.1ms) rollback transaction
155686
+  (0.0ms) begin transaction
155687
+  (0.2ms) SAVEPOINT active_record_1
155688
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2017-08-14 14:20:47.227444"], ["updated_at", "2017-08-14 14:20:47.227444"]]
155689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155690
+  (0.0ms) SAVEPOINT active_record_1
155691
+ 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:20:47.229727"], ["updated_at", "2017-08-14 14:20:47.229727"]]
155692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155693
+  (0.1ms) SAVEPOINT active_record_1
155694
+ 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:20:47.234539"], ["id", 1]]
155695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155696
+ SQL (0.2ms) UPDATE "people" SET "country_of_residence_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
155697
+  (0.0ms) rollback transaction
155698
+  (0.0ms) begin transaction
155699
+  (0.0ms) SAVEPOINT active_record_1
155700
+ 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:20:47.239503"], ["updated_at", "2017-08-14 14:20:47.239503"]]
155701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155702
+  (0.0ms) SAVEPOINT active_record_1
155703
+ 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:20:47.240992"], ["updated_at", "2017-08-14 14:20:47.240992"]]
155704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155705
+  (0.0ms) SAVEPOINT active_record_1
155706
+ 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:20:47.242746"], ["updated_at", "2017-08-14 14:20:47.242746"]]
155707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155708
+  (0.3ms) SAVEPOINT active_record_1
155709
+ 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:20:47.248917"], ["id", 1]]
155710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155711
+ SQL (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = NULL WHERE "people"."id" = ? [["id", 1]]
155712
+  (0.1ms) rollback transaction
155713
+  (0.0ms) begin transaction
155714
+  (0.1ms) SAVEPOINT active_record_1
155715
+ SQL (0.2ms) 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:20:47.268530"], ["updated_at", "2017-08-14 14:20:47.268530"]]
155716
+  (0.2ms) RELEASE SAVEPOINT active_record_1
155717
+  (0.1ms) SAVEPOINT active_record_1
155718
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
155719
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
155720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155721
+  (0.0ms) rollback transaction
155722
+  (0.0ms) begin transaction
155723
+  (0.1ms) SAVEPOINT active_record_1
155724
+ 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:20:47.294643"], ["updated_at", "2017-08-14 14:20:47.294643"]]
155725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155726
+  (0.0ms) SAVEPOINT active_record_1
155727
+ 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:20:47.296777"], ["updated_at", "2017-08-14 14:20:47.296777"]]
155728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155729
+  (0.0ms) SAVEPOINT active_record_1
155730
+ 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:20:47.298975"], ["updated_at", "2017-08-14 14:20:47.298975"]]
155731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155732
+  (0.1ms) SAVEPOINT active_record_1
155733
+ Address Load (0.1ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
155734
+ SQL (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
155735
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155736
+  (0.0ms) rollback transaction
155737
+  (0.1ms) begin transaction
155738
+  (0.1ms) rollback transaction
155739
+  (0.0ms) begin transaction
155740
+  (0.1ms) rollback transaction
155741
+  (0.0ms) begin transaction
155742
+  (0.1ms) rollback transaction
155743
+  (0.0ms) begin transaction
155744
+  (0.1ms) SAVEPOINT active_record_1
155745
+ 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:20:47.353249"], ["updated_at", "2017-08-14 14:20:47.353249"]]
155746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155747
+  (0.1ms) rollback transaction
155748
+  (0.0ms) begin transaction
155749
+  (0.1ms) SAVEPOINT active_record_1
155750
+ 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:20:47.360089"], ["updated_at", "2017-08-14 14:20:47.360089"]]
155751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155752
+  (0.1ms) rollback transaction
155753
+  (0.0ms) begin transaction
155754
+  (0.1ms) SAVEPOINT active_record_1
155755
+ 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:20:47.365997"], ["updated_at", "2017-08-14 14:20:47.365997"]]
155756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155757
+  (0.1ms) rollback transaction
155758
+  (0.0ms) begin transaction
155759
+  (0.0ms) SAVEPOINT active_record_1
155760
+ 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:20:47.370990"], ["updated_at", "2017-08-14 14:20:47.370990"]]
155761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155762
+  (0.1ms) rollback transaction
155763
+  (0.0ms) begin transaction
155764
+  (0.1ms) SAVEPOINT active_record_1
155765
+ 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:20:47.390899"], ["updated_at", "2017-08-14 14:20:47.390899"]]
155766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155767
+  (0.1ms) rollback transaction
155768
+  (0.0ms) begin transaction
155769
+  (0.1ms) SAVEPOINT active_record_1
155770
+ 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:20:47.414359"], ["updated_at", "2017-08-14 14:20:47.414359"]]
155771
+  (0.1ms) RELEASE SAVEPOINT active_record_1
155772
+ SQL (0.2ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
155773
+  (0.1ms) rollback transaction
155774
+  (0.1ms) begin transaction
155775
+  (0.1ms) rollback transaction
155776
+  (0.0ms) begin transaction
155777
+  (0.0ms) SAVEPOINT active_record_1
155778
+ 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"]]
155779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155780
+  (0.1ms) rollback transaction
155781
+  (0.1ms) begin transaction
155782
+  (0.0ms) SAVEPOINT active_record_1
155783
+ 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"]]
155784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155785
+  (0.1ms) rollback transaction
155786
+  (0.0ms) begin transaction
155787
+  (0.0ms) SAVEPOINT active_record_1
155788
+ 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"]]
155789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155790
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
155791
+  (0.1ms) rollback transaction
155792
+  (0.0ms) begin transaction
155793
+  (0.0ms) SAVEPOINT active_record_1
155794
+ 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"]]
155795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155796
+  (0.0ms) SAVEPOINT active_record_1
155797
+ 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"]]
155798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155799
+  (0.1ms) rollback transaction
155800
+  (0.0ms) begin transaction
155801
+  (0.0ms) SAVEPOINT active_record_1
155802
+ 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"]]
155803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155804
+  (0.0ms) SAVEPOINT active_record_1
155805
+ 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"]]
155806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155807
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
155808
+  (0.1ms) rollback transaction
155809
+  (0.0ms) begin transaction
155810
+  (0.0ms) SAVEPOINT active_record_1
155811
+ 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"]]
155812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155813
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
155814
+  (0.1ms) rollback transaction
155815
+  (0.0ms) begin transaction
155816
+  (0.0ms) SAVEPOINT active_record_1
155817
+ 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"]]
155818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155819
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
155820
+  (0.1ms) rollback transaction
155821
+  (0.1ms) begin transaction
155822
+  (0.0ms) SAVEPOINT active_record_1
155823
+ 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"]]
155824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155825
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
155826
+  (0.1ms) rollback transaction
155827
+  (0.0ms) begin transaction
155828
+  (0.0ms) SAVEPOINT active_record_1
155829
+ 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"]]
155830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155831
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
155832
+  (0.1ms) rollback transaction
155833
+  (0.0ms) begin transaction
155834
+  (0.0ms) SAVEPOINT active_record_1
155835
+ 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"]]
155836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155837
+  (0.1ms) rollback transaction
155838
+  (0.1ms) begin transaction
155839
+  (0.0ms) SAVEPOINT active_record_1
155840
+ 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"]]
155841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155842
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
155843
+  (0.1ms) rollback transaction
155844
+  (0.0ms) begin transaction
155845
+  (0.0ms) SAVEPOINT active_record_1
155846
+ 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"]]
155847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155848
+  (0.0ms) rollback transaction
155849
+  (0.0ms) begin transaction
155850
+  (0.0ms) SAVEPOINT active_record_1
155851
+ 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"]]
155852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155853
+  (0.0ms) SAVEPOINT active_record_1
155854
+ 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"]]
155855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155856
+  (0.1ms) rollback transaction
155857
+  (0.0ms) begin transaction
155858
+  (0.0ms) SAVEPOINT active_record_1
155859
+ 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"]]
155860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155861
+  (0.0ms) SAVEPOINT active_record_1
155862
+ 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"]]
155863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155864
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
155865
+  (0.1ms) rollback transaction
155866
+  (0.1ms) begin transaction
155867
+  (0.0ms) SAVEPOINT active_record_1
155868
+ 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"]]
155869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155870
+  (0.0ms) SAVEPOINT active_record_1
155871
+ 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"]]
155872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155873
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
155874
+  (0.1ms) rollback transaction
155875
+  (0.0ms) begin transaction
155876
+  (0.0ms) SAVEPOINT active_record_1
155877
+ 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"]]
155878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155879
+  (0.0ms) SAVEPOINT active_record_1
155880
+ 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"]]
155881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155882
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
155883
+  (0.1ms) rollback transaction
155884
+  (0.0ms) begin transaction
155885
+  (0.0ms) SAVEPOINT active_record_1
155886
+ 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"]]
155887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155888
+  (0.0ms) SAVEPOINT active_record_1
155889
+ 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"]]
155890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155891
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
155892
+  (0.0ms) rollback transaction
155893
+  (0.0ms) begin transaction
155894
+  (0.0ms) SAVEPOINT active_record_1
155895
+ 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"]]
155896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155897
+ SQL (0.0ms) UPDATE "communities" SET "global_registry_id" = '6133f6fe-c63a-425a-bb46-68917c689723' WHERE "communities"."id" = ? [["id", 1]]
155898
+  (0.0ms) rollback transaction
155899
+  (0.0ms) begin transaction
155900
+  (0.0ms) SAVEPOINT active_record_1
155901
+ 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"]]
155902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155903
+  (0.1ms) rollback transaction
155904
+  (0.1ms) begin transaction
155905
+  (0.0ms) SAVEPOINT active_record_1
155906
+ 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"]]
155907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155908
+  (0.0ms) rollback transaction
155909
+  (0.1ms) begin transaction
155910
+  (0.0ms) SAVEPOINT active_record_1
155911
+ 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"]]
155912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155913
+  (0.0ms) SAVEPOINT active_record_1
155914
+ 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"]]
155915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155916
+  (0.0ms) SAVEPOINT active_record_1
155917
+ 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"]]
155918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155919
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
155920
+  (0.1ms) rollback transaction
155921
+  (0.0ms) begin transaction
155922
+  (0.0ms) SAVEPOINT active_record_1
155923
+ 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"]]
155924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155925
+  (0.0ms) SAVEPOINT active_record_1
155926
+ 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"]]
155927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155928
+  (0.0ms) SAVEPOINT active_record_1
155929
+ 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"]]
155930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155931
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
155932
+  (0.1ms) rollback transaction
155933
+  (0.0ms) begin transaction
155934
+  (0.0ms) SAVEPOINT active_record_1
155935
+ 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"]]
155936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155937
+  (0.0ms) SAVEPOINT active_record_1
155938
+ 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"]]
155939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155940
+  (0.0ms) SAVEPOINT active_record_1
155941
+ 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"]]
155942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155943
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
155944
+  (0.1ms) rollback transaction
155945
+  (0.0ms) begin transaction
155946
+  (0.0ms) SAVEPOINT active_record_1
155947
+ 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"]]
155948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155949
+  (0.0ms) SAVEPOINT active_record_1
155950
+ 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"]]
155951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155952
+  (0.0ms) SAVEPOINT active_record_1
155953
+ 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"]]
155954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155955
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
155956
+  (0.1ms) rollback transaction
155957
+  (0.0ms) begin transaction
155958
+  (0.0ms) SAVEPOINT active_record_1
155959
+ 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"]]
155960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155961
+  (0.0ms) SAVEPOINT active_record_1
155962
+ 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"]]
155963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155964
+  (0.0ms) SAVEPOINT active_record_1
155965
+ 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"]]
155966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155967
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = NULL WHERE "assignments"."id" = ? [["id", 1]]
155968
+  (0.1ms) rollback transaction
155969
+  (0.0ms) begin transaction
155970
+  (0.0ms) SAVEPOINT active_record_1
155971
+ 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"]]
155972
+ 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"]]
155973
+ 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"]]
155974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155975
+  (0.0ms) rollback transaction
155976
+  (0.0ms) begin transaction
155977
+  (0.0ms) SAVEPOINT active_record_1
155978
+ 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"]]
155979
+ 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"]]
155980
+ 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"]]
155981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155982
+  (0.1ms) rollback transaction
155983
+  (0.1ms) begin transaction
155984
+  (0.0ms) SAVEPOINT active_record_1
155985
+ 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"]]
155986
+ 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"]]
155987
+ 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"]]
155988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155989
+  (0.1ms) rollback transaction
155990
+  (0.0ms) begin transaction
155991
+  (0.0ms) SAVEPOINT active_record_1
155992
+ 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"]]
155993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155994
+  (0.0ms) SAVEPOINT active_record_1
155995
+ 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"]]
155996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
155997
+  (0.0ms) SAVEPOINT active_record_1
155998
+ 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"]]
155999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156000
+ SQL (0.0ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = '0fd8b8b8-76c9-11e7-b15c-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
156001
+  (0.1ms) rollback transaction
156002
+  (0.0ms) begin transaction
156003
+  (0.0ms) SAVEPOINT active_record_1
156004
+ 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"]]
156005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156006
+  (0.0ms) SAVEPOINT active_record_1
156007
+ 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"]]
156008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156009
+  (0.0ms) SAVEPOINT active_record_1
156010
+ 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"]]
156011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156012
+  (0.1ms) rollback transaction
156013
+  (0.0ms) begin transaction
156014
+  (0.0ms) SAVEPOINT active_record_1
156015
+ 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"]]
156016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156017
+  (0.0ms) SAVEPOINT active_record_1
156018
+ 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"]]
156019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156020
+ SQL (0.0ms) UPDATE "organizations" SET "global_registry_area_id" = 'c99d7d7e-8b14-4fe6-9c11-e5359ee03637' WHERE "organizations"."id" = ? [["id", 1]]
156021
+  (0.0ms) rollback transaction
156022
+  (0.0ms) begin transaction
156023
+  (0.0ms) SAVEPOINT active_record_1
156024
+ 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"]]
156025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156026
+  (0.0ms) SAVEPOINT active_record_1
156027
+ 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"]]
156028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156029
+ SQL (0.0ms) UPDATE "people" SET "country_of_service_gr_id" = '420d2fd1-7a73-41ed-9d8f-5dc79b00a688' WHERE "people"."id" = ? [["id", 1]]
156030
+  (0.1ms) rollback transaction
156031
+  (0.0ms) begin transaction
156032
+  (0.0ms) SAVEPOINT active_record_1
156033
+ 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"]]
156034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156035
+  (0.0ms) SAVEPOINT active_record_1
156036
+ 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"]]
156037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156038
+ SQL (0.0ms) UPDATE "people" SET "country_of_residence_gr_id" = 'a4c030ce-13f2-44f5-8131-4003eb21c0ae' WHERE "people"."id" = ? [["id", 1]]
156039
+  (0.1ms) rollback transaction
156040
+  (0.0ms) begin transaction
156041
+  (0.0ms) SAVEPOINT active_record_1
156042
+ 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"]]
156043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156044
+  (0.1ms) rollback transaction
156045
+  (0.0ms) begin transaction
156046
+  (0.0ms) SAVEPOINT active_record_1
156047
+ 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"]]
156048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156049
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = NULL WHERE "communities"."id" = ? [["id", 1]]
156050
+  (0.0ms) rollback transaction
156051
+  (0.0ms) begin transaction
156052
+  (0.0ms) SAVEPOINT active_record_1
156053
+ 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"]]
156054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156055
+ SQL (0.0ms) UPDATE "communities" SET "infobase_gr_id" = 'ee40f9ed-d625-405b-8ce6-aec821611ec6' WHERE "communities"."id" = ? [["id", 1]]
156056
+  (0.0ms) 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.4
4
+ version: 0.1.5
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-08-11 00:00:00.000000000 Z
11
+ date: 2017-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord