global-registry-bindings 0.3.1 → 0.3.2

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: 9858a6fe5fd12e6c9b876fd2e130fa1d19504c90
4
- data.tar.gz: 2be853ffbcfe35a3c584e3ab8530535ec81fbb67
3
+ metadata.gz: 6fde0711e44617c813c4e88abe88119ddc008c76
4
+ data.tar.gz: 4b1f10e75f4b95b7ccfbc2462403bd6cffcf3f6a
5
5
  SHA512:
6
- metadata.gz: a7080cbec9aa7fc76266f20416c242bde7b31245ddc35c0bf661af6d5ce1d85aeeb49c47a160bf73e912bc4f40ef036aa7de21f4393e7c87b2d20b35daff8474
7
- data.tar.gz: 4cd3e7f3b757bd68d625b3b946ba01b11aca46cf1a520364817c3cd80b13c651847f0be97bc4fa2d482f4436328c9f8333b0c8f9efdb675fe7d630528a06ca05
6
+ metadata.gz: 170479033b4c6c4d80952dcc9751ccd16e22dd3268d27fb2829380ee03757c51daa4191b9144c4ef48dae7175f6dd977a323fcd4b553ec6529d88deb578d71dd
7
+ data.tar.gz: 489177982a94ec7303ce80e311d27bd23392920e2a6e3281ca62ef4937fe7b7c5f8568cfdf19960eed7c4f2dd1bd5943021841c6a9c5d5a65eba6559f6a1f701
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.3.1'
5
+ VERSION = '0.3.2'
6
6
  end
7
7
  end
@@ -6,10 +6,17 @@ module GlobalRegistry #:nodoc:
6
6
  module Bindings #:nodoc:
7
7
  module Workers #:nodoc:
8
8
  def self.mdm_worker_class(model_class)
9
+ worker_class_name = model_class.global_registry_entity.mdm_worker_class_name
10
+ return const_get worker_class_name if const_defined? worker_class_name
11
+
9
12
  klass = Class.new(PullMdmIdWorker) do
10
13
  sidekiq_options unique: :until_timeout, unique_expiration: model_class.global_registry_entity.mdm_timeout
11
14
  end
12
- const_set model_class.global_registry_entity.mdm_worker_class_name, klass
15
+
16
+ const_set worker_class_name, klass
17
+ ActiveSupport::Dependencies.mark_for_unload(klass)
18
+
19
+ klass
13
20
  end
14
21
 
15
22
  class PullMdmIdWorker < ::GlobalRegistry::Bindings::Worker
Binary file
@@ -237759,3 +237759,666 @@ global-registry-bindings: Unknown options (binding)
237759
237759
   (0.0ms) RELEASE SAVEPOINT active_record_1
237760
237760
  Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
237761
237761
   (0.4ms) rollback transaction
237762
+  (0.1ms) DROP TABLE IF EXISTS "people"
237763
+  (1.6ms) SELECT sqlite_version(*)
237764
+  (1.2ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237765
+  (0.9ms) CREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")
237766
+  (1.2ms) CREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")
237767
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
237768
+  (1.7ms) 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)
237769
+  (1.2ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
237770
+  (0.1ms) DROP TABLE IF EXISTS "organizations"
237771
+  (1.1ms) CREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237772
+  (1.5ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
237773
+  (1.5ms) CREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")
237774
+  (0.1ms) DROP TABLE IF EXISTS "assignments"
237775
+  (1.1ms) CREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237776
+  (1.5ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
237777
+  (1.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
237778
+  (1.5ms) CREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")
237779
+  (0.1ms) DROP TABLE IF EXISTS "areas"
237780
+  (1.6ms) CREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237781
+  (0.1ms) DROP TABLE IF EXISTS "countries"
237782
+  (1.6ms) CREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237783
+  (0.1ms) DROP TABLE IF EXISTS "communities"
237784
+  (1.7ms) CREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237785
+  (0.1ms) DROP TABLE IF EXISTS "foos"
237786
+  (1.1ms) CREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237787
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
237788
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
237789
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES (0)
237790
+  (1.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
237791
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
237792
+  (0.0ms) begin transaction
237793
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-02-01 21:42:32.245284"], ["updated_at", "2019-02-01 21:42:32.245284"]]
237794
+  (1.7ms) commit transaction
237795
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
237796
+  (0.0ms) begin transaction
237797
+  (0.0ms) commit transaction
237798
+  (0.0ms) begin transaction
237799
+  (0.1ms) rollback transaction
237800
+  (0.0ms) begin transaction
237801
+  (0.1ms) rollback transaction
237802
+  (0.0ms) begin transaction
237803
+  (0.0ms) rollback transaction
237804
+  (0.0ms) begin transaction
237805
+  (0.1ms) rollback transaction
237806
+  (0.0ms) begin transaction
237807
+  (0.1ms) rollback transaction
237808
+  (0.0ms) begin transaction
237809
+  (0.1ms) rollback transaction
237810
+  (0.0ms) begin transaction
237811
+  (0.0ms) rollback transaction
237812
+  (0.0ms) begin transaction
237813
+  (0.0ms) rollback transaction
237814
+  (0.0ms) begin transaction
237815
+  (0.1ms) rollback transaction
237816
+  (0.0ms) begin transaction
237817
+  (0.1ms) rollback transaction
237818
+  (0.0ms) begin transaction
237819
+  (0.0ms) rollback transaction
237820
+  (0.0ms) begin transaction
237821
+  (0.0ms) rollback transaction
237822
+  (0.0ms) begin transaction
237823
+  (0.0ms) rollback transaction
237824
+  (0.0ms) begin transaction
237825
+  (0.0ms) rollback transaction
237826
+  (0.0ms) begin transaction
237827
+  (0.0ms) rollback transaction
237828
+  (0.0ms) begin transaction
237829
+  (0.0ms) SAVEPOINT active_record_1
237830
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.234816"], ["updated_at", "2019-02-01 21:42:33.234816"]]
237831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237832
+  (0.0ms) SAVEPOINT active_record_1
237833
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.238378"], ["updated_at", "2019-02-01 21:42:33.238378"]]
237834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237835
+  (0.1ms) SAVEPOINT active_record_1
237836
+ Assignment Create (0.4ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2018-12-01 21:42:33.241836"], ["person_id", 1], ["organization_id", 1], ["created_at", "2019-02-01 21:42:33.242711"], ["updated_at", "2019-02-01 21:42:33.242711"]]
237837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237838
+  (0.6ms) rollback transaction
237839
+  (0.0ms) begin transaction
237840
+  (0.0ms) SAVEPOINT active_record_1
237841
+ Namespaced::Person Create (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", "2019-02-01 21:42:33.248146"], ["updated_at", "2019-02-01 21:42:33.248146"]]
237842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237843
+  (0.0ms) SAVEPOINT active_record_1
237844
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.250794"], ["updated_at", "2019-02-01 21:42:33.250794"]]
237845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237846
+  (0.1ms) SAVEPOINT active_record_1
237847
+ Assignment Create (0.3ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2018-12-01 21:42:33.253280"], ["person_id", 1], ["organization_id", 1], ["created_at", "2019-02-01 21:42:33.253874"], ["updated_at", "2019-02-01 21:42:33.253874"]]
237848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237849
+  (0.1ms) SAVEPOINT active_record_1
237850
+ Assignment Update (0.2ms) UPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ? [["role", "boss"], ["updated_at", "2019-02-01 21:42:33.257416"], ["id", 1]]
237851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237852
+  (0.5ms) rollback transaction
237853
+  (0.1ms) begin transaction
237854
+  (0.1ms) SAVEPOINT active_record_1
237855
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.262565"], ["updated_at", "2019-02-01 21:42:33.262565"]]
237856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237857
+  (0.0ms) SAVEPOINT active_record_1
237858
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.265308"], ["updated_at", "2019-02-01 21:42:33.265308"]]
237859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237860
+  (0.0ms) SAVEPOINT active_record_1
237861
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "abc"], ["role", "leader"], ["hired_at", "2018-12-01 21:42:33.266890"], ["person_id", 1], ["organization_id", 1], ["created_at", "2019-02-01 21:42:33.267315"], ["updated_at", "2019-02-01 21:42:33.267315"]]
237862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237863
+  (0.0ms) SAVEPOINT active_record_1
237864
+ Assignment Destroy (0.1ms) DELETE FROM "assignments" WHERE "assignments"."id" = ? [["id", 1]]
237865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237866
+  (0.5ms) rollback transaction
237867
+  (0.0ms) begin transaction
237868
+  (0.0ms) SAVEPOINT active_record_1
237869
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.273800"], ["updated_at", "2019-02-01 21:42:33.273800"]]
237870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237871
+  (0.4ms) rollback transaction
237872
+  (0.0ms) begin transaction
237873
+  (0.1ms) SAVEPOINT active_record_1
237874
+ Area Create (0.3ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2019-02-01 21:42:33.284104"], ["updated_at", "2019-02-01 21:42:33.284104"]]
237875
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["area_id", 1], ["created_at", "2019-02-01 21:42:33.285023"], ["updated_at", "2019-02-01 21:42:33.285023"]]
237876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237877
+  (0.4ms) rollback transaction
237878
+  (0.0ms) begin transaction
237879
+  (0.0ms) SAVEPOINT active_record_1
237880
+ Organization Create (0.3ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.290178"], ["updated_at", "2019-02-01 21:42:33.290178"]]
237881
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["parent_id", 1], ["created_at", "2019-02-01 21:42:33.291103"], ["updated_at", "2019-02-01 21:42:33.291103"]]
237882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237883
+  (0.4ms) rollback transaction
237884
+  (0.0ms) begin transaction
237885
+  (0.0ms) SAVEPOINT active_record_1
237886
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.295597"], ["updated_at", "2019-02-01 21:42:33.295597"]]
237887
+ Area Create (0.1ms) INSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2019-02-01 21:42:33.296873"], ["updated_at", "2019-02-01 21:42:33.296873"]]
237888
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["parent_id", 1], ["area_id", 1], ["created_at", "2019-02-01 21:42:33.297553"], ["updated_at", "2019-02-01 21:42:33.297553"]]
237889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237890
+  (0.5ms) rollback transaction
237891
+  (0.0ms) begin transaction
237892
+  (0.1ms) SAVEPOINT active_record_1
237893
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.302983"], ["updated_at", "2019-02-01 21:42:33.302983"]]
237894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237895
+  (0.0ms) SAVEPOINT active_record_1
237896
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
237897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237898
+  (0.5ms) rollback transaction
237899
+  (0.0ms) begin transaction
237900
+  (0.0ms) SAVEPOINT active_record_1
237901
+ Area Create (0.3ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2019-02-01 21:42:33.308669"], ["updated_at", "2019-02-01 21:42:33.308669"]]
237902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237903
+  (0.0ms) SAVEPOINT active_record_1
237904
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2019-02-01 21:42:33.311133"], ["updated_at", "2019-02-01 21:42:33.311133"]]
237905
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237906
+  (0.0ms) SAVEPOINT active_record_1
237907
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 1]]
237908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237909
+  (0.5ms) rollback transaction
237910
+  (0.0ms) begin transaction
237911
+  (0.0ms) SAVEPOINT active_record_1
237912
+ Organization Create (0.3ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.316737"], ["updated_at", "2019-02-01 21:42:33.316737"]]
237913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237914
+  (0.0ms) SAVEPOINT active_record_1
237915
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["parent_id", 1], ["created_at", "2019-02-01 21:42:33.318976"], ["updated_at", "2019-02-01 21:42:33.318976"]]
237916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237917
+  (0.0ms) SAVEPOINT active_record_1
237918
+ Organization Destroy (0.1ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
237919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237920
+  (0.5ms) rollback transaction
237921
+  (0.0ms) begin transaction
237922
+  (0.0ms) SAVEPOINT active_record_1
237923
+ Area Create (0.3ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2019-02-01 21:42:33.323467"], ["updated_at", "2019-02-01 21:42:33.323467"]]
237924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237925
+  (0.0ms) SAVEPOINT active_record_1
237926
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["created_at", "2019-02-01 21:42:33.325393"], ["updated_at", "2019-02-01 21:42:33.325393"]]
237927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237928
+  (0.0ms) SAVEPOINT active_record_1
237929
+ Organization Create (0.1ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2019-02-01"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2019-02-01 21:42:33.327370"], ["updated_at", "2019-02-01 21:42:33.327370"]]
237930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237931
+  (0.0ms) SAVEPOINT active_record_1
237932
+ Organization Destroy (0.0ms) DELETE FROM "organizations" WHERE "organizations"."id" = ? [["id", 2]]
237933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237934
+  (0.4ms) rollback transaction
237935
+  (0.0ms) begin transaction
237936
+  (0.0ms) SAVEPOINT active_record_1
237937
+ Namespaced::Person Create (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", "2019-02-01 21:42:33.332562"], ["updated_at", "2019-02-01 21:42:33.332562"]]
237938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237939
+  (0.5ms) rollback transaction
237940
+  (0.0ms) begin transaction
237941
+  (0.1ms) SAVEPOINT active_record_1
237942
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2019-02-01 21:42:33.342008"], ["updated_at", "2019-02-01 21:42:33.342008"]]
237943
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2019-02-01 21:42:33.343090"], ["updated_at", "2019-02-01 21:42:33.343090"]]
237944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237945
+  (0.4ms) rollback transaction
237946
+  (0.0ms) begin transaction
237947
+  (0.0ms) SAVEPOINT active_record_1
237948
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2019-02-01 21:42:33.348879"], ["updated_at", "2019-02-01 21:42:33.348879"]]
237949
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2019-02-01 21:42:33.349683"], ["updated_at", "2019-02-01 21:42:33.349683"]]
237950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237951
+  (0.5ms) rollback transaction
237952
+  (0.0ms) begin transaction
237953
+  (0.1ms) SAVEPOINT active_record_1
237954
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2019-02-01 21:42:33.355834"], ["updated_at", "2019-02-01 21:42:33.355834"]]
237955
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2019-02-01 21:42:33.356688"], ["updated_at", "2019-02-01 21:42:33.356688"]]
237956
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237957
+  (0.5ms) rollback transaction
237958
+  (0.0ms) begin transaction
237959
+  (0.1ms) SAVEPOINT active_record_1
237960
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.362849"], ["updated_at", "2019-02-01 21:42:33.362849"]]
237961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237962
+  (0.0ms) SAVEPOINT active_record_1
237963
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2019-02-01 21:42:33.365531"], ["id", 1]]
237964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237965
+  (0.4ms) rollback transaction
237966
+  (0.0ms) begin transaction
237967
+  (0.1ms) SAVEPOINT active_record_1
237968
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2019-02-01 21:42:33.369091"], ["updated_at", "2019-02-01 21:42:33.369091"]]
237969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237970
+  (0.0ms) SAVEPOINT active_record_1
237971
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2019-02-01 21:42:33.371107"], ["updated_at", "2019-02-01 21:42:33.371107"]]
237972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237973
+  (0.0ms) SAVEPOINT active_record_1
237974
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["first_name", "Anthony"], ["updated_at", "2019-02-01 21:42:33.374585"], ["id", 1]]
237975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237976
+  (0.4ms) rollback transaction
237977
+  (0.0ms) begin transaction
237978
+  (0.1ms) SAVEPOINT active_record_1
237979
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Sokovia"], ["created_at", "2019-02-01 21:42:33.379169"], ["updated_at", "2019-02-01 21:42:33.379169"]]
237980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237981
+  (0.0ms) SAVEPOINT active_record_1
237982
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2019-02-01 21:42:33.381218"], ["updated_at", "2019-02-01 21:42:33.381218"]]
237983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237984
+  (0.0ms) SAVEPOINT active_record_1
237985
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_residence_id", nil], ["updated_at", "2019-02-01 21:42:33.384423"], ["id", 1]]
237986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237987
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", nil], ["id", 1]]
237988
+  (0.5ms) rollback transaction
237989
+  (0.1ms) begin transaction
237990
+  (0.0ms) SAVEPOINT active_record_1
237991
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2019-02-01 21:42:33.397897"], ["updated_at", "2019-02-01 21:42:33.397897"]]
237992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237993
+  (0.0ms) SAVEPOINT active_record_1
237994
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Peru"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9963c"], ["created_at", "2019-02-01 21:42:33.399732"], ["updated_at", "2019-02-01 21:42:33.399732"]]
237995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237996
+  (0.0ms) SAVEPOINT active_record_1
237997
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2019-02-01 21:42:33.401679"], ["updated_at", "2019-02-01 21:42:33.401679"]]
237998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
237999
+  (0.0ms) SAVEPOINT active_record_1
238000
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ? [["country_of_service_id", 2], ["updated_at", "2019-02-01 21:42:33.406680"], ["id", 1]]
238001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238002
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", nil], ["id", 1]]
238003
+  (0.5ms) rollback transaction
238004
+  (0.0ms) begin transaction
238005
+  (0.0ms) SAVEPOINT active_record_1
238006
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.430179"], ["updated_at", "2019-02-01 21:42:33.430179"]]
238007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238008
+  (0.1ms) SAVEPOINT active_record_1
238009
+ Address Load (0.2ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
238010
+ Namespaced::Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
238011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238012
+  (0.5ms) rollback transaction
238013
+  (0.0ms) begin transaction
238014
+  (0.1ms) SAVEPOINT active_record_1
238015
+ Country Create (0.4ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2019-02-01 21:42:33.449400"], ["updated_at", "2019-02-01 21:42:33.449400"]]
238016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238017
+  (0.0ms) SAVEPOINT active_record_1
238018
+ Country Create (0.1ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d99639"], ["created_at", "2019-02-01 21:42:33.451347"], ["updated_at", "2019-02-01 21:42:33.451347"]]
238019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238020
+  (0.0ms) SAVEPOINT active_record_1
238021
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 2], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2019-02-01 21:42:33.453352"], ["updated_at", "2019-02-01 21:42:33.453352"]]
238022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238023
+  (0.0ms) SAVEPOINT active_record_1
238024
+ Address Load (0.0ms) SELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ? [["person_id", 1]]
238025
+ Namespaced::Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
238026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238027
+  (0.4ms) rollback transaction
238028
+  (0.0ms) begin transaction
238029
+  (0.0ms) SAVEPOINT active_record_1
238030
+ Namespaced::Person Create (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", "2019-02-01 21:42:33.461870"], ["updated_at", "2019-02-01 21:42:33.461870"]]
238031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238032
+  (0.5ms) rollback transaction
238033
+  (0.0ms) begin transaction
238034
+  (0.0ms) SAVEPOINT active_record_1
238035
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.465389"], ["updated_at", "2019-02-01 21:42:33.465389"]]
238036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238037
+  (0.5ms) rollback transaction
238038
+  (0.1ms) begin transaction
238039
+  (0.0ms) SAVEPOINT active_record_1
238040
+ Namespaced::Person Create (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", "2019-02-01 21:42:33.470559"], ["updated_at", "2019-02-01 21:42:33.470559"]]
238041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238042
+  (0.4ms) rollback transaction
238043
+  (0.0ms) begin transaction
238044
+  (0.1ms) rollback transaction
238045
+  (0.0ms) begin transaction
238046
+  (0.0ms) SAVEPOINT active_record_1
238047
+ Foo Create (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.492254"], ["updated_at", "2019-02-01 21:42:33.492254"]]
238048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238049
+  (0.5ms) rollback transaction
238050
+  (0.0ms) begin transaction
238051
+  (0.1ms) SAVEPOINT active_record_1
238052
+ Foo Create (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.500825"], ["updated_at", "2019-02-01 21:42:33.500825"]]
238053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238054
+  (0.4ms) rollback transaction
238055
+  (0.0ms) begin transaction
238056
+  (0.1ms) SAVEPOINT active_record_1
238057
+ Foo Create (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.509615"], ["updated_at", "2019-02-01 21:42:33.509615"]]
238058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238059
+  (0.4ms) rollback transaction
238060
+  (0.0ms) begin transaction
238061
+  (0.1ms) SAVEPOINT active_record_1
238062
+ Foo Create (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.517607"], ["updated_at", "2019-02-01 21:42:33.517607"]]
238063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238064
+  (0.4ms) rollback transaction
238065
+  (0.1ms) begin transaction
238066
+  (0.1ms) SAVEPOINT active_record_1
238067
+ Foo Create (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.525488"], ["updated_at", "2019-02-01 21:42:33.525488"]]
238068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238069
+  (0.5ms) rollback transaction
238070
+  (0.1ms) begin transaction
238071
+  (0.1ms) SAVEPOINT active_record_1
238072
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.534724"], ["updated_at", "2019-02-01 21:42:33.534724"]]
238073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238074
+  (0.4ms) rollback transaction
238075
+  (0.0ms) begin transaction
238076
+  (0.1ms) SAVEPOINT active_record_1
238077
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.544841"], ["updated_at", "2019-02-01 21:42:33.544841"]]
238078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238079
+  (0.5ms) rollback transaction
238080
+  (0.0ms) begin transaction
238081
+  (0.1ms) SAVEPOINT active_record_1
238082
+ Foo Create (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-02-01 21:42:33.554904"], ["updated_at", "2019-02-01 21:42:33.554904"]]
238083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238084
+  (0.4ms) rollback transaction
238085
+  (0.0ms) begin transaction
238086
+  (0.0ms) rollback transaction
238087
+  (0.0ms) begin transaction
238088
+  (0.1ms) rollback transaction
238089
+  (0.1ms) begin transaction
238090
+  (0.1ms) SAVEPOINT active_record_1
238091
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.587011"], ["updated_at", "2019-02-01 21:42:33.587011"]]
238092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238093
+  (0.5ms) rollback transaction
238094
+  (0.0ms) begin transaction
238095
+  (0.0ms) SAVEPOINT active_record_1
238096
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.592648"], ["updated_at", "2019-02-01 21:42:33.592648"]]
238097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238098
+  (0.5ms) rollback transaction
238099
+  (0.1ms) begin transaction
238100
+  (0.0ms) SAVEPOINT active_record_1
238101
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.598449"], ["updated_at", "2019-02-01 21:42:33.598449"]]
238102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238103
+  (0.4ms) rollback transaction
238104
+  (0.1ms) begin transaction
238105
+  (0.1ms) SAVEPOINT active_record_1
238106
+ Namespaced::Person Create (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", "2019-02-01 21:42:33.604402"], ["updated_at", "2019-02-01 21:42:33.604402"]]
238107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238108
+  (0.5ms) rollback transaction
238109
+  (0.0ms) begin transaction
238110
+  (0.0ms) SAVEPOINT active_record_1
238111
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.609798"], ["updated_at", "2019-02-01 21:42:33.609798"]]
238112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238113
+  (0.4ms) rollback transaction
238114
+  (0.0ms) begin transaction
238115
+  (0.0ms) SAVEPOINT active_record_1
238116
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2019-02-01 21:42:33.629373"], ["updated_at", "2019-02-01 21:42:33.629373"]]
238117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238118
+ Namespaced::Person Update (0.2ms) UPDATE "people" SET "global_registry_mdm_id" = ? WHERE "people"."id" = ? [["global_registry_mdm_id", "c81340b2-7e57-4978-b6b9-396f21bb0bb2"], ["id", 1]]
238119
+  (0.5ms) rollback transaction
238120
+  (0.0ms) begin transaction
238121
+  (0.0ms) rollback transaction
238122
+  (0.0ms) begin transaction
238123
+  (0.0ms) SAVEPOINT active_record_1
238124
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238126
+  (0.4ms) rollback transaction
238127
+  (0.0ms) begin transaction
238128
+  (0.0ms) SAVEPOINT active_record_1
238129
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238131
+  (0.4ms) rollback transaction
238132
+  (0.0ms) begin transaction
238133
+  (0.0ms) SAVEPOINT active_record_1
238134
+ Namespaced::Person Create (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", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238136
+  (0.5ms) rollback transaction
238137
+  (0.4ms) begin transaction
238138
+  (0.1ms) SAVEPOINT active_record_1
238139
+ Organization Create (0.6ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238141
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 1]]
238142
+  (1.9ms) rollback transaction
238143
+  (0.0ms) begin transaction
238144
+  (0.1ms) SAVEPOINT active_record_1
238145
+ Organization Create (0.4ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238147
+  (0.0ms) SAVEPOINT active_record_1
238148
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238150
+  (2.5ms) rollback transaction
238151
+  (0.1ms) begin transaction
238152
+  (0.1ms) SAVEPOINT active_record_1
238153
+ Organization Create (0.4ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "cd5da38a-c336-46a7-b818-dcdd51c4acde"], ["name", "Parent"], ["description", "Parent Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238155
+  (0.0ms) SAVEPOINT active_record_1
238156
+ Organization Create (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["parent_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238158
+ Organization Update (0.1ms) UPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ? [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 2]]
238159
+  (0.5ms) rollback transaction
238160
+  (0.0ms) begin transaction
238161
+  (0.1ms) SAVEPOINT active_record_1
238162
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238164
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
238165
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238166
+  (0.4ms) rollback transaction
238167
+  (0.0ms) begin transaction
238168
+  (0.0ms) SAVEPOINT active_record_1
238169
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238171
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
238172
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238173
+  (0.5ms) rollback transaction
238174
+  (0.0ms) begin transaction
238175
+  (0.1ms) SAVEPOINT active_record_1
238176
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238178
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
238179
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238180
+  (0.5ms) rollback transaction
238181
+  (0.0ms) begin transaction
238182
+  (0.0ms) SAVEPOINT active_record_1
238183
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238184
+  (0.2ms) RELEASE SAVEPOINT active_record_1
238185
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
238186
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238187
+  (0.4ms) rollback transaction
238188
+  (0.0ms) begin transaction
238189
+  (0.0ms) SAVEPOINT active_record_1
238190
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238192
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238193
+  (0.4ms) rollback transaction
238194
+  (0.0ms) begin transaction
238195
+  (0.0ms) SAVEPOINT active_record_1
238196
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238197
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238198
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ? [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
238199
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ? [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
238200
+  (2.1ms) rollback transaction
238201
+  (0.0ms) begin transaction
238202
+  (0.1ms) SAVEPOINT active_record_1
238203
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238205
+  (0.4ms) rollback transaction
238206
+  (0.0ms) begin transaction
238207
+  (0.1ms) SAVEPOINT active_record_1
238208
+ Address Create (0.4ms) INSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238210
+  (0.4ms) rollback transaction
238211
+  (0.0ms) begin transaction
238212
+  (0.0ms) SAVEPOINT active_record_1
238213
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238215
+  (0.0ms) SAVEPOINT active_record_1
238216
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238218
+  (2.1ms) rollback transaction
238219
+  (0.1ms) begin transaction
238220
+  (0.0ms) SAVEPOINT active_record_1
238221
+ Namespaced::Person Create (0.3ms) 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"]]
238222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238223
+  (0.1ms) SAVEPOINT active_record_1
238224
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238226
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
238227
+  (2.3ms) rollback transaction
238228
+  (0.1ms) begin transaction
238229
+  (0.1ms) SAVEPOINT active_record_1
238230
+ Namespaced::Person Create (0.3ms) 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"]]
238231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238232
+  (0.0ms) SAVEPOINT active_record_1
238233
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238235
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
238236
+  (0.5ms) rollback transaction
238237
+  (0.0ms) begin transaction
238238
+  (0.0ms) SAVEPOINT active_record_1
238239
+ Namespaced::Person Create (0.3ms) 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"]]
238240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238241
+  (0.1ms) SAVEPOINT active_record_1
238242
+ Address Create (0.1ms) INSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238244
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
238245
+  (0.5ms) rollback transaction
238246
+  (0.0ms) begin transaction
238247
+  (0.0ms) SAVEPOINT active_record_1
238248
+ Namespaced::Person Create (0.3ms) 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"]]
238249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238250
+  (0.0ms) SAVEPOINT active_record_1
238251
+ Address Create (0.1ms) INSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238253
+ Address Update (0.1ms) UPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ? [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
238254
+  (0.5ms) rollback transaction
238255
+  (0.1ms) begin transaction
238256
+  (0.1ms) SAVEPOINT active_record_1
238257
+ Community Create (0.3ms) INSERT INTO "communities" ("name", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Community"], ["infobase_id", 234], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238259
+ Community Update (0.1ms) UPDATE "communities" SET "global_registry_id" = ? WHERE "communities"."id" = ? [["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["id", 1]]
238260
+  (0.4ms) rollback transaction
238261
+  (0.0ms) begin transaction
238262
+  (0.0ms) SAVEPOINT active_record_1
238263
+ Assignment Create (0.4ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238265
+  (0.5ms) rollback transaction
238266
+  (0.0ms) begin transaction
238267
+  (0.1ms) SAVEPOINT active_record_1
238268
+ Assignment Create (0.4ms) INSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238270
+  (0.5ms) rollback transaction
238271
+  (0.0ms) begin transaction
238272
+  (0.1ms) SAVEPOINT active_record_1
238273
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238275
+  (0.0ms) SAVEPOINT active_record_1
238276
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238278
+  (0.0ms) SAVEPOINT active_record_1
238279
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238281
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
238282
+  (0.5ms) rollback transaction
238283
+  (0.0ms) begin transaction
238284
+  (0.1ms) SAVEPOINT active_record_1
238285
+ Namespaced::Person Create (0.3ms) 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"]]
238286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238287
+  (0.0ms) SAVEPOINT active_record_1
238288
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238290
+  (0.0ms) SAVEPOINT active_record_1
238291
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238293
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
238294
+  (0.5ms) rollback transaction
238295
+  (0.0ms) begin transaction
238296
+  (0.0ms) SAVEPOINT active_record_1
238297
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238299
+  (0.1ms) SAVEPOINT active_record_1
238300
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238302
+  (0.0ms) SAVEPOINT active_record_1
238303
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238305
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
238306
+  (0.6ms) rollback transaction
238307
+  (0.0ms) begin transaction
238308
+  (0.1ms) SAVEPOINT active_record_1
238309
+ Namespaced::Person Create (0.3ms) 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"]]
238310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238311
+  (0.0ms) SAVEPOINT active_record_1
238312
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238314
+  (0.0ms) SAVEPOINT active_record_1
238315
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238317
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
238318
+  (0.5ms) rollback transaction
238319
+  (0.0ms) begin transaction
238320
+  (0.1ms) SAVEPOINT active_record_1
238321
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238323
+  (0.1ms) SAVEPOINT active_record_1
238324
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238326
+  (0.1ms) SAVEPOINT active_record_1
238327
+ Assignment Create (0.3ms) 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"]]
238328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238329
+ Assignment Update (0.1ms) UPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ? [["global_registry_id", nil], ["id", 1]]
238330
+  (0.5ms) rollback transaction
238331
+  (0.0ms) begin transaction
238332
+  (0.1ms) SAVEPOINT active_record_1
238333
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238334
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238335
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238337
+  (2.5ms) rollback transaction
238338
+  (0.0ms) begin transaction
238339
+  (0.1ms) SAVEPOINT active_record_1
238340
+ Namespaced::Person Create (0.5ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238341
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238342
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238343
+  (0.2ms) RELEASE SAVEPOINT active_record_1
238344
+  (0.5ms) rollback transaction
238345
+  (0.1ms) begin transaction
238346
+  (0.1ms) SAVEPOINT active_record_1
238347
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238348
+ Organization Create (0.2ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238349
+ Assignment Create (0.3ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238350
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238351
+  (0.6ms) rollback transaction
238352
+  (0.1ms) begin transaction
238353
+  (0.1ms) SAVEPOINT active_record_1
238354
+ Namespaced::Person Create (0.4ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238356
+  (0.0ms) SAVEPOINT active_record_1
238357
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238359
+  (0.1ms) SAVEPOINT active_record_1
238360
+ Assignment Create (0.3ms) INSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238362
+ Assignment Update (0.1ms) UPDATE "assignments" SET "assigned_by_gr_rel_id" = ? WHERE "assignments"."id" = ? [["assigned_by_gr_rel_id", "0fd8b8b8-76c9-11e7-b15c-129bd0521531"], ["id", 1]]
238363
+  (0.6ms) rollback transaction
238364
+  (0.0ms) begin transaction
238365
+  (0.0ms) SAVEPOINT active_record_1
238366
+ Namespaced::Person Create (0.3ms) 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"]]
238367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238368
+  (0.0ms) SAVEPOINT active_record_1
238369
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238371
+  (0.0ms) SAVEPOINT active_record_1
238372
+ Assignment Create (0.2ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238374
+  (0.5ms) rollback transaction
238375
+  (0.1ms) begin transaction
238376
+  (0.1ms) SAVEPOINT active_record_1
238377
+ Area Create (0.3ms) INSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["global_registry_id", "0fdb70c5-f51e-4628-a1fe-caa37fae53cd"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238379
+  (0.0ms) SAVEPOINT active_record_1
238380
+ Organization Create (0.2ms) INSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["area_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238382
+ Organization Update (0.1ms) UPDATE "organizations" SET "global_registry_area_id" = ? WHERE "organizations"."id" = ? [["global_registry_area_id", "c99d7d7e-8b14-4fe6-9c11-e5359ee03637"], ["id", 1]]
238383
+  (0.5ms) rollback transaction
238384
+  (0.0ms) begin transaction
238385
+  (0.1ms) SAVEPOINT active_record_1
238386
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "0f9089a3-2b93-4de8-9b81-92be0261f325"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238388
+  (0.0ms) SAVEPOINT active_record_1
238389
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238391
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ? [["country_of_service_gr_id", "420d2fd1-7a73-41ed-9d8f-5dc79b00a688"], ["id", 1]]
238392
+  (0.5ms) rollback transaction
238393
+  (0.0ms) begin transaction
238394
+  (0.0ms) SAVEPOINT active_record_1
238395
+ Namespaced::Person Create (0.3ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238397
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ? [["id", 12345], ["LIMIT", 1]]
238398
+  (0.4ms) rollback transaction
238399
+  (0.1ms) begin transaction
238400
+  (0.1ms) SAVEPOINT active_record_1
238401
+ Country Create (0.3ms) INSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Sokovia"], ["global_registry_id", "7cdaf399-d449-4008-8c6b-3c64a2b2730c"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238403
+  (0.0ms) SAVEPOINT active_record_1
238404
+ Namespaced::Person Create (0.2ms) INSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238406
+ Namespaced::Person Update (0.1ms) UPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ? [["country_of_residence_gr_id", "a4c030ce-13f2-44f5-8131-4003eb21c0ae"], ["id", 1]]
238407
+  (0.5ms) rollback transaction
238408
+  (0.0ms) begin transaction
238409
+  (0.0ms) SAVEPOINT active_record_1
238410
+ Community Create (0.3ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238412
+  (0.4ms) rollback transaction
238413
+  (0.0ms) begin transaction
238414
+  (0.0ms) SAVEPOINT active_record_1
238415
+ Community Create (0.3ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "infobase_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238417
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", nil], ["id", 1]]
238418
+  (0.5ms) rollback transaction
238419
+  (0.0ms) begin transaction
238420
+  (0.1ms) SAVEPOINT active_record_1
238421
+ Community Create (0.3ms) INSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
238422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238423
+ Community Update (0.1ms) UPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ? [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
238424
+  (0.4ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global-registry-bindings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Zoetewey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-01 00:00:00.000000000 Z
11
+ date: 2019-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -240,16 +240,16 @@ dependencies:
240
240
  name: sqlite3
241
241
  requirement: !ruby/object:Gem::Requirement
242
242
  requirements:
243
- - - ">="
243
+ - - "~>"
244
244
  - !ruby/object:Gem::Version
245
- version: '0'
245
+ version: 1.3.6
246
246
  type: :development
247
247
  prerelease: false
248
248
  version_requirements: !ruby/object:Gem::Requirement
249
249
  requirements:
250
- - - ">="
250
+ - - "~>"
251
251
  - !ruby/object:Gem::Version
252
- version: '0'
252
+ version: 1.3.6
253
253
  - !ruby/object:Gem::Dependency
254
254
  name: mock_redis
255
255
  requirement: !ruby/object:Gem::Requirement