global-registry-bindings 0.0.4 → 0.0.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: 8e525f4171b9ef2cb81bf240030e2df5217fcfeb
4
- data.tar.gz: 9f70e0728bcceb1ddb300f9562ba8a18e6fea4ba
3
+ metadata.gz: 82600783a694e1c6021fb32852926d5314cffbbf
4
+ data.tar.gz: 939b91cb366f1a80af69966e5505302d58ab28b3
5
5
  SHA512:
6
- metadata.gz: 8372efcb8580d274d42df710f985088fadf417127b7b0127b180fc57e2f188f8f19bc9a57b4837b4a78245b466d0fa4f0e5c4ac7d2c7e45db7873df4b166f0b5
7
- data.tar.gz: addcdc356d4facea47214e06c43534e153cf9b8571ddc1e9ce132cf3e2a5b9dc69c050d7ceeab9aefaa88fe6fcc3059ac7b36c4a9bf678dd9d85a0c5d8970705
6
+ metadata.gz: 9f037827d70d132e20511f7ded2d3c97702773804d2f6f6be52f02d8480f8764b118f4a13ef79e362949aa6f32d09a81ffef4119db13f91769bc3758be4db990
7
+ data.tar.gz: 2fc0137c897a3dd238eda484cddf3e6e51aa3b27fa866455dba914ba27ba16159fba7c0d82742900b468823af49f2987b9ab5c6c7a5804015a9767df19a7d53a
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.0.4'
5
+ VERSION = '0.0.5'
6
6
  end
7
7
  end
@@ -10,7 +10,8 @@ module GlobalRegistry #:nodoc:
10
10
  include Sidekiq::Worker
11
11
 
12
12
  def perform(model_class, id)
13
- model_class.find(id).send(:pull_mdm_id_from_global_registry)
13
+ klass = model_class.is_a?(String) ? model_class.constantize : model_class
14
+ klass.find(id).send(:pull_mdm_id_from_global_registry)
14
15
  rescue ActiveRecord::RecordNotFound
15
16
  # If the record was deleted after the job was created, swallow it
16
17
  return
@@ -11,7 +11,8 @@ module GlobalRegistry #:nodoc:
11
11
  sidekiq_options unique: :until_and_while_executing
12
12
 
13
13
  def perform(model_class, id)
14
- model_class.find(id).send(:push_entity_to_global_registry)
14
+ klass = model_class.is_a?(String) ? model_class.constantize : model_class
15
+ klass.find(id).send(:push_entity_to_global_registry)
15
16
  rescue ActiveRecord::RecordNotFound # rubocop:disable Lint/HandleExceptions
16
17
  # If the record was deleted after the job was created, swallow it
17
18
  end
@@ -11,7 +11,8 @@ module GlobalRegistry #:nodoc:
11
11
  sidekiq_options unique: :until_and_while_executing
12
12
 
13
13
  def perform(model_class, id)
14
- model_class.find(id).send(:push_relationship_to_global_registry)
14
+ klass = model_class.is_a?(String) ? model_class.constantize : model_class
15
+ klass.find(id).send(:push_relationship_to_global_registry)
15
16
  rescue ActiveRecord::RecordNotFound # rubocop:disable Lint/HandleExceptions
16
17
  # If the record was deleted after the job was created, swallow it
17
18
  end
@@ -37515,3 +37515,1503 @@
37515
37515
  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-06-14 16:00:23.292815"], ["updated_at", "2017-06-14 16:00:23.292815"]]
37516
37516
   (0.0ms) RELEASE SAVEPOINT active_record_1
37517
37517
   (0.0ms) rollback transaction
37518
+  (0.1ms) DROP TABLE IF EXISTS "people"
37519
+  (1.8ms) SELECT sqlite_version(*)
37520
+  (0.3ms) 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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37521
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
37522
+  (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)
37523
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
37524
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
37525
+  (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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37526
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
37527
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
37528
+  (0.1ms) CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37529
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
37530
+  (0.3ms)  SELECT sql
37531
+ FROM sqlite_master
37532
+ WHERE name='index_assignments_on_person_id' AND type='index'
37533
+ UNION ALL
37534
+ SELECT sql
37535
+ FROM sqlite_temp_master
37536
+ WHERE name='index_assignments_on_person_id' AND type='index'
37537
+ 
37538
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
37539
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
37540
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
37541
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
37542
+  (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)
37543
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
37544
+  (0.0ms) begin transaction
37545
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-15 20:49:37.496143"], ["updated_at", "2017-06-15 20:49:37.496143"]]
37546
+  (0.0ms) commit transaction
37547
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
37548
+  (0.0ms) begin transaction
37549
+  (0.0ms) commit transaction
37550
+  (0.1ms) begin transaction
37551
+  (0.1ms) rollback transaction
37552
+  (0.0ms) begin transaction
37553
+  (0.1ms) rollback transaction
37554
+  (0.0ms) begin transaction
37555
+  (0.1ms) rollback transaction
37556
+  (0.0ms) begin transaction
37557
+  (0.1ms) rollback transaction
37558
+  (0.0ms) begin transaction
37559
+  (0.0ms) rollback transaction
37560
+  (0.0ms) begin transaction
37561
+  (0.0ms) rollback transaction
37562
+  (0.0ms) begin transaction
37563
+  (0.1ms) rollback transaction
37564
+  (0.0ms) begin transaction
37565
+  (0.0ms) rollback transaction
37566
+  (0.0ms) begin transaction
37567
+  (0.0ms) rollback transaction
37568
+  (0.0ms) begin transaction
37569
+  (0.0ms) SAVEPOINT active_record_1
37570
+ 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"]]
37571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37572
+  (0.1ms) rollback transaction
37573
+  (0.0ms) begin transaction
37574
+  (0.0ms) SAVEPOINT active_record_1
37575
+ 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"]]
37576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37577
+  (0.0ms) SAVEPOINT active_record_1
37578
+ 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"]]
37579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37580
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37581
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37582
+  (0.1ms) rollback transaction
37583
+  (0.0ms) begin transaction
37584
+  (0.0ms) SAVEPOINT active_record_1
37585
+ 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"]]
37586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37587
+  (0.0ms) SAVEPOINT active_record_1
37588
+ 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"]]
37589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37590
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37591
+  (0.0ms) rollback transaction
37592
+  (0.0ms) begin transaction
37593
+  (0.0ms) SAVEPOINT active_record_1
37594
+ 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"]]
37595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37596
+  (0.0ms) SAVEPOINT active_record_1
37597
+ 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"]]
37598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37599
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37600
+  (0.0ms) rollback transaction
37601
+  (0.0ms) begin transaction
37602
+  (0.0ms) SAVEPOINT active_record_1
37603
+ 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"]]
37604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37605
+  (0.0ms) SAVEPOINT active_record_1
37606
+ 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"]]
37607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37608
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37609
+  (0.1ms) rollback transaction
37610
+  (0.0ms) begin transaction
37611
+  (0.0ms) SAVEPOINT active_record_1
37612
+ 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"]]
37613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37614
+  (0.0ms) SAVEPOINT active_record_1
37615
+ 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"]]
37616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37617
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37618
+  (0.1ms) rollback transaction
37619
+  (0.0ms) begin transaction
37620
+  (0.1ms) rollback transaction
37621
+  (0.0ms) begin transaction
37622
+  (0.0ms) SAVEPOINT active_record_1
37623
+ 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"]]
37624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37625
+  (0.0ms) SAVEPOINT active_record_1
37626
+ 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"]]
37627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37628
+  (0.0ms) SAVEPOINT active_record_1
37629
+ 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"]]
37630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37631
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37632
+  (0.1ms) rollback transaction
37633
+  (0.0ms) begin transaction
37634
+  (0.0ms) SAVEPOINT active_record_1
37635
+ 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"]]
37636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37637
+  (0.0ms) SAVEPOINT active_record_1
37638
+ 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"]]
37639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37640
+  (0.0ms) SAVEPOINT active_record_1
37641
+ 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"]]
37642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37643
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37644
+  (0.1ms) rollback transaction
37645
+  (0.0ms) begin transaction
37646
+  (0.0ms) SAVEPOINT active_record_1
37647
+ 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"]]
37648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37649
+  (0.0ms) SAVEPOINT active_record_1
37650
+ 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"]]
37651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37652
+  (0.0ms) SAVEPOINT active_record_1
37653
+ 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"]]
37654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37655
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37656
+  (0.1ms) rollback transaction
37657
+  (0.0ms) begin transaction
37658
+  (0.0ms) SAVEPOINT active_record_1
37659
+ 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"]]
37660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37661
+  (0.0ms) SAVEPOINT active_record_1
37662
+ 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"]]
37663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37664
+  (0.0ms) SAVEPOINT active_record_1
37665
+ 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"]]
37666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37667
+  (0.1ms) rollback transaction
37668
+  (0.0ms) begin transaction
37669
+  (0.0ms) SAVEPOINT active_record_1
37670
+ 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-06-15 20:49:38.555021"], ["updated_at", "2017-06-15 20:49:38.555021"]]
37671
+ SQL (0.1ms) 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", "2017-06-15"], ["created_at", "2017-06-15 20:49:38.556028"], ["updated_at", "2017-06-15 20:49:38.556028"]]
37672
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:49:38.554338"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:49:38.556762"], ["updated_at", "2017-06-15 20:49:38.556762"]]
37673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37674
+  (0.1ms) rollback transaction
37675
+  (0.0ms) begin transaction
37676
+  (0.1ms) SAVEPOINT active_record_1
37677
+ 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-06-15 20:49:38.565034"], ["updated_at", "2017-06-15 20:49:38.565034"]]
37678
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:49:38.566043"], ["updated_at", "2017-06-15 20:49:38.566043"]]
37679
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:49:38.564353"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:49:38.566739"], ["updated_at", "2017-06-15 20:49:38.566739"]]
37680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37681
+  (0.0ms) rollback transaction
37682
+  (0.0ms) begin transaction
37683
+  (0.0ms) SAVEPOINT active_record_1
37684
+ 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-06-15 20:49:38.571872"], ["updated_at", "2017-06-15 20:49:38.571872"]]
37685
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:49:38.572694"], ["updated_at", "2017-06-15 20:49:38.572694"]]
37686
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:49:38.571263"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:49:38.573365"], ["updated_at", "2017-06-15 20:49:38.573365"]]
37687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37688
+  (0.1ms) rollback transaction
37689
+  (0.0ms) begin transaction
37690
+  (0.0ms) rollback transaction
37691
+  (0.0ms) begin transaction
37692
+  (0.0ms) rollback transaction
37693
+  (0.0ms) begin transaction
37694
+  (0.0ms) rollback transaction
37695
+  (0.0ms) begin transaction
37696
+  (0.0ms) SAVEPOINT active_record_1
37697
+ 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"]]
37698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37699
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
37700
+  (0.1ms) rollback transaction
37701
+  (0.0ms) begin transaction
37702
+  (0.0ms) SAVEPOINT active_record_1
37703
+ 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"]]
37704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37705
+  (0.0ms) SAVEPOINT active_record_1
37706
+ 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"]]
37707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37708
+  (0.1ms) rollback transaction
37709
+  (0.0ms) begin transaction
37710
+  (0.0ms) SAVEPOINT active_record_1
37711
+ 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"]]
37712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37713
+  (0.0ms) SAVEPOINT active_record_1
37714
+ 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"]]
37715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37716
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
37717
+  (0.0ms) rollback transaction
37718
+  (0.0ms) begin transaction
37719
+  (0.0ms) rollback transaction
37720
+  (0.0ms) begin transaction
37721
+  (0.0ms) rollback transaction
37722
+  (0.0ms) begin transaction
37723
+  (0.0ms) rollback transaction
37724
+  (0.0ms) begin transaction
37725
+  (0.0ms) SAVEPOINT active_record_1
37726
+ 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"]]
37727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37728
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37729
+  (0.0ms) rollback transaction
37730
+  (0.0ms) begin transaction
37731
+  (0.0ms) SAVEPOINT active_record_1
37732
+ 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"]]
37733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37734
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37735
+  (0.0ms) rollback transaction
37736
+  (0.0ms) begin transaction
37737
+  (0.0ms) SAVEPOINT active_record_1
37738
+ 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"]]
37739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37740
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37741
+  (0.1ms) rollback transaction
37742
+  (0.0ms) begin transaction
37743
+  (0.0ms) SAVEPOINT active_record_1
37744
+ 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"]]
37745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37746
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37747
+  (0.0ms) rollback transaction
37748
+  (0.0ms) begin transaction
37749
+  (0.0ms) SAVEPOINT active_record_1
37750
+ 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"]]
37751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37752
+  (0.0ms) rollback transaction
37753
+  (0.0ms) begin transaction
37754
+  (0.0ms) SAVEPOINT active_record_1
37755
+ 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"]]
37756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37757
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37758
+  (0.0ms) rollback transaction
37759
+  (0.0ms) begin transaction
37760
+  (0.0ms) rollback transaction
37761
+  (0.0ms) begin transaction
37762
+  (0.1ms) SAVEPOINT active_record_1
37763
+ 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-06-15 20:49:38.715880"], ["updated_at", "2017-06-15 20:49:38.715880"]]
37764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37765
+  (0.0ms) rollback transaction
37766
+  (0.1ms) begin transaction
37767
+  (0.1ms) SAVEPOINT active_record_1
37768
+ 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-06-15 20:49:38.721001"], ["updated_at", "2017-06-15 20:49:38.721001"]]
37769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37770
+  (0.0ms) rollback transaction
37771
+  (0.0ms) begin transaction
37772
+  (0.1ms) SAVEPOINT active_record_1
37773
+ 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-06-15 20:49:38.727725"], ["updated_at", "2017-06-15 20:49:38.727725"]]
37774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37775
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
37776
+  (0.0ms) rollback transaction
37777
+  (0.1ms) begin transaction
37778
+  (0.1ms) rollback transaction
37779
+  (0.1ms) begin transaction
37780
+  (0.0ms) rollback transaction
37781
+  (0.0ms) begin transaction
37782
+  (0.1ms) SAVEPOINT active_record_1
37783
+ 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-06-15 20:49:38.739907"], ["updated_at", "2017-06-15 20:49:38.739907"]]
37784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37785
+  (0.0ms) rollback transaction
37786
+  (0.0ms) begin transaction
37787
+  (0.0ms) SAVEPOINT active_record_1
37788
+ 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-06-15 20:49:38.743523"], ["updated_at", "2017-06-15 20:49:38.743523"]]
37789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37790
+  (0.0ms) rollback transaction
37791
+  (0.0ms) begin transaction
37792
+  (0.0ms) SAVEPOINT active_record_1
37793
+ 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-06-15 20:49:38.746606"], ["updated_at", "2017-06-15 20:49:38.746606"]]
37794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37795
+  (0.0ms) rollback transaction
37796
+  (0.0ms) begin transaction
37797
+  (0.1ms) rollback transaction
37798
+  (0.0ms) begin transaction
37799
+  (0.2ms) SAVEPOINT active_record_1
37800
+ 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-06-15 20:49:38.756911"], ["updated_at", "2017-06-15 20:49:38.756911"]]
37801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37802
+  (0.0ms) rollback transaction
37803
+  (0.0ms) begin transaction
37804
+  (0.0ms) SAVEPOINT active_record_1
37805
+ 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-06-15 20:49:38.761484"], ["updated_at", "2017-06-15 20:49:38.761484"]]
37806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37807
+  (0.0ms) rollback transaction
37808
+  (0.0ms) begin transaction
37809
+  (0.1ms) SAVEPOINT active_record_1
37810
+ 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-06-15 20:49:38.766902"], ["updated_at", "2017-06-15 20:49:38.766902"]]
37811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37812
+  (0.0ms) rollback transaction
37813
+  (0.0ms) begin transaction
37814
+  (0.1ms) SAVEPOINT active_record_1
37815
+ 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-06-15 20:49:38.772137"], ["updated_at", "2017-06-15 20:49:38.772137"]]
37816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37817
+  (0.1ms) rollback transaction
37818
+  (0.0ms) DROP TABLE IF EXISTS "people"
37819
+  (0.8ms) SELECT sqlite_version(*)
37820
+  (0.3ms) 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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37821
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
37822
+  (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)
37823
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
37824
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
37825
+  (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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37826
+  (0.2ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
37827
+  (0.1ms) DROP TABLE IF EXISTS "assignments"
37828
+  (0.2ms) CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
37829
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
37830
+  (0.4ms)  SELECT sql
37831
+ FROM sqlite_master
37832
+ WHERE name='index_assignments_on_person_id' AND type='index'
37833
+ UNION ALL
37834
+ SELECT sql
37835
+ FROM sqlite_temp_master
37836
+ WHERE name='index_assignments_on_person_id' AND type='index'
37837
+ 
37838
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
37839
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
37840
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
37841
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
37842
+  (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)
37843
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
37844
+  (0.0ms) begin transaction
37845
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-15 20:50:47.922766"], ["updated_at", "2017-06-15 20:50:47.922766"]]
37846
+  (0.0ms) commit transaction
37847
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
37848
+  (0.0ms) begin transaction
37849
+  (0.0ms) commit transaction
37850
+  (0.1ms) begin transaction
37851
+  (0.0ms) rollback transaction
37852
+  (0.0ms) begin transaction
37853
+  (0.0ms) rollback transaction
37854
+  (0.0ms) begin transaction
37855
+  (0.0ms) rollback transaction
37856
+  (0.0ms) begin transaction
37857
+  (0.0ms) rollback transaction
37858
+  (0.0ms) begin transaction
37859
+  (0.0ms) rollback transaction
37860
+  (0.0ms) begin transaction
37861
+  (0.0ms) rollback transaction
37862
+  (0.0ms) begin transaction
37863
+  (0.1ms) rollback transaction
37864
+  (0.1ms) begin transaction
37865
+  (0.0ms) rollback transaction
37866
+  (0.0ms) begin transaction
37867
+  (0.1ms) rollback transaction
37868
+  (0.0ms) begin transaction
37869
+  (0.0ms) SAVEPOINT active_record_1
37870
+ 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"]]
37871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37872
+  (0.1ms) rollback transaction
37873
+  (0.0ms) begin transaction
37874
+  (0.0ms) SAVEPOINT active_record_1
37875
+ 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"]]
37876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37877
+  (0.0ms) SAVEPOINT active_record_1
37878
+ 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"]]
37879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37880
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
37881
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37882
+  (0.1ms) rollback transaction
37883
+  (0.0ms) begin transaction
37884
+  (0.0ms) SAVEPOINT active_record_1
37885
+ 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"]]
37886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37887
+  (0.0ms) SAVEPOINT active_record_1
37888
+ 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"]]
37889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37890
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37891
+  (0.0ms) rollback transaction
37892
+  (0.0ms) begin transaction
37893
+  (0.0ms) SAVEPOINT active_record_1
37894
+ 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"]]
37895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37896
+  (0.0ms) SAVEPOINT active_record_1
37897
+ 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"]]
37898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37899
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37900
+  (0.1ms) rollback transaction
37901
+  (0.0ms) begin transaction
37902
+  (0.0ms) SAVEPOINT active_record_1
37903
+ 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"]]
37904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37905
+  (0.0ms) SAVEPOINT active_record_1
37906
+ 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"]]
37907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37908
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37909
+  (0.0ms) rollback transaction
37910
+  (0.0ms) begin transaction
37911
+  (0.0ms) SAVEPOINT active_record_1
37912
+ 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"]]
37913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37914
+  (0.0ms) SAVEPOINT active_record_1
37915
+ 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"]]
37916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37917
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
37918
+  (0.1ms) rollback transaction
37919
+  (0.0ms) begin transaction
37920
+  (0.1ms) rollback transaction
37921
+  (0.0ms) begin transaction
37922
+  (0.0ms) SAVEPOINT active_record_1
37923
+ 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"]]
37924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37925
+  (0.0ms) SAVEPOINT active_record_1
37926
+ 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"]]
37927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37928
+  (0.0ms) SAVEPOINT active_record_1
37929
+ 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"]]
37930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37931
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37932
+  (0.1ms) rollback transaction
37933
+  (0.0ms) begin transaction
37934
+  (0.0ms) SAVEPOINT active_record_1
37935
+ 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"]]
37936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37937
+  (0.0ms) SAVEPOINT active_record_1
37938
+ 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"]]
37939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37940
+  (0.0ms) SAVEPOINT active_record_1
37941
+ 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"]]
37942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37943
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37944
+  (0.0ms) rollback transaction
37945
+  (0.0ms) begin transaction
37946
+  (0.0ms) SAVEPOINT active_record_1
37947
+ 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"]]
37948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37949
+  (0.0ms) SAVEPOINT active_record_1
37950
+ 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"]]
37951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37952
+  (0.0ms) SAVEPOINT active_record_1
37953
+ 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"]]
37954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37955
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
37956
+  (0.1ms) rollback transaction
37957
+  (0.0ms) begin transaction
37958
+  (0.0ms) SAVEPOINT active_record_1
37959
+ 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"]]
37960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37961
+  (0.0ms) SAVEPOINT active_record_1
37962
+ 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"]]
37963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37964
+  (0.0ms) SAVEPOINT active_record_1
37965
+ 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"]]
37966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37967
+  (0.1ms) rollback transaction
37968
+  (0.0ms) begin transaction
37969
+  (0.0ms) SAVEPOINT active_record_1
37970
+ 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-06-15 20:50:48.621749"], ["updated_at", "2017-06-15 20:50:48.621749"]]
37971
+ SQL (0.1ms) 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", "2017-06-15"], ["created_at", "2017-06-15 20:50:48.622736"], ["updated_at", "2017-06-15 20:50:48.622736"]]
37972
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:50:48.621097"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:50:48.623395"], ["updated_at", "2017-06-15 20:50:48.623395"]]
37973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37974
+  (0.1ms) rollback transaction
37975
+  (0.0ms) begin transaction
37976
+  (0.0ms) SAVEPOINT active_record_1
37977
+ 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-06-15 20:50:48.629527"], ["updated_at", "2017-06-15 20:50:48.629527"]]
37978
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:50:48.630336"], ["updated_at", "2017-06-15 20:50:48.630336"]]
37979
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:50:48.628943"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:50:48.631084"], ["updated_at", "2017-06-15 20:50:48.631084"]]
37980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37981
+  (0.0ms) rollback transaction
37982
+  (0.0ms) begin transaction
37983
+  (0.0ms) SAVEPOINT active_record_1
37984
+ 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-06-15 20:50:48.635926"], ["updated_at", "2017-06-15 20:50:48.635926"]]
37985
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:50:48.636675"], ["updated_at", "2017-06-15 20:50:48.636675"]]
37986
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:50:48.635373"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:50:48.637281"], ["updated_at", "2017-06-15 20:50:48.637281"]]
37987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37988
+  (0.1ms) rollback transaction
37989
+  (0.0ms) begin transaction
37990
+  (0.0ms) rollback transaction
37991
+  (0.0ms) begin transaction
37992
+  (0.0ms) rollback transaction
37993
+  (0.0ms) begin transaction
37994
+  (0.0ms) rollback transaction
37995
+  (0.0ms) begin transaction
37996
+  (0.0ms) SAVEPOINT active_record_1
37997
+ 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"]]
37998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37999
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
38000
+  (0.0ms) rollback transaction
38001
+  (0.0ms) begin transaction
38002
+  (0.0ms) SAVEPOINT active_record_1
38003
+ 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"]]
38004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38005
+  (0.0ms) SAVEPOINT active_record_1
38006
+ 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"]]
38007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38008
+  (0.1ms) rollback transaction
38009
+  (0.0ms) begin transaction
38010
+  (0.0ms) SAVEPOINT active_record_1
38011
+ 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"]]
38012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38013
+  (0.0ms) SAVEPOINT active_record_1
38014
+ 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"]]
38015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38016
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
38017
+  (0.1ms) rollback transaction
38018
+  (0.0ms) begin transaction
38019
+  (0.1ms) rollback transaction
38020
+  (0.0ms) begin transaction
38021
+  (0.1ms) rollback transaction
38022
+  (0.1ms) begin transaction
38023
+  (0.0ms) rollback transaction
38024
+  (0.0ms) begin transaction
38025
+  (0.0ms) SAVEPOINT active_record_1
38026
+ 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"]]
38027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38028
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38029
+  (0.0ms) rollback transaction
38030
+  (0.0ms) begin transaction
38031
+  (0.0ms) SAVEPOINT active_record_1
38032
+ 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"]]
38033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38034
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38035
+  (0.0ms) rollback transaction
38036
+  (0.0ms) begin transaction
38037
+  (0.0ms) SAVEPOINT active_record_1
38038
+ 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"]]
38039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38040
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38041
+  (0.0ms) rollback transaction
38042
+  (0.0ms) begin transaction
38043
+  (0.0ms) SAVEPOINT active_record_1
38044
+ 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"]]
38045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38046
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38047
+  (0.1ms) rollback transaction
38048
+  (0.0ms) begin transaction
38049
+  (0.0ms) SAVEPOINT active_record_1
38050
+ 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"]]
38051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38052
+  (0.1ms) rollback transaction
38053
+  (0.0ms) begin transaction
38054
+  (0.0ms) SAVEPOINT active_record_1
38055
+ 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"]]
38056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38057
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38058
+  (0.0ms) rollback transaction
38059
+  (0.0ms) begin transaction
38060
+  (0.0ms) rollback transaction
38061
+  (0.0ms) begin transaction
38062
+  (0.0ms) SAVEPOINT active_record_1
38063
+ 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-06-15 20:50:48.767614"], ["updated_at", "2017-06-15 20:50:48.767614"]]
38064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38065
+  (0.0ms) rollback transaction
38066
+  (0.0ms) begin transaction
38067
+  (0.0ms) SAVEPOINT active_record_1
38068
+ 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-06-15 20:50:48.770637"], ["updated_at", "2017-06-15 20:50:48.770637"]]
38069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38070
+  (0.0ms) rollback transaction
38071
+  (0.0ms) begin transaction
38072
+  (0.0ms) SAVEPOINT active_record_1
38073
+ 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-06-15 20:50:48.775438"], ["updated_at", "2017-06-15 20:50:48.775438"]]
38074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38075
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
38076
+  (0.0ms) rollback transaction
38077
+  (0.0ms) begin transaction
38078
+  (0.0ms) rollback transaction
38079
+  (0.0ms) begin transaction
38080
+  (0.0ms) rollback transaction
38081
+  (0.0ms) begin transaction
38082
+  (0.1ms) SAVEPOINT active_record_1
38083
+ 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-06-15 20:50:48.784017"], ["updated_at", "2017-06-15 20:50:48.784017"]]
38084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38085
+  (0.0ms) rollback transaction
38086
+  (0.0ms) begin transaction
38087
+  (0.0ms) SAVEPOINT active_record_1
38088
+ 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-06-15 20:50:48.787541"], ["updated_at", "2017-06-15 20:50:48.787541"]]
38089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38090
+  (0.0ms) rollback transaction
38091
+  (0.0ms) begin transaction
38092
+  (0.0ms) SAVEPOINT active_record_1
38093
+ 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-06-15 20:50:48.790512"], ["updated_at", "2017-06-15 20:50:48.790512"]]
38094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38095
+  (0.0ms) rollback transaction
38096
+  (0.1ms) begin transaction
38097
+  (0.1ms) rollback transaction
38098
+  (0.0ms) begin transaction
38099
+  (0.1ms) SAVEPOINT active_record_1
38100
+ 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-06-15 20:50:48.800801"], ["updated_at", "2017-06-15 20:50:48.800801"]]
38101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38102
+  (0.1ms) rollback transaction
38103
+  (0.1ms) begin transaction
38104
+  (0.1ms) SAVEPOINT active_record_1
38105
+ 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-06-15 20:50:48.806242"], ["updated_at", "2017-06-15 20:50:48.806242"]]
38106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38107
+  (0.1ms) rollback transaction
38108
+  (0.0ms) begin transaction
38109
+  (0.0ms) SAVEPOINT active_record_1
38110
+ 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-06-15 20:50:48.810506"], ["updated_at", "2017-06-15 20:50:48.810506"]]
38111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38112
+  (0.0ms) rollback transaction
38113
+  (0.0ms) begin transaction
38114
+  (0.0ms) SAVEPOINT active_record_1
38115
+ 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-06-15 20:50:48.814380"], ["updated_at", "2017-06-15 20:50:48.814380"]]
38116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38117
+  (0.0ms) rollback transaction
38118
+  (0.0ms) DROP TABLE IF EXISTS "people"
38119
+  (0.8ms) SELECT sqlite_version(*)
38120
+  (0.3ms) 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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38121
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
38122
+  (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)
38123
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
38124
+  (0.1ms) DROP TABLE IF EXISTS "organizations"
38125
+  (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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38126
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
38127
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
38128
+  (0.1ms) CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38129
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
38130
+  (0.3ms)  SELECT sql
38131
+ FROM sqlite_master
38132
+ WHERE name='index_assignments_on_person_id' AND type='index'
38133
+ UNION ALL
38134
+ SELECT sql
38135
+ FROM sqlite_temp_master
38136
+ WHERE name='index_assignments_on_person_id' AND type='index'
38137
+ 
38138
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
38139
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
38140
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
38141
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
38142
+  (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)
38143
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38144
+  (0.0ms) begin transaction
38145
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-15 20:51:23.332534"], ["updated_at", "2017-06-15 20:51:23.332534"]]
38146
+  (0.0ms) commit transaction
38147
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38148
+  (0.0ms) begin transaction
38149
+  (0.0ms) commit transaction
38150
+  (0.1ms) begin transaction
38151
+  (0.0ms) rollback transaction
38152
+  (0.0ms) begin transaction
38153
+  (0.0ms) rollback transaction
38154
+  (0.0ms) begin transaction
38155
+  (0.0ms) rollback transaction
38156
+  (0.0ms) begin transaction
38157
+  (0.0ms) rollback transaction
38158
+  (0.0ms) begin transaction
38159
+  (0.0ms) rollback transaction
38160
+  (0.0ms) begin transaction
38161
+  (0.0ms) rollback transaction
38162
+  (0.0ms) begin transaction
38163
+  (0.1ms) rollback transaction
38164
+  (0.0ms) begin transaction
38165
+  (0.0ms) rollback transaction
38166
+  (0.0ms) begin transaction
38167
+  (0.0ms) rollback transaction
38168
+  (0.0ms) begin transaction
38169
+  (0.0ms) SAVEPOINT active_record_1
38170
+ 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"]]
38171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38172
+  (0.1ms) rollback transaction
38173
+  (0.0ms) begin transaction
38174
+  (0.0ms) SAVEPOINT active_record_1
38175
+ 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"]]
38176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38177
+  (0.0ms) SAVEPOINT active_record_1
38178
+ 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"]]
38179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38180
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38181
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38182
+  (0.1ms) rollback transaction
38183
+  (0.0ms) begin transaction
38184
+  (0.0ms) SAVEPOINT active_record_1
38185
+ 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"]]
38186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38187
+  (0.0ms) SAVEPOINT active_record_1
38188
+ 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"]]
38189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38190
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38191
+  (0.1ms) rollback transaction
38192
+  (0.0ms) begin transaction
38193
+  (0.0ms) SAVEPOINT active_record_1
38194
+ 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"]]
38195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38196
+  (0.0ms) SAVEPOINT active_record_1
38197
+ 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"]]
38198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38199
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38200
+  (0.1ms) rollback transaction
38201
+  (0.0ms) begin transaction
38202
+  (0.0ms) SAVEPOINT active_record_1
38203
+ 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"]]
38204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38205
+  (0.0ms) SAVEPOINT active_record_1
38206
+ 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"]]
38207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38208
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38209
+  (0.0ms) rollback transaction
38210
+  (0.0ms) begin transaction
38211
+  (0.0ms) SAVEPOINT active_record_1
38212
+ 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"]]
38213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38214
+  (0.0ms) SAVEPOINT active_record_1
38215
+ 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"]]
38216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38217
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38218
+  (0.0ms) rollback transaction
38219
+  (0.0ms) begin transaction
38220
+  (0.0ms) rollback transaction
38221
+  (0.0ms) begin transaction
38222
+  (0.0ms) SAVEPOINT active_record_1
38223
+ 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"]]
38224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38225
+  (0.0ms) SAVEPOINT active_record_1
38226
+ 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"]]
38227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38228
+  (0.0ms) SAVEPOINT active_record_1
38229
+ 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"]]
38230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38231
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38232
+  (0.1ms) rollback transaction
38233
+  (0.0ms) begin transaction
38234
+  (0.0ms) SAVEPOINT active_record_1
38235
+ 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"]]
38236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38237
+  (0.0ms) SAVEPOINT active_record_1
38238
+ 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"]]
38239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38240
+  (0.0ms) SAVEPOINT active_record_1
38241
+ 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"]]
38242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38243
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38244
+  (0.1ms) rollback transaction
38245
+  (0.0ms) begin transaction
38246
+  (0.0ms) SAVEPOINT active_record_1
38247
+ 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"]]
38248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38249
+  (0.0ms) SAVEPOINT active_record_1
38250
+ 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"]]
38251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38252
+  (0.0ms) SAVEPOINT active_record_1
38253
+ 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"]]
38254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38255
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38256
+  (0.1ms) rollback transaction
38257
+  (0.0ms) begin transaction
38258
+  (0.0ms) SAVEPOINT active_record_1
38259
+ 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"]]
38260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38261
+  (0.0ms) SAVEPOINT active_record_1
38262
+ 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"]]
38263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38264
+  (0.0ms) SAVEPOINT active_record_1
38265
+ 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"]]
38266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38267
+  (0.1ms) rollback transaction
38268
+  (0.0ms) begin transaction
38269
+  (0.0ms) SAVEPOINT active_record_1
38270
+ 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-06-15 20:51:24.036240"], ["updated_at", "2017-06-15 20:51:24.036240"]]
38271
+ SQL (0.1ms) 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", "2017-06-15"], ["created_at", "2017-06-15 20:51:24.037151"], ["updated_at", "2017-06-15 20:51:24.037151"]]
38272
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:51:24.035600"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:51:24.037766"], ["updated_at", "2017-06-15 20:51:24.037766"]]
38273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38274
+  (0.1ms) rollback transaction
38275
+  (0.0ms) begin transaction
38276
+  (0.1ms) SAVEPOINT active_record_1
38277
+ 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-06-15 20:51:24.044101"], ["updated_at", "2017-06-15 20:51:24.044101"]]
38278
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:51:24.044982"], ["updated_at", "2017-06-15 20:51:24.044982"]]
38279
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:51:24.043503"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:51:24.045668"], ["updated_at", "2017-06-15 20:51:24.045668"]]
38280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38281
+  (0.0ms) rollback transaction
38282
+  (0.0ms) begin transaction
38283
+  (0.0ms) SAVEPOINT active_record_1
38284
+ 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-06-15 20:51:24.050568"], ["updated_at", "2017-06-15 20:51:24.050568"]]
38285
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:51:24.051367"], ["updated_at", "2017-06-15 20:51:24.051367"]]
38286
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:51:24.049986"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:51:24.051945"], ["updated_at", "2017-06-15 20:51:24.051945"]]
38287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38288
+  (0.1ms) rollback transaction
38289
+  (0.0ms) begin transaction
38290
+  (0.0ms) rollback transaction
38291
+  (0.0ms) begin transaction
38292
+  (0.0ms) rollback transaction
38293
+  (0.0ms) begin transaction
38294
+  (0.0ms) rollback transaction
38295
+  (0.0ms) begin transaction
38296
+  (0.0ms) SAVEPOINT active_record_1
38297
+ 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"]]
38298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38299
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
38300
+  (0.0ms) rollback transaction
38301
+  (0.0ms) begin transaction
38302
+  (0.0ms) SAVEPOINT active_record_1
38303
+ 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"]]
38304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38305
+  (0.0ms) SAVEPOINT active_record_1
38306
+ 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"]]
38307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38308
+  (0.1ms) rollback transaction
38309
+  (0.0ms) begin transaction
38310
+  (0.0ms) SAVEPOINT active_record_1
38311
+ 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"]]
38312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38313
+  (0.0ms) SAVEPOINT active_record_1
38314
+ 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"]]
38315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38316
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
38317
+  (0.1ms) rollback transaction
38318
+  (0.0ms) begin transaction
38319
+  (0.1ms) rollback transaction
38320
+  (0.0ms) begin transaction
38321
+  (0.0ms) rollback transaction
38322
+  (0.0ms) begin transaction
38323
+  (0.0ms) rollback transaction
38324
+  (0.0ms) begin transaction
38325
+  (0.0ms) SAVEPOINT active_record_1
38326
+ 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"]]
38327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38328
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38329
+  (0.0ms) rollback transaction
38330
+  (0.0ms) begin transaction
38331
+  (0.0ms) SAVEPOINT active_record_1
38332
+ 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"]]
38333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38334
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38335
+  (0.0ms) rollback transaction
38336
+  (0.0ms) begin transaction
38337
+  (0.0ms) SAVEPOINT active_record_1
38338
+ 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"]]
38339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38340
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38341
+  (0.1ms) rollback transaction
38342
+  (0.0ms) begin transaction
38343
+  (0.0ms) SAVEPOINT active_record_1
38344
+ 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"]]
38345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38346
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38347
+  (0.1ms) rollback transaction
38348
+  (0.0ms) begin transaction
38349
+  (0.0ms) SAVEPOINT active_record_1
38350
+ 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"]]
38351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38352
+  (0.0ms) rollback transaction
38353
+  (0.1ms) begin transaction
38354
+  (0.0ms) SAVEPOINT active_record_1
38355
+ 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"]]
38356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38357
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38358
+  (0.0ms) rollback transaction
38359
+  (0.0ms) begin transaction
38360
+  (0.0ms) rollback transaction
38361
+  (0.0ms) begin transaction
38362
+  (0.0ms) SAVEPOINT active_record_1
38363
+ 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-06-15 20:51:24.185691"], ["updated_at", "2017-06-15 20:51:24.185691"]]
38364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38365
+  (0.0ms) rollback transaction
38366
+  (0.0ms) begin transaction
38367
+  (0.0ms) SAVEPOINT active_record_1
38368
+ 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-06-15 20:51:24.188784"], ["updated_at", "2017-06-15 20:51:24.188784"]]
38369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38370
+  (0.0ms) rollback transaction
38371
+  (0.0ms) begin transaction
38372
+  (0.0ms) SAVEPOINT active_record_1
38373
+ 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-06-15 20:51:24.193764"], ["updated_at", "2017-06-15 20:51:24.193764"]]
38374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38375
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
38376
+  (0.0ms) rollback transaction
38377
+  (0.0ms) begin transaction
38378
+  (0.1ms) rollback transaction
38379
+  (0.0ms) begin transaction
38380
+  (0.0ms) rollback transaction
38381
+  (0.0ms) begin transaction
38382
+  (0.0ms) SAVEPOINT active_record_1
38383
+ 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-06-15 20:51:24.203605"], ["updated_at", "2017-06-15 20:51:24.203605"]]
38384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38385
+  (0.0ms) rollback transaction
38386
+  (0.0ms) begin transaction
38387
+  (0.0ms) SAVEPOINT active_record_1
38388
+ 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-06-15 20:51:24.206943"], ["updated_at", "2017-06-15 20:51:24.206943"]]
38389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38390
+  (0.0ms) rollback transaction
38391
+  (0.1ms) begin transaction
38392
+  (0.0ms) SAVEPOINT active_record_1
38393
+ 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-06-15 20:51:24.211234"], ["updated_at", "2017-06-15 20:51:24.211234"]]
38394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38395
+  (0.0ms) rollback transaction
38396
+  (0.0ms) begin transaction
38397
+  (4.5ms) rollback transaction
38398
+  (0.0ms) begin transaction
38399
+  (0.1ms) SAVEPOINT active_record_1
38400
+ 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-06-15 20:51:24.221378"], ["updated_at", "2017-06-15 20:51:24.221378"]]
38401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38402
+  (0.1ms) rollback transaction
38403
+  (0.0ms) begin transaction
38404
+  (0.1ms) SAVEPOINT active_record_1
38405
+ 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-06-15 20:51:24.225743"], ["updated_at", "2017-06-15 20:51:24.225743"]]
38406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
38407
+  (0.1ms) rollback transaction
38408
+  (0.0ms) begin transaction
38409
+  (0.0ms) SAVEPOINT active_record_1
38410
+ 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-06-15 20:51:24.230127"], ["updated_at", "2017-06-15 20:51:24.230127"]]
38411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38412
+  (0.0ms) rollback transaction
38413
+  (0.1ms) begin transaction
38414
+  (0.1ms) SAVEPOINT active_record_1
38415
+ 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-06-15 20:51:24.233968"], ["updated_at", "2017-06-15 20:51:24.233968"]]
38416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38417
+  (0.0ms) rollback transaction
38418
+  (0.0ms) DROP TABLE IF EXISTS "people"
38419
+  (0.8ms) SELECT sqlite_version(*)
38420
+  (0.3ms) 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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38421
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
38422
+  (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)
38423
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
38424
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
38425
+  (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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38426
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
38427
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
38428
+  (0.1ms) CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38429
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
38430
+  (0.2ms)  SELECT sql
38431
+ FROM sqlite_master
38432
+ WHERE name='index_assignments_on_person_id' AND type='index'
38433
+ UNION ALL
38434
+ SELECT sql
38435
+ FROM sqlite_temp_master
38436
+ WHERE name='index_assignments_on_person_id' AND type='index'
38437
+ 
38438
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
38439
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
38440
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
38441
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
38442
+  (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)
38443
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38444
+  (0.0ms) begin transaction
38445
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-15 20:53:14.278461"], ["updated_at", "2017-06-15 20:53:14.278461"]]
38446
+  (0.0ms) commit transaction
38447
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38448
+  (0.0ms) begin transaction
38449
+  (0.0ms) commit transaction
38450
+  (0.1ms) begin transaction
38451
+  (0.1ms) rollback transaction
38452
+  (0.0ms) begin transaction
38453
+  (0.0ms) rollback transaction
38454
+  (0.0ms) begin transaction
38455
+  (0.0ms) rollback transaction
38456
+  (0.0ms) begin transaction
38457
+  (0.0ms) rollback transaction
38458
+  (0.0ms) begin transaction
38459
+  (0.0ms) rollback transaction
38460
+  (0.0ms) begin transaction
38461
+  (0.0ms) rollback transaction
38462
+  (0.0ms) begin transaction
38463
+  (0.1ms) rollback transaction
38464
+  (0.0ms) begin transaction
38465
+  (0.0ms) rollback transaction
38466
+  (0.0ms) begin transaction
38467
+  (0.0ms) rollback transaction
38468
+  (0.0ms) begin transaction
38469
+  (0.0ms) SAVEPOINT active_record_1
38470
+ 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"]]
38471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38472
+  (0.1ms) rollback transaction
38473
+  (0.0ms) begin transaction
38474
+  (0.0ms) SAVEPOINT active_record_1
38475
+ 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"]]
38476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38477
+  (0.0ms) SAVEPOINT active_record_1
38478
+ 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"]]
38479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38480
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38481
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38482
+  (0.1ms) rollback transaction
38483
+  (0.0ms) begin transaction
38484
+  (0.0ms) SAVEPOINT active_record_1
38485
+ 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"]]
38486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38487
+  (0.0ms) SAVEPOINT active_record_1
38488
+ 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"]]
38489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38490
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38491
+  (0.1ms) rollback transaction
38492
+  (0.0ms) begin transaction
38493
+  (0.0ms) SAVEPOINT active_record_1
38494
+ 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"]]
38495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38496
+  (0.0ms) SAVEPOINT active_record_1
38497
+ 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"]]
38498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38499
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38500
+  (0.1ms) rollback transaction
38501
+  (0.0ms) begin transaction
38502
+  (0.0ms) SAVEPOINT active_record_1
38503
+ 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"]]
38504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38505
+  (0.0ms) SAVEPOINT active_record_1
38506
+ 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"]]
38507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38508
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38509
+  (0.1ms) rollback transaction
38510
+  (0.2ms) begin transaction
38511
+  (0.0ms) SAVEPOINT active_record_1
38512
+ 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"]]
38513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38514
+  (0.0ms) SAVEPOINT active_record_1
38515
+ 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"]]
38516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38517
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38518
+  (0.2ms) rollback transaction
38519
+  (0.0ms) begin transaction
38520
+  (0.1ms) rollback transaction
38521
+  (0.0ms) begin transaction
38522
+  (0.0ms) SAVEPOINT active_record_1
38523
+ 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"]]
38524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38525
+  (0.0ms) SAVEPOINT active_record_1
38526
+ 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"]]
38527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38528
+  (0.0ms) SAVEPOINT active_record_1
38529
+ 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"]]
38530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38531
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38532
+  (0.1ms) rollback transaction
38533
+  (0.1ms) begin transaction
38534
+  (0.0ms) SAVEPOINT active_record_1
38535
+ 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"]]
38536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38537
+  (0.0ms) SAVEPOINT active_record_1
38538
+ 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"]]
38539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38540
+  (0.0ms) SAVEPOINT active_record_1
38541
+ 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"]]
38542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38543
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38544
+  (0.1ms) rollback transaction
38545
+  (0.0ms) begin transaction
38546
+  (0.0ms) SAVEPOINT active_record_1
38547
+ 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"]]
38548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38549
+  (0.0ms) SAVEPOINT active_record_1
38550
+ 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"]]
38551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38552
+  (0.0ms) SAVEPOINT active_record_1
38553
+ 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"]]
38554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38555
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38556
+  (0.1ms) rollback transaction
38557
+  (0.1ms) begin transaction
38558
+  (0.0ms) SAVEPOINT active_record_1
38559
+ 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"]]
38560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38561
+  (0.0ms) SAVEPOINT active_record_1
38562
+ 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"]]
38563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38564
+  (0.0ms) SAVEPOINT active_record_1
38565
+ 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"]]
38566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38567
+  (0.1ms) rollback transaction
38568
+  (0.0ms) begin transaction
38569
+  (0.1ms) SAVEPOINT active_record_1
38570
+ 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-06-15 20:53:15.023461"], ["updated_at", "2017-06-15 20:53:15.023461"]]
38571
+ SQL (0.1ms) 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", "2017-06-15"], ["created_at", "2017-06-15 20:53:15.024394"], ["updated_at", "2017-06-15 20:53:15.024394"]]
38572
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:53:15.022841"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:53:15.025039"], ["updated_at", "2017-06-15 20:53:15.025039"]]
38573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38574
+  (0.0ms) rollback transaction
38575
+  (0.0ms) begin transaction
38576
+  (0.0ms) SAVEPOINT active_record_1
38577
+ 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-06-15 20:53:15.031377"], ["updated_at", "2017-06-15 20:53:15.031377"]]
38578
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:53:15.032267"], ["updated_at", "2017-06-15 20:53:15.032267"]]
38579
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:53:15.030755"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:53:15.032905"], ["updated_at", "2017-06-15 20:53:15.032905"]]
38580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38581
+  (0.0ms) rollback transaction
38582
+  (0.0ms) begin transaction
38583
+  (0.0ms) SAVEPOINT active_record_1
38584
+ 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-06-15 20:53:15.037758"], ["updated_at", "2017-06-15 20:53:15.037758"]]
38585
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:53:15.038524"], ["updated_at", "2017-06-15 20:53:15.038524"]]
38586
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:53:15.037179"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:53:15.039406"], ["updated_at", "2017-06-15 20:53:15.039406"]]
38587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
38588
+  (0.1ms) rollback transaction
38589
+  (0.0ms) begin transaction
38590
+  (0.0ms) rollback transaction
38591
+  (0.0ms) begin transaction
38592
+  (0.0ms) rollback transaction
38593
+  (0.0ms) begin transaction
38594
+  (0.0ms) rollback transaction
38595
+  (0.1ms) begin transaction
38596
+  (0.0ms) SAVEPOINT active_record_1
38597
+ 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"]]
38598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38599
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
38600
+  (0.1ms) rollback transaction
38601
+  (0.0ms) begin transaction
38602
+  (0.0ms) SAVEPOINT active_record_1
38603
+ 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"]]
38604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38605
+  (0.0ms) SAVEPOINT active_record_1
38606
+ 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"]]
38607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38608
+  (0.1ms) rollback transaction
38609
+  (0.0ms) begin transaction
38610
+  (0.0ms) SAVEPOINT active_record_1
38611
+ 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"]]
38612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38613
+  (0.0ms) SAVEPOINT active_record_1
38614
+ 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"]]
38615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38616
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
38617
+  (0.1ms) rollback transaction
38618
+  (0.0ms) begin transaction
38619
+  (0.0ms) rollback transaction
38620
+  (0.0ms) begin transaction
38621
+  (0.0ms) rollback transaction
38622
+  (0.1ms) begin transaction
38623
+  (0.1ms) rollback transaction
38624
+  (0.0ms) begin transaction
38625
+  (0.0ms) SAVEPOINT active_record_1
38626
+ 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"]]
38627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38628
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38629
+  (0.1ms) rollback transaction
38630
+  (0.0ms) begin transaction
38631
+  (0.0ms) SAVEPOINT active_record_1
38632
+ 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"]]
38633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38634
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38635
+  (0.1ms) rollback transaction
38636
+  (0.0ms) begin transaction
38637
+  (0.0ms) SAVEPOINT active_record_1
38638
+ 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"]]
38639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38640
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38641
+  (0.1ms) rollback transaction
38642
+  (0.1ms) begin transaction
38643
+  (0.0ms) SAVEPOINT active_record_1
38644
+ 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"]]
38645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38646
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38647
+  (0.0ms) rollback transaction
38648
+  (0.1ms) begin transaction
38649
+  (0.0ms) SAVEPOINT active_record_1
38650
+ 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"]]
38651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38652
+  (0.1ms) rollback transaction
38653
+  (0.0ms) begin transaction
38654
+  (0.0ms) SAVEPOINT active_record_1
38655
+ 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"]]
38656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38657
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38658
+  (0.0ms) rollback transaction
38659
+  (0.0ms) begin transaction
38660
+  (0.0ms) rollback transaction
38661
+  (0.0ms) begin transaction
38662
+  (0.0ms) SAVEPOINT active_record_1
38663
+ 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-06-15 20:53:15.189010"], ["updated_at", "2017-06-15 20:53:15.189010"]]
38664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38665
+  (0.0ms) rollback transaction
38666
+  (0.0ms) begin transaction
38667
+  (0.1ms) SAVEPOINT active_record_1
38668
+ SQL (0.2ms) 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-06-15 20:53:15.193092"], ["updated_at", "2017-06-15 20:53:15.193092"]]
38669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38670
+  (0.0ms) rollback transaction
38671
+  (0.0ms) begin transaction
38672
+  (0.1ms) SAVEPOINT active_record_1
38673
+ 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-06-15 20:53:15.200367"], ["updated_at", "2017-06-15 20:53:15.200367"]]
38674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
38675
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
38676
+  (0.0ms) rollback transaction
38677
+  (0.1ms) begin transaction
38678
+  (0.0ms) rollback transaction
38679
+  (0.0ms) begin transaction
38680
+  (0.0ms) rollback transaction
38681
+  (0.0ms) begin transaction
38682
+  (0.1ms) SAVEPOINT active_record_1
38683
+ 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-06-15 20:53:15.212826"], ["updated_at", "2017-06-15 20:53:15.212826"]]
38684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38685
+  (0.1ms) rollback transaction
38686
+  (0.0ms) begin transaction
38687
+  (0.1ms) SAVEPOINT active_record_1
38688
+ 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-06-15 20:53:15.216823"], ["updated_at", "2017-06-15 20:53:15.216823"]]
38689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38690
+  (0.0ms) rollback transaction
38691
+  (0.0ms) begin transaction
38692
+  (0.0ms) SAVEPOINT active_record_1
38693
+ 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-06-15 20:53:15.220366"], ["updated_at", "2017-06-15 20:53:15.220366"]]
38694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
38695
+  (0.0ms) rollback transaction
38696
+  (0.1ms) begin transaction
38697
+  (0.1ms) rollback transaction
38698
+  (0.0ms) begin transaction
38699
+  (0.1ms) SAVEPOINT active_record_1
38700
+ 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-06-15 20:53:15.231511"], ["updated_at", "2017-06-15 20:53:15.231511"]]
38701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38702
+  (0.0ms) rollback transaction
38703
+  (0.0ms) begin transaction
38704
+  (0.0ms) SAVEPOINT active_record_1
38705
+ 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-06-15 20:53:15.236422"], ["updated_at", "2017-06-15 20:53:15.236422"]]
38706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38707
+  (0.1ms) rollback transaction
38708
+  (0.0ms) begin transaction
38709
+  (0.1ms) SAVEPOINT active_record_1
38710
+ SQL (0.3ms) 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-06-15 20:53:15.241899"], ["updated_at", "2017-06-15 20:53:15.241899"]]
38711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38712
+  (0.0ms) rollback transaction
38713
+  (0.0ms) begin transaction
38714
+  (0.1ms) SAVEPOINT active_record_1
38715
+ 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-06-15 20:53:15.246995"], ["updated_at", "2017-06-15 20:53:15.246995"]]
38716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38717
+  (0.0ms) rollback transaction
38718
+  (0.0ms) DROP TABLE IF EXISTS "people"
38719
+  (0.8ms) SELECT sqlite_version(*)
38720
+  (0.3ms) 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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38721
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
38722
+  (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)
38723
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
38724
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
38725
+  (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, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38726
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
38727
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
38728
+  (0.1ms) CREATE TABLE "assignments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38729
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
38730
+  (0.2ms)  SELECT sql
38731
+ FROM sqlite_master
38732
+ WHERE name='index_assignments_on_person_id' AND type='index'
38733
+ UNION ALL
38734
+ SELECT sql
38735
+ FROM sqlite_temp_master
38736
+ WHERE name='index_assignments_on_person_id' AND type='index'
38737
+ 
38738
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
38739
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
38740
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
38741
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
38742
+  (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)
38743
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38744
+  (0.0ms) begin transaction
38745
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-15 20:54:09.096407"], ["updated_at", "2017-06-15 20:54:09.096407"]]
38746
+  (0.0ms) commit transaction
38747
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38748
+  (0.0ms) begin transaction
38749
+  (0.1ms) commit transaction
38750
+  (0.1ms) begin transaction
38751
+  (0.1ms) rollback transaction
38752
+  (0.0ms) begin transaction
38753
+  (0.0ms) rollback transaction
38754
+  (0.0ms) begin transaction
38755
+  (0.0ms) rollback transaction
38756
+  (0.0ms) begin transaction
38757
+  (0.0ms) rollback transaction
38758
+  (0.0ms) begin transaction
38759
+  (0.0ms) rollback transaction
38760
+  (0.0ms) begin transaction
38761
+  (0.0ms) rollback transaction
38762
+  (0.0ms) begin transaction
38763
+  (0.1ms) rollback transaction
38764
+  (0.0ms) begin transaction
38765
+  (0.0ms) rollback transaction
38766
+  (0.0ms) begin transaction
38767
+  (0.0ms) rollback transaction
38768
+  (0.0ms) begin transaction
38769
+  (0.0ms) SAVEPOINT active_record_1
38770
+ 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"]]
38771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38772
+  (0.1ms) rollback transaction
38773
+  (0.0ms) begin transaction
38774
+  (0.0ms) SAVEPOINT active_record_1
38775
+ 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"]]
38776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38777
+  (0.0ms) SAVEPOINT active_record_1
38778
+ 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"]]
38779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38780
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38781
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38782
+  (0.0ms) rollback transaction
38783
+  (0.0ms) begin transaction
38784
+  (0.0ms) SAVEPOINT active_record_1
38785
+ 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"]]
38786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38787
+  (0.0ms) SAVEPOINT active_record_1
38788
+ 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"]]
38789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38790
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38791
+  (0.0ms) rollback transaction
38792
+  (0.0ms) begin transaction
38793
+  (0.0ms) SAVEPOINT active_record_1
38794
+ 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"]]
38795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38796
+  (0.0ms) SAVEPOINT active_record_1
38797
+ 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"]]
38798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38799
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38800
+  (0.1ms) rollback transaction
38801
+  (0.0ms) begin transaction
38802
+  (0.0ms) SAVEPOINT active_record_1
38803
+ 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"]]
38804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38805
+  (0.0ms) SAVEPOINT active_record_1
38806
+ 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"]]
38807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38808
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38809
+  (0.0ms) rollback transaction
38810
+  (0.0ms) begin transaction
38811
+  (0.0ms) SAVEPOINT active_record_1
38812
+ 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"]]
38813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38814
+  (0.0ms) SAVEPOINT active_record_1
38815
+ 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"]]
38816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38817
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
38818
+  (0.0ms) rollback transaction
38819
+  (0.0ms) begin transaction
38820
+  (0.1ms) rollback transaction
38821
+  (0.0ms) begin transaction
38822
+  (0.0ms) SAVEPOINT active_record_1
38823
+ 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"]]
38824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38825
+  (0.0ms) SAVEPOINT active_record_1
38826
+ 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"]]
38827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38828
+  (0.0ms) SAVEPOINT active_record_1
38829
+ 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"]]
38830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38831
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38832
+  (0.1ms) rollback transaction
38833
+  (0.0ms) begin transaction
38834
+  (0.0ms) SAVEPOINT active_record_1
38835
+ 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"]]
38836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38837
+  (0.0ms) SAVEPOINT active_record_1
38838
+ 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"]]
38839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38840
+  (0.0ms) SAVEPOINT active_record_1
38841
+ 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"]]
38842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38843
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38844
+  (0.1ms) rollback transaction
38845
+  (0.0ms) begin transaction
38846
+  (0.0ms) SAVEPOINT active_record_1
38847
+ 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"]]
38848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38849
+  (0.0ms) SAVEPOINT active_record_1
38850
+ 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"]]
38851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38852
+  (0.0ms) SAVEPOINT active_record_1
38853
+ 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"]]
38854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38855
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
38856
+  (0.1ms) rollback transaction
38857
+  (0.0ms) begin transaction
38858
+  (0.0ms) SAVEPOINT active_record_1
38859
+ 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"]]
38860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38861
+  (0.0ms) SAVEPOINT active_record_1
38862
+ 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"]]
38863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38864
+  (0.0ms) SAVEPOINT active_record_1
38865
+ 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"]]
38866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38867
+  (0.0ms) rollback transaction
38868
+  (0.1ms) begin transaction
38869
+  (0.1ms) SAVEPOINT active_record_1
38870
+ 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-06-15 20:54:09.784944"], ["updated_at", "2017-06-15 20:54:09.784944"]]
38871
+ SQL (0.1ms) 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", "2017-06-15"], ["created_at", "2017-06-15 20:54:09.786011"], ["updated_at", "2017-06-15 20:54:09.786011"]]
38872
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:54:09.784219"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:54:09.786913"], ["updated_at", "2017-06-15 20:54:09.786913"]]
38873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38874
+  (0.0ms) rollback transaction
38875
+  (0.0ms) begin transaction
38876
+  (0.0ms) SAVEPOINT active_record_1
38877
+ 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-06-15 20:54:09.793343"], ["updated_at", "2017-06-15 20:54:09.793343"]]
38878
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:54:09.794195"], ["updated_at", "2017-06-15 20:54:09.794195"]]
38879
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:54:09.792815"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:54:09.794797"], ["updated_at", "2017-06-15 20:54:09.794797"]]
38880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38881
+  (0.0ms) rollback transaction
38882
+  (0.0ms) begin transaction
38883
+  (0.0ms) SAVEPOINT active_record_1
38884
+ 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-06-15 20:54:09.799257"], ["updated_at", "2017-06-15 20:54:09.799257"]]
38885
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-15"], ["created_at", "2017-06-15 20:54:09.799980"], ["updated_at", "2017-06-15 20:54:09.799980"]]
38886
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-15 20:54:09.798747"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-15 20:54:09.800557"], ["updated_at", "2017-06-15 20:54:09.800557"]]
38887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38888
+  (0.0ms) rollback transaction
38889
+  (0.0ms) begin transaction
38890
+  (0.0ms) rollback transaction
38891
+  (0.0ms) begin transaction
38892
+  (0.0ms) rollback transaction
38893
+  (0.1ms) begin transaction
38894
+  (0.0ms) rollback transaction
38895
+  (0.0ms) begin transaction
38896
+  (0.0ms) SAVEPOINT active_record_1
38897
+ 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"]]
38898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38899
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
38900
+  (0.0ms) rollback transaction
38901
+  (0.0ms) begin transaction
38902
+  (0.0ms) SAVEPOINT active_record_1
38903
+ 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"]]
38904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38905
+  (0.0ms) SAVEPOINT active_record_1
38906
+ 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"]]
38907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38908
+  (0.1ms) rollback transaction
38909
+  (0.0ms) begin transaction
38910
+  (0.0ms) SAVEPOINT active_record_1
38911
+ 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"]]
38912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38913
+  (0.0ms) SAVEPOINT active_record_1
38914
+ 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"]]
38915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38916
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
38917
+  (0.0ms) rollback transaction
38918
+  (0.0ms) begin transaction
38919
+  (0.0ms) rollback transaction
38920
+  (0.0ms) begin transaction
38921
+  (0.0ms) rollback transaction
38922
+  (0.0ms) begin transaction
38923
+  (0.0ms) rollback transaction
38924
+  (0.0ms) begin transaction
38925
+  (0.0ms) SAVEPOINT active_record_1
38926
+ 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"]]
38927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38928
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38929
+  (0.1ms) rollback transaction
38930
+  (0.0ms) begin transaction
38931
+  (0.0ms) SAVEPOINT active_record_1
38932
+ 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"]]
38933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38934
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38935
+  (0.0ms) rollback transaction
38936
+  (0.0ms) begin transaction
38937
+  (0.0ms) SAVEPOINT active_record_1
38938
+ 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"]]
38939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38940
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38941
+  (0.0ms) rollback transaction
38942
+  (0.0ms) begin transaction
38943
+  (0.0ms) SAVEPOINT active_record_1
38944
+ 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"]]
38945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38946
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38947
+  (0.0ms) rollback transaction
38948
+  (0.0ms) begin transaction
38949
+  (0.0ms) SAVEPOINT active_record_1
38950
+ 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"]]
38951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38952
+  (0.1ms) rollback transaction
38953
+  (0.0ms) begin transaction
38954
+  (0.0ms) SAVEPOINT active_record_1
38955
+ 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"]]
38956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38957
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
38958
+  (0.0ms) rollback transaction
38959
+  (0.0ms) begin transaction
38960
+  (0.0ms) rollback transaction
38961
+  (0.0ms) begin transaction
38962
+  (0.0ms) SAVEPOINT active_record_1
38963
+ 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-06-15 20:54:09.928509"], ["updated_at", "2017-06-15 20:54:09.928509"]]
38964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38965
+  (0.0ms) rollback transaction
38966
+  (0.0ms) begin transaction
38967
+  (0.0ms) SAVEPOINT active_record_1
38968
+ 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-06-15 20:54:09.931673"], ["updated_at", "2017-06-15 20:54:09.931673"]]
38969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38970
+  (0.0ms) rollback transaction
38971
+  (0.0ms) begin transaction
38972
+  (0.0ms) SAVEPOINT active_record_1
38973
+ 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-06-15 20:54:09.936800"], ["updated_at", "2017-06-15 20:54:09.936800"]]
38974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38975
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
38976
+  (0.0ms) rollback transaction
38977
+  (0.0ms) begin transaction
38978
+  (0.0ms) rollback transaction
38979
+  (0.0ms) begin transaction
38980
+  (0.0ms) rollback transaction
38981
+  (0.0ms) begin transaction
38982
+  (0.1ms) SAVEPOINT active_record_1
38983
+ 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-06-15 20:54:09.947375"], ["updated_at", "2017-06-15 20:54:09.947375"]]
38984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38985
+  (0.0ms) rollback transaction
38986
+  (0.0ms) begin transaction
38987
+  (0.0ms) SAVEPOINT active_record_1
38988
+ 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-06-15 20:54:09.951164"], ["updated_at", "2017-06-15 20:54:09.951164"]]
38989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38990
+  (0.1ms) rollback transaction
38991
+  (0.0ms) begin transaction
38992
+  (0.0ms) SAVEPOINT active_record_1
38993
+ 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-06-15 20:54:09.956138"], ["updated_at", "2017-06-15 20:54:09.956138"]]
38994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38995
+  (0.0ms) rollback transaction
38996
+  (0.0ms) begin transaction
38997
+  (0.0ms) rollback transaction
38998
+  (0.1ms) begin transaction
38999
+  (0.1ms) SAVEPOINT active_record_1
39000
+ 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-06-15 20:54:09.966697"], ["updated_at", "2017-06-15 20:54:09.966697"]]
39001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39002
+  (0.0ms) rollback transaction
39003
+  (0.0ms) begin transaction
39004
+  (0.0ms) SAVEPOINT active_record_1
39005
+ 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-06-15 20:54:09.971147"], ["updated_at", "2017-06-15 20:54:09.971147"]]
39006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39007
+  (0.1ms) rollback transaction
39008
+  (0.0ms) begin transaction
39009
+  (0.1ms) SAVEPOINT active_record_1
39010
+ 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-06-15 20:54:09.975888"], ["updated_at", "2017-06-15 20:54:09.975888"]]
39011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39012
+  (0.0ms) rollback transaction
39013
+  (0.0ms) begin transaction
39014
+  (0.1ms) SAVEPOINT active_record_1
39015
+ 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-06-15 20:54:09.980302"], ["updated_at", "2017-06-15 20:54:09.980302"]]
39016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39017
+  (0.0ms) rollback transaction