global-registry-bindings 0.0.5 → 0.0.6

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: 82600783a694e1c6021fb32852926d5314cffbbf
4
- data.tar.gz: 939b91cb366f1a80af69966e5505302d58ab28b3
3
+ metadata.gz: bc5f397574e48c4f792014e06ab828b3ff015663
4
+ data.tar.gz: 6907779fa74f374191b706e28ffd9253dfd0ea23
5
5
  SHA512:
6
- metadata.gz: 9f037827d70d132e20511f7ded2d3c97702773804d2f6f6be52f02d8480f8764b118f4a13ef79e362949aa6f32d09a81ffef4119db13f91769bc3758be4db990
7
- data.tar.gz: 2fc0137c897a3dd238eda484cddf3e6e51aa3b27fa866455dba914ba27ba16159fba7c0d82742900b468823af49f2987b9ab5c6c7a5804015a9767df19a7d53a
6
+ metadata.gz: bedf745fc6e7c872315b457ca1edd8f74a98bdea2df0e1e086d9137b11346c59b753fa49ccde821fed2cfc1aab2c795f9cecda6f6e2ea964e504e08d322659c7
7
+ data.tar.gz: c8422e9859e07b0105f4b16294bd28207097b810423962c2318024ba3aadcc590ef3500948bc4cbe04c8a4951a86dbcb65f433def74f837739785f3b9966af44
data/README.md CHANGED
@@ -58,10 +58,15 @@ option is nil or empty. (default: `nil`)
58
58
  (default: `[:create, :update, :delete]`)
59
59
  * `:parent_association`: Name of the Active Record parent association. Must be defined before calling
60
60
  global_registry_bindings in order to determine foreign_key field. (default: `nil`)
61
+ * `:parent_association_class`: Class name of the parent model. Required if `:parent_association` can not be used
62
+ to determine the parent class. This can happen if parent is defined by another gem, like `has_ancestry`.
63
+ (default: `nil`)
61
64
  * `:related_association`: Name of the Active Record related association. Setting this option changes the
62
65
  global registry binding from entity to relationship. Active Record association must be defined before calling
63
66
  global_registry_bindings in order to determine the foreign key. `:parent_relationship_name` and
64
67
  `:related_relationship_name` must be set for relationship binding to work. (default: `nil`)
68
+ * `:related_association_class`: Class name of the related model. Required if `:related_association` can not be
69
+ used to determine the related class. (default: `nil`)
65
70
  * `:parent_relationship_name`: Name of parent relationship role. (default: `nil`)
66
71
  * `:related_relationship_name`: Name of the related relationship role. (default: `nil`)
67
72
  * `:exclude_fields`: Model fields to exclude when pushing to Global Registry. Will additionally include `:mdm_id_column`
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'active_support/lazy_load_hooks'
4
4
  require 'global_registry_bindings/global_registry_bindings'
5
+ require 'global_registry_bindings/railtie' if defined? ::Rails::Railtie
5
6
 
6
7
  ActiveSupport.on_load(:active_record) do
7
8
  ActiveRecord::Base.send :extend, GlobalRegistry::Bindings
@@ -18,8 +18,10 @@ module GlobalRegistry #:nodoc:
18
18
  .perform_async(self.class, id)
19
19
  end
20
20
 
21
- def pull_mdm_id_from_global_registry
21
+ def pull_mdm_id_from_global_registry # rubocop:disable Metrics/AbcSize
22
22
  unless global_registry.id_value?
23
+ # Record missing Global Registry ID, enqueue it to be pushed.
24
+ push_entity_to_global_registry_async
23
25
  raise GlobalRegistry::Bindings::RecordMissingGlobalRegistryId,
24
26
  "#{self.class.name} #{id} has no #{global_registry.id_column}; will retry"
25
27
  end
@@ -27,10 +27,15 @@ module GlobalRegistry #:nodoc:
27
27
  # (default: `[:create, :update, :delete]`)
28
28
  # * `:parent_association`: Name of the Active Record parent association. Must be defined before calling
29
29
  # global_registry_bindings in order to determine foreign_key field. (default: `nil`)
30
+ # * `:parent_association_class`: Class name of the parent model. Required if `:parent_association` can not be used
31
+ # to determine the parent class. This can happen if parent is defined by another gem, like `has_ancestry`.
32
+ # (default: `nil`)
30
33
  # * `:related_association`: Name of the Active Record related association. Setting this option changes the
31
34
  # global registry binding from entity to relationship. Active Record association must be defined before calling
32
35
  # global_registry_bindings in order to determine the foreign key. `:parent_relationship_name` and
33
36
  # `:related_relationship_name` must be set for relationship binding to work. (default: `nil`)
37
+ # * `:related_association_class`: Class name of the related model. Required if `:related_association` can not be
38
+ # used to determine the related class. (default: `nil`)
34
39
  # * `:parent_relationship_name`: Name of parent relationship role. (default: `nil`)
35
40
  # * `:related_relationship_name`: Name of the related relationship role. (default: `nil`)
36
41
  # * `:exclude_fields`: Model fields to exclude when pushing to Global Registry. Will additionally include
@@ -9,7 +9,8 @@ module GlobalRegistry #:nodoc:
9
9
  extend ActiveSupport::Concern
10
10
 
11
11
  included do
12
- @_global_registry_bindings_class_options ||= GlobalRegistry::Bindings::Options::ClassOptions.new(self)
12
+ class_attribute :_global_registry_bindings_class_options
13
+ self._global_registry_bindings_class_options ||= GlobalRegistry::Bindings::Options::ClassOptions.new(self)
13
14
  end
14
15
 
15
16
  def global_registry
@@ -18,7 +19,7 @@ module GlobalRegistry #:nodoc:
18
19
 
19
20
  module ClassMethods
20
21
  def global_registry
21
- @_global_registry_bindings_class_options
22
+ _global_registry_bindings_class_options
22
23
  end
23
24
  end
24
25
  end
@@ -35,7 +36,9 @@ module GlobalRegistry #:nodoc:
35
36
  type: @model_class.name.demodulize.underscore.to_sym,
36
37
  push_on: %i[create update delete],
37
38
  parent_association: nil,
39
+ parent_association_class: nil,
38
40
  related_association: nil,
41
+ related_association_class: nil,
39
42
  parent_relationship_name: nil,
40
43
  related_relationship_name: nil,
41
44
  exclude_fields: %i[id created_at updated_at],
@@ -12,7 +12,9 @@ module GlobalRegistry #:nodoc:
12
12
  :type,
13
13
  :push_on,
14
14
  :parent_association,
15
+ :parent_association_class,
15
16
  :related_association,
17
+ :related_association_class,
16
18
  :parent_relationship_name,
17
19
  :related_relationship_name,
18
20
  :exclude_fields,
@@ -25,6 +27,7 @@ module GlobalRegistry #:nodoc:
25
27
 
26
28
  def parent_class
27
29
  return if parent_association.blank?
30
+ return parent_association_class if parent_association_class.present?
28
31
  @model_class.reflect_on_all_associations
29
32
  .detect { |a| a.name == parent_association.to_sym }
30
33
  &.klass
@@ -32,6 +35,7 @@ module GlobalRegistry #:nodoc:
32
35
 
33
36
  def related_class
34
37
  return if related_association.blank?
38
+ return related_association_class if related_association_class.present?
35
39
  @model_class.reflect_on_all_associations
36
40
  .detect { |a| a.name == related_association.to_sym }
37
41
  &.klass
@@ -10,7 +10,9 @@ module GlobalRegistry #:nodoc:
10
10
  :type,
11
11
  :push_on,
12
12
  :parent_association,
13
+ :parent_association_class,
13
14
  :related_association,
15
+ :related_association_class,
14
16
  :exclude_fields,
15
17
  :extra_fields,
16
18
  :parent_class,
@@ -3,7 +3,8 @@
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
5
  class Railtie < Rails::Railtie
6
- initializer 'global_registry_bindings_railtie.configure_rollbar' do
6
+ config.after_initialize do
7
+ # :nocov:
7
8
  if Module.const_defined? :Rollbar
8
9
  ::Rollbar.configure do |config|
9
10
  config.exception_level_filters.merge!(
@@ -14,6 +15,7 @@ module GlobalRegistry #:nodoc:
14
15
  )
15
16
  end
16
17
  end
18
+ # :nocov:
17
19
  end
18
20
  end
19
21
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GlobalRegistry #:nodoc:
4
4
  module Bindings #:nodoc:
5
- VERSION = '0.0.5'
5
+ VERSION = '0.0.6'
6
6
  end
7
7
  end
@@ -11,6 +11,14 @@ FactoryGirl.define do
11
11
  global_registry_mdm_id nil
12
12
  end
13
13
 
14
+ factory :user_edited, class: Namespaced::Person::UserEdited do
15
+ first_name 'Bruce'
16
+ last_name 'Banner'
17
+ guid 'e4b665fe-df98-46b4-adb8-e878669dcdd4'
18
+ global_registry_id nil
19
+ global_registry_mdm_id nil
20
+ end
21
+
14
22
  factory :address do
15
23
  address1 '10880 Malibu Point'
16
24
  zip '90265'
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Namespaced
4
+ class Person
5
+ class UserEdited < Namespaced::Person
6
+ end
7
+ end
8
+ end
@@ -39015,3 +39015,1577 @@
39015
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
39016
   (0.0ms) RELEASE SAVEPOINT active_record_1
39017
39017
   (0.0ms) rollback transaction
39018
+  (0.1ms) DROP TABLE IF EXISTS "people"
39019
+  (1.9ms) SELECT sqlite_version(*)
39020
+  (0.6ms) 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)
39021
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39022
+  (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)
39023
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39024
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39025
+  (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)
39026
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39027
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39028
+  (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)
39029
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39030
+  (0.2ms)  SELECT sql
39031
+ FROM sqlite_master
39032
+ WHERE name='index_assignments_on_person_id' AND type='index'
39033
+ UNION ALL
39034
+ SELECT sql
39035
+ FROM sqlite_temp_master
39036
+ WHERE name='index_assignments_on_person_id' AND type='index'
39037
+ 
39038
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39039
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39040
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39041
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39042
+  (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)
39043
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39044
+  (0.0ms) begin transaction
39045
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 14:20:14.794657"], ["updated_at", "2017-06-19 14:20:14.794657"]]
39046
+  (0.0ms) commit transaction
39047
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39048
+  (0.1ms) begin transaction
39049
+  (0.0ms) commit transaction
39050
+  (0.1ms) begin transaction
39051
+  (0.1ms) rollback transaction
39052
+  (0.0ms) begin transaction
39053
+  (0.1ms) rollback transaction
39054
+  (0.0ms) begin transaction
39055
+  (0.0ms) rollback transaction
39056
+  (0.0ms) begin transaction
39057
+  (0.1ms) rollback transaction
39058
+  (0.0ms) begin transaction
39059
+  (0.0ms) rollback transaction
39060
+  (0.0ms) begin transaction
39061
+  (0.0ms) rollback transaction
39062
+  (0.1ms) begin transaction
39063
+  (0.1ms) rollback transaction
39064
+  (0.0ms) begin transaction
39065
+  (0.0ms) rollback transaction
39066
+  (0.0ms) begin transaction
39067
+  (0.0ms) rollback transaction
39068
+  (0.0ms) begin transaction
39069
+  (0.0ms) SAVEPOINT active_record_1
39070
+ 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"]]
39071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39072
+  (0.1ms) rollback transaction
39073
+  (0.0ms) begin transaction
39074
+  (0.0ms) SAVEPOINT active_record_1
39075
+ 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"]]
39076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39077
+  (0.0ms) SAVEPOINT active_record_1
39078
+ 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"]]
39079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39080
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39081
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39082
+  (0.1ms) rollback transaction
39083
+  (0.0ms) begin transaction
39084
+  (0.0ms) SAVEPOINT active_record_1
39085
+ 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"]]
39086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39087
+  (0.0ms) SAVEPOINT active_record_1
39088
+ 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"]]
39089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39090
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39091
+  (0.1ms) rollback transaction
39092
+  (0.0ms) begin transaction
39093
+  (0.0ms) SAVEPOINT active_record_1
39094
+ 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"]]
39095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39096
+  (0.0ms) SAVEPOINT active_record_1
39097
+ 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"]]
39098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39099
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39100
+  (0.1ms) rollback transaction
39101
+  (0.1ms) begin transaction
39102
+  (0.0ms) SAVEPOINT active_record_1
39103
+ 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"]]
39104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39105
+  (0.0ms) SAVEPOINT active_record_1
39106
+ 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"]]
39107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39108
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39109
+  (0.1ms) rollback transaction
39110
+  (0.0ms) begin transaction
39111
+  (0.0ms) SAVEPOINT active_record_1
39112
+ 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"]]
39113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39114
+  (0.0ms) SAVEPOINT active_record_1
39115
+ 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"]]
39116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39117
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39118
+  (0.1ms) rollback transaction
39119
+  (0.0ms) begin transaction
39120
+  (0.0ms) rollback transaction
39121
+  (0.0ms) begin transaction
39122
+  (0.0ms) SAVEPOINT active_record_1
39123
+ 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"]]
39124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39125
+  (0.0ms) SAVEPOINT active_record_1
39126
+ 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"]]
39127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39128
+  (0.0ms) SAVEPOINT active_record_1
39129
+ 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"]]
39130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39131
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39132
+  (0.1ms) rollback transaction
39133
+  (0.0ms) begin transaction
39134
+  (0.0ms) SAVEPOINT active_record_1
39135
+ 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"]]
39136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39137
+  (0.0ms) SAVEPOINT active_record_1
39138
+ 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"]]
39139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39140
+  (0.0ms) SAVEPOINT active_record_1
39141
+ 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"]]
39142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39143
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39144
+  (0.1ms) rollback transaction
39145
+  (0.0ms) begin transaction
39146
+  (0.0ms) SAVEPOINT active_record_1
39147
+ 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"]]
39148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39149
+  (0.0ms) SAVEPOINT active_record_1
39150
+ 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"]]
39151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39152
+  (0.0ms) SAVEPOINT active_record_1
39153
+ 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"]]
39154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39155
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39156
+  (0.1ms) rollback transaction
39157
+  (0.0ms) begin transaction
39158
+  (0.0ms) SAVEPOINT active_record_1
39159
+ 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"]]
39160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39161
+  (0.0ms) SAVEPOINT active_record_1
39162
+ 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"]]
39163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39164
+  (0.0ms) SAVEPOINT active_record_1
39165
+ 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"]]
39166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39167
+  (0.1ms) rollback transaction
39168
+  (0.0ms) begin transaction
39169
+  (0.1ms) SAVEPOINT active_record_1
39170
+ 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-19 14:20:15.836305"], ["updated_at", "2017-06-19 14:20:15.836305"]]
39171
+ 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-19"], ["created_at", "2017-06-19 14:20:15.837243"], ["updated_at", "2017-06-19 14:20:15.837243"]]
39172
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 14:20:15.835591"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 14:20:15.837933"], ["updated_at", "2017-06-19 14:20:15.837933"]]
39173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39174
+  (0.1ms) rollback transaction
39175
+  (0.0ms) begin transaction
39176
+  (0.1ms) SAVEPOINT active_record_1
39177
+ 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-19 14:20:15.845835"], ["updated_at", "2017-06-19 14:20:15.845835"]]
39178
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 14:20:15.846819"], ["updated_at", "2017-06-19 14:20:15.846819"]]
39179
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 14:20:15.845126"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 14:20:15.847496"], ["updated_at", "2017-06-19 14:20:15.847496"]]
39180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39181
+  (0.1ms) rollback transaction
39182
+  (0.0ms) begin transaction
39183
+  (0.0ms) SAVEPOINT active_record_1
39184
+ 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-19 14:20:15.852894"], ["updated_at", "2017-06-19 14:20:15.852894"]]
39185
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 14:20:15.853767"], ["updated_at", "2017-06-19 14:20:15.853767"]]
39186
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 14:20:15.852297"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 14:20:15.854475"], ["updated_at", "2017-06-19 14:20:15.854475"]]
39187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39188
+  (0.1ms) rollback transaction
39189
+  (0.0ms) begin transaction
39190
+  (0.0ms) rollback transaction
39191
+  (0.0ms) begin transaction
39192
+  (0.0ms) rollback transaction
39193
+  (0.0ms) begin transaction
39194
+  (0.0ms) rollback transaction
39195
+  (0.0ms) begin transaction
39196
+  (0.0ms) SAVEPOINT active_record_1
39197
+ 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"]]
39198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39199
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
39200
+  (0.0ms) rollback transaction
39201
+  (0.0ms) begin transaction
39202
+  (0.0ms) SAVEPOINT active_record_1
39203
+ 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"]]
39204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39205
+  (0.0ms) SAVEPOINT active_record_1
39206
+ 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"]]
39207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39208
+  (0.1ms) rollback transaction
39209
+  (0.1ms) begin transaction
39210
+  (0.0ms) SAVEPOINT active_record_1
39211
+ 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"]]
39212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39213
+  (0.0ms) SAVEPOINT active_record_1
39214
+ 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"]]
39215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39216
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
39217
+  (0.0ms) rollback transaction
39218
+  (0.0ms) begin transaction
39219
+  (0.0ms) rollback transaction
39220
+  (0.0ms) begin transaction
39221
+  (0.0ms) rollback transaction
39222
+  (0.0ms) begin transaction
39223
+  (0.0ms) rollback transaction
39224
+  (0.0ms) begin transaction
39225
+  (0.0ms) SAVEPOINT active_record_1
39226
+ 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"]]
39227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39228
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39229
+  (0.0ms) rollback transaction
39230
+  (0.0ms) begin transaction
39231
+  (0.0ms) SAVEPOINT active_record_1
39232
+ 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"]]
39233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39234
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39235
+  (0.0ms) rollback transaction
39236
+  (0.0ms) begin transaction
39237
+  (0.0ms) SAVEPOINT active_record_1
39238
+ 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"]]
39239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39240
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39241
+  (0.0ms) rollback transaction
39242
+  (0.0ms) begin transaction
39243
+  (0.0ms) SAVEPOINT active_record_1
39244
+ 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"]]
39245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39246
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39247
+  (0.0ms) rollback transaction
39248
+  (0.0ms) begin transaction
39249
+  (0.0ms) SAVEPOINT active_record_1
39250
+ 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"]]
39251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39252
+  (0.1ms) rollback transaction
39253
+  (0.0ms) begin transaction
39254
+  (0.0ms) SAVEPOINT active_record_1
39255
+ 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"]]
39256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39257
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39258
+  (0.0ms) rollback transaction
39259
+  (0.0ms) begin transaction
39260
+  (0.1ms) rollback transaction
39261
+  (0.0ms) begin transaction
39262
+  (0.1ms) SAVEPOINT active_record_1
39263
+ 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-19 14:20:15.993014"], ["updated_at", "2017-06-19 14:20:15.993014"]]
39264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39265
+  (0.0ms) rollback transaction
39266
+  (0.0ms) begin transaction
39267
+  (0.1ms) SAVEPOINT active_record_1
39268
+ 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-19 14:20:15.996929"], ["updated_at", "2017-06-19 14:20:15.996929"]]
39269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39270
+  (0.0ms) rollback transaction
39271
+  (0.0ms) begin transaction
39272
+  (0.1ms) SAVEPOINT active_record_1
39273
+ 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-19 14:20:16.004031"], ["updated_at", "2017-06-19 14:20:16.004031"]]
39274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
39275
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
39276
+  (0.0ms) rollback transaction
39277
+  (0.0ms) begin transaction
39278
+  (0.0ms) rollback transaction
39279
+  (0.0ms) begin transaction
39280
+  (0.0ms) rollback transaction
39281
+  (0.0ms) begin transaction
39282
+  (0.0ms) SAVEPOINT active_record_1
39283
+ 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-19 14:20:16.014689"], ["updated_at", "2017-06-19 14:20:16.014689"]]
39284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39285
+  (0.0ms) rollback transaction
39286
+  (0.0ms) begin transaction
39287
+  (0.0ms) SAVEPOINT active_record_1
39288
+ 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-19 14:20:16.017977"], ["updated_at", "2017-06-19 14:20:16.017977"]]
39289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39290
+  (0.0ms) rollback transaction
39291
+  (0.0ms) begin transaction
39292
+  (0.0ms) SAVEPOINT active_record_1
39293
+ 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-19 14:20:16.020983"], ["updated_at", "2017-06-19 14:20:16.020983"]]
39294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39295
+  (0.0ms) rollback transaction
39296
+  (0.1ms) begin transaction
39297
+  (0.0ms) rollback transaction
39298
+  (0.0ms) begin transaction
39299
+  (0.1ms) SAVEPOINT active_record_1
39300
+ 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-19 14:20:16.031445"], ["updated_at", "2017-06-19 14:20:16.031445"]]
39301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39302
+  (0.0ms) rollback transaction
39303
+  (0.0ms) begin transaction
39304
+  (0.0ms) SAVEPOINT active_record_1
39305
+ 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-19 14:20:16.035658"], ["updated_at", "2017-06-19 14:20:16.035658"]]
39306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39307
+  (0.1ms) rollback transaction
39308
+  (0.0ms) begin transaction
39309
+  (0.1ms) SAVEPOINT active_record_1
39310
+ 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-19 14:20:16.041216"], ["updated_at", "2017-06-19 14:20:16.041216"]]
39311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39312
+  (0.0ms) rollback transaction
39313
+  (0.0ms) begin transaction
39314
+  (0.0ms) SAVEPOINT active_record_1
39315
+ 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-19 14:20:16.045382"], ["updated_at", "2017-06-19 14:20:16.045382"]]
39316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39317
+  (0.0ms) rollback transaction
39318
+  (0.0ms) DROP TABLE IF EXISTS "people"
39319
+  (0.8ms) SELECT sqlite_version(*)
39320
+  (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)
39321
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39322
+  (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)
39323
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39324
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39325
+  (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)
39326
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39327
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39328
+  (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)
39329
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39330
+  (0.2ms)  SELECT sql
39331
+ FROM sqlite_master
39332
+ WHERE name='index_assignments_on_person_id' AND type='index'
39333
+ UNION ALL
39334
+ SELECT sql
39335
+ FROM sqlite_temp_master
39336
+ WHERE name='index_assignments_on_person_id' AND type='index'
39337
+ 
39338
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39339
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39340
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39341
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39342
+  (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)
39343
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39344
+  (0.0ms) begin transaction
39345
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:05:59.297474"], ["updated_at", "2017-06-19 15:05:59.297474"]]
39346
+  (0.0ms) commit transaction
39347
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39348
+  (0.1ms) begin transaction
39349
+  (0.0ms) commit transaction
39350
+  (0.0ms) DROP TABLE IF EXISTS "people"
39351
+  (0.9ms) SELECT sqlite_version(*)
39352
+  (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)
39353
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39354
+  (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)
39355
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39356
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39357
+  (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)
39358
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39359
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39360
+  (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)
39361
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39362
+  (0.2ms)  SELECT sql
39363
+ FROM sqlite_master
39364
+ WHERE name='index_assignments_on_person_id' AND type='index'
39365
+ UNION ALL
39366
+ SELECT sql
39367
+ FROM sqlite_temp_master
39368
+ WHERE name='index_assignments_on_person_id' AND type='index'
39369
+ 
39370
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39371
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39372
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39373
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39374
+  (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)
39375
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39376
+  (0.0ms) begin transaction
39377
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:06:29.769755"], ["updated_at", "2017-06-19 15:06:29.769755"]]
39378
+  (0.0ms) commit transaction
39379
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39380
+  (0.0ms) begin transaction
39381
+  (0.0ms) commit transaction
39382
+  (0.1ms) begin transaction
39383
+  (0.1ms) rollback transaction
39384
+  (0.0ms) DROP TABLE IF EXISTS "people"
39385
+  (0.8ms) SELECT sqlite_version(*)
39386
+  (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)
39387
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39388
+  (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)
39389
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39390
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39391
+  (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)
39392
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39393
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39394
+  (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)
39395
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39396
+  (0.2ms)  SELECT sql
39397
+ FROM sqlite_master
39398
+ WHERE name='index_assignments_on_person_id' AND type='index'
39399
+ UNION ALL
39400
+ SELECT sql
39401
+ FROM sqlite_temp_master
39402
+ WHERE name='index_assignments_on_person_id' AND type='index'
39403
+ 
39404
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39405
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39406
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39407
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39408
+  (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)
39409
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39410
+  (0.0ms) begin transaction
39411
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:06:49.938156"], ["updated_at", "2017-06-19 15:06:49.938156"]]
39412
+  (0.0ms) commit transaction
39413
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39414
+  (0.0ms) begin transaction
39415
+  (0.0ms) commit transaction
39416
+  (0.1ms) begin transaction
39417
+  (0.1ms) rollback transaction
39418
+  (0.0ms) DROP TABLE IF EXISTS "people"
39419
+  (0.9ms) SELECT sqlite_version(*)
39420
+  (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)
39421
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
39422
+  (0.2ms) 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)
39423
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39424
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39425
+  (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)
39426
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39427
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39428
+  (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)
39429
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39430
+  (0.3ms)  SELECT sql
39431
+ FROM sqlite_master
39432
+ WHERE name='index_assignments_on_person_id' AND type='index'
39433
+ UNION ALL
39434
+ SELECT sql
39435
+ FROM sqlite_temp_master
39436
+ WHERE name='index_assignments_on_person_id' AND type='index'
39437
+ 
39438
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39439
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39440
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39441
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39442
+  (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)
39443
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39444
+  (0.0ms) begin transaction
39445
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:08:50.429279"], ["updated_at", "2017-06-19 15:08:50.429279"]]
39446
+  (0.0ms) commit transaction
39447
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39448
+  (0.0ms) begin transaction
39449
+  (0.1ms) commit transaction
39450
+  (0.1ms) begin transaction
39451
+  (0.0ms) rollback transaction
39452
+  (0.0ms) DROP TABLE IF EXISTS "people"
39453
+  (0.9ms) SELECT sqlite_version(*)
39454
+  (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)
39455
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
39456
+  (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)
39457
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39458
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39459
+  (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)
39460
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39461
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39462
+  (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)
39463
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39464
+  (0.2ms)  SELECT sql
39465
+ FROM sqlite_master
39466
+ WHERE name='index_assignments_on_person_id' AND type='index'
39467
+ UNION ALL
39468
+ SELECT sql
39469
+ FROM sqlite_temp_master
39470
+ WHERE name='index_assignments_on_person_id' AND type='index'
39471
+ 
39472
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39473
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39474
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39475
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39476
+  (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)
39477
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39478
+  (0.0ms) begin transaction
39479
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:10:20.502014"], ["updated_at", "2017-06-19 15:10:20.502014"]]
39480
+  (0.0ms) commit transaction
39481
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39482
+  (0.0ms) begin transaction
39483
+  (0.0ms) commit transaction
39484
+  (0.2ms) begin transaction
39485
+  (0.1ms) rollback transaction
39486
+  (0.0ms) DROP TABLE IF EXISTS "people"
39487
+  (0.9ms) SELECT sqlite_version(*)
39488
+  (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)
39489
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39490
+  (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)
39491
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39492
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39493
+  (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)
39494
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39495
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39496
+  (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)
39497
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39498
+  (0.3ms)  SELECT sql
39499
+ FROM sqlite_master
39500
+ WHERE name='index_assignments_on_person_id' AND type='index'
39501
+ UNION ALL
39502
+ SELECT sql
39503
+ FROM sqlite_temp_master
39504
+ WHERE name='index_assignments_on_person_id' AND type='index'
39505
+ 
39506
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39507
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39508
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39509
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39510
+  (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)
39511
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39512
+  (0.0ms) begin transaction
39513
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:11:22.108644"], ["updated_at", "2017-06-19 15:11:22.108644"]]
39514
+  (0.0ms) commit transaction
39515
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39516
+  (0.0ms) begin transaction
39517
+  (0.0ms) commit transaction
39518
+  (0.2ms) begin transaction
39519
+  (0.1ms) rollback transaction
39520
+  (0.0ms) DROP TABLE IF EXISTS "people"
39521
+  (0.9ms) SELECT sqlite_version(*)
39522
+  (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)
39523
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39524
+  (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)
39525
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39526
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39527
+  (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)
39528
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39529
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39530
+  (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)
39531
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39532
+  (0.2ms)  SELECT sql
39533
+ FROM sqlite_master
39534
+ WHERE name='index_assignments_on_person_id' AND type='index'
39535
+ UNION ALL
39536
+ SELECT sql
39537
+ FROM sqlite_temp_master
39538
+ WHERE name='index_assignments_on_person_id' AND type='index'
39539
+ 
39540
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39541
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39542
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39543
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39544
+  (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)
39545
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39546
+  (0.0ms) begin transaction
39547
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:14:14.434297"], ["updated_at", "2017-06-19 15:14:14.434297"]]
39548
+  (0.0ms) commit transaction
39549
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39550
+  (0.0ms) begin transaction
39551
+  (0.0ms) commit transaction
39552
+  (0.1ms) begin transaction
39553
+  (0.1ms) rollback transaction
39554
+  (0.0ms) DROP TABLE IF EXISTS "people"
39555
+  (0.8ms) SELECT sqlite_version(*)
39556
+  (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)
39557
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39558
+  (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)
39559
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39560
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39561
+  (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)
39562
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39563
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39564
+  (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)
39565
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39566
+  (0.2ms)  SELECT sql
39567
+ FROM sqlite_master
39568
+ WHERE name='index_assignments_on_person_id' AND type='index'
39569
+ UNION ALL
39570
+ SELECT sql
39571
+ FROM sqlite_temp_master
39572
+ WHERE name='index_assignments_on_person_id' AND type='index'
39573
+ 
39574
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39575
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39576
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39577
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39578
+  (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)
39579
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39580
+  (0.0ms) begin transaction
39581
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:15:48.326554"], ["updated_at", "2017-06-19 15:15:48.326554"]]
39582
+  (0.0ms) commit transaction
39583
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39584
+  (0.0ms) begin transaction
39585
+  (0.1ms) commit transaction
39586
+  (0.0ms) DROP TABLE IF EXISTS "people"
39587
+  (0.8ms) SELECT sqlite_version(*)
39588
+  (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)
39589
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
39590
+  (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)
39591
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39592
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39593
+  (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)
39594
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39595
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39596
+  (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)
39597
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39598
+  (0.2ms)  SELECT sql
39599
+ FROM sqlite_master
39600
+ WHERE name='index_assignments_on_person_id' AND type='index'
39601
+ UNION ALL
39602
+ SELECT sql
39603
+ FROM sqlite_temp_master
39604
+ WHERE name='index_assignments_on_person_id' AND type='index'
39605
+ 
39606
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39607
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39608
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39609
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39610
+  (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)
39611
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39612
+  (0.0ms) begin transaction
39613
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:16:28.673064"], ["updated_at", "2017-06-19 15:16:28.673064"]]
39614
+  (0.0ms) commit transaction
39615
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39616
+  (0.0ms) begin transaction
39617
+  (0.0ms) commit transaction
39618
+  (0.1ms) DROP TABLE IF EXISTS "people"
39619
+  (0.9ms) SELECT sqlite_version(*)
39620
+  (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)
39621
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39622
+  (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)
39623
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39624
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39625
+  (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)
39626
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39627
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39628
+  (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)
39629
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39630
+  (0.2ms)  SELECT sql
39631
+ FROM sqlite_master
39632
+ WHERE name='index_assignments_on_person_id' AND type='index'
39633
+ UNION ALL
39634
+ SELECT sql
39635
+ FROM sqlite_temp_master
39636
+ WHERE name='index_assignments_on_person_id' AND type='index'
39637
+ 
39638
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39639
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39640
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39641
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39642
+  (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)
39643
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39644
+  (0.0ms) begin transaction
39645
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:17:31.907291"], ["updated_at", "2017-06-19 15:17:31.907291"]]
39646
+  (0.0ms) commit transaction
39647
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39648
+  (0.0ms) begin transaction
39649
+  (0.0ms) commit transaction
39650
+  (0.2ms) begin transaction
39651
+  (0.1ms) rollback transaction
39652
+  (0.0ms) DROP TABLE IF EXISTS "people"
39653
+  (1.1ms) SELECT sqlite_version(*)
39654
+  (0.4ms) 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)
39655
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
39656
+  (0.2ms) 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)
39657
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39658
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39659
+  (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)
39660
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39661
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39662
+  (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)
39663
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39664
+  (0.3ms)  SELECT sql
39665
+ FROM sqlite_master
39666
+ WHERE name='index_assignments_on_person_id' AND type='index'
39667
+ UNION ALL
39668
+ SELECT sql
39669
+ FROM sqlite_temp_master
39670
+ WHERE name='index_assignments_on_person_id' AND type='index'
39671
+ 
39672
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39673
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39674
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39675
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39676
+  (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)
39677
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39678
+  (0.0ms) begin transaction
39679
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:20:01.290078"], ["updated_at", "2017-06-19 15:20:01.290078"]]
39680
+  (0.0ms) commit transaction
39681
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39682
+  (0.0ms) begin transaction
39683
+  (0.0ms) commit transaction
39684
+  (0.2ms) begin transaction
39685
+  (0.1ms) rollback transaction
39686
+  (0.0ms) DROP TABLE IF EXISTS "people"
39687
+  (0.9ms) SELECT sqlite_version(*)
39688
+  (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)
39689
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
39690
+  (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)
39691
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39692
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39693
+  (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)
39694
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39695
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39696
+  (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)
39697
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
39698
+  (0.2ms)  SELECT sql
39699
+ FROM sqlite_master
39700
+ WHERE name='index_assignments_on_person_id' AND type='index'
39701
+ UNION ALL
39702
+ SELECT sql
39703
+ FROM sqlite_temp_master
39704
+ WHERE name='index_assignments_on_person_id' AND type='index'
39705
+ 
39706
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
39707
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
39708
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
39709
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
39710
+  (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)
39711
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39712
+  (0.0ms) begin transaction
39713
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:21:40.799834"], ["updated_at", "2017-06-19 15:21:40.799834"]]
39714
+  (0.0ms) commit transaction
39715
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39716
+  (0.0ms) begin transaction
39717
+  (0.0ms) commit transaction
39718
+  (0.1ms) begin transaction
39719
+  (0.0ms) rollback transaction
39720
+  (0.0ms) begin transaction
39721
+  (0.1ms) rollback transaction
39722
+  (0.0ms) begin transaction
39723
+  (0.0ms) rollback transaction
39724
+  (0.0ms) begin transaction
39725
+  (0.0ms) rollback transaction
39726
+  (0.1ms) begin transaction
39727
+  (0.2ms) rollback transaction
39728
+  (0.0ms) begin transaction
39729
+  (0.0ms) rollback transaction
39730
+  (0.0ms) begin transaction
39731
+  (0.1ms) rollback transaction
39732
+  (0.0ms) begin transaction
39733
+  (0.0ms) rollback transaction
39734
+  (0.0ms) begin transaction
39735
+  (0.0ms) rollback transaction
39736
+  (0.0ms) begin transaction
39737
+  (0.0ms) SAVEPOINT active_record_1
39738
+ 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"]]
39739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39740
+  (0.1ms) rollback transaction
39741
+  (0.0ms) begin transaction
39742
+  (0.0ms) SAVEPOINT active_record_1
39743
+ 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"]]
39744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39745
+  (0.0ms) SAVEPOINT active_record_1
39746
+ 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"]]
39747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39748
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39749
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39750
+  (0.1ms) rollback transaction
39751
+  (0.0ms) begin transaction
39752
+  (0.0ms) SAVEPOINT active_record_1
39753
+ 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"]]
39754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39755
+  (0.0ms) SAVEPOINT active_record_1
39756
+ 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"]]
39757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39758
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39759
+  (0.1ms) rollback transaction
39760
+  (0.0ms) begin transaction
39761
+  (0.0ms) SAVEPOINT active_record_1
39762
+ 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"]]
39763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39764
+  (0.0ms) SAVEPOINT active_record_1
39765
+ 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"]]
39766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39767
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39768
+  (0.0ms) rollback transaction
39769
+  (0.0ms) begin transaction
39770
+  (0.0ms) SAVEPOINT active_record_1
39771
+ 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"]]
39772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39773
+  (0.0ms) SAVEPOINT active_record_1
39774
+ 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"]]
39775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39776
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39777
+  (0.0ms) rollback transaction
39778
+  (0.0ms) begin transaction
39779
+  (0.0ms) SAVEPOINT active_record_1
39780
+ 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"]]
39781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39782
+  (0.0ms) SAVEPOINT active_record_1
39783
+ 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"]]
39784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39785
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
39786
+  (0.1ms) rollback transaction
39787
+  (0.0ms) begin transaction
39788
+  (0.0ms) rollback transaction
39789
+  (0.0ms) begin transaction
39790
+  (0.0ms) SAVEPOINT active_record_1
39791
+ 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"]]
39792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39793
+  (0.0ms) SAVEPOINT active_record_1
39794
+ 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"]]
39795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39796
+  (0.0ms) SAVEPOINT active_record_1
39797
+ 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"]]
39798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39799
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39800
+  (0.1ms) rollback transaction
39801
+  (0.0ms) begin transaction
39802
+  (0.0ms) SAVEPOINT active_record_1
39803
+ 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"]]
39804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39805
+  (0.0ms) SAVEPOINT active_record_1
39806
+ 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"]]
39807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39808
+  (0.0ms) SAVEPOINT active_record_1
39809
+ 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"]]
39810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39811
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39812
+  (0.1ms) rollback transaction
39813
+  (0.0ms) begin transaction
39814
+  (0.0ms) SAVEPOINT active_record_1
39815
+ 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"]]
39816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39817
+  (0.0ms) SAVEPOINT active_record_1
39818
+ 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"]]
39819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39820
+  (0.0ms) SAVEPOINT active_record_1
39821
+ 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"]]
39822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39823
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
39824
+  (0.1ms) rollback transaction
39825
+  (0.0ms) begin transaction
39826
+  (0.0ms) SAVEPOINT active_record_1
39827
+ 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"]]
39828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39829
+  (0.0ms) SAVEPOINT active_record_1
39830
+ 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"]]
39831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39832
+  (0.0ms) SAVEPOINT active_record_1
39833
+ 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"]]
39834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39835
+  (0.0ms) rollback transaction
39836
+  (0.0ms) begin transaction
39837
+  (0.1ms) SAVEPOINT active_record_1
39838
+ 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-19 15:21:41.516266"], ["updated_at", "2017-06-19 15:21:41.516266"]]
39839
+ 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-19"], ["created_at", "2017-06-19 15:21:41.517148"], ["updated_at", "2017-06-19 15:21:41.517148"]]
39840
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:21:41.515667"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:21:41.517790"], ["updated_at", "2017-06-19 15:21:41.517790"]]
39841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39842
+  (0.0ms) rollback transaction
39843
+  (0.0ms) begin transaction
39844
+  (0.0ms) SAVEPOINT active_record_1
39845
+ 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-19 15:21:41.523996"], ["updated_at", "2017-06-19 15:21:41.523996"]]
39846
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:21:41.524856"], ["updated_at", "2017-06-19 15:21:41.524856"]]
39847
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:21:41.523339"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:21:41.525483"], ["updated_at", "2017-06-19 15:21:41.525483"]]
39848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39849
+  (0.0ms) rollback transaction
39850
+  (0.0ms) begin transaction
39851
+  (0.0ms) SAVEPOINT active_record_1
39852
+ 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-19 15:21:41.530288"], ["updated_at", "2017-06-19 15:21:41.530288"]]
39853
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:21:41.531063"], ["updated_at", "2017-06-19 15:21:41.531063"]]
39854
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:21:41.529737"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:21:41.531659"], ["updated_at", "2017-06-19 15:21:41.531659"]]
39855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39856
+  (0.0ms) rollback transaction
39857
+  (0.1ms) begin transaction
39858
+  (0.0ms) rollback transaction
39859
+  (0.0ms) begin transaction
39860
+  (0.0ms) rollback transaction
39861
+  (0.0ms) begin transaction
39862
+  (0.0ms) rollback transaction
39863
+  (0.1ms) begin transaction
39864
+  (0.0ms) SAVEPOINT active_record_1
39865
+ 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"]]
39866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39867
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
39868
+  (0.1ms) rollback transaction
39869
+  (0.0ms) begin transaction
39870
+  (0.0ms) SAVEPOINT active_record_1
39871
+ 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"]]
39872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39873
+  (0.0ms) SAVEPOINT active_record_1
39874
+ 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"]]
39875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39876
+  (0.1ms) rollback transaction
39877
+  (0.0ms) begin transaction
39878
+  (0.0ms) SAVEPOINT active_record_1
39879
+ 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"]]
39880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39881
+  (0.0ms) SAVEPOINT active_record_1
39882
+ 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"]]
39883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39884
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
39885
+  (0.0ms) rollback transaction
39886
+  (0.0ms) begin transaction
39887
+  (0.0ms) rollback transaction
39888
+  (0.0ms) begin transaction
39889
+  (0.0ms) rollback transaction
39890
+  (0.0ms) begin transaction
39891
+  (0.0ms) rollback transaction
39892
+  (0.0ms) begin transaction
39893
+  (0.0ms) SAVEPOINT active_record_1
39894
+ 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"]]
39895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39896
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39897
+  (0.0ms) rollback transaction
39898
+  (0.0ms) begin transaction
39899
+  (0.0ms) SAVEPOINT active_record_1
39900
+ 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"]]
39901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39902
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39903
+  (0.0ms) rollback transaction
39904
+  (0.0ms) begin transaction
39905
+  (0.0ms) SAVEPOINT active_record_1
39906
+ 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"]]
39907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39908
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39909
+  (0.0ms) rollback transaction
39910
+  (0.0ms) begin transaction
39911
+  (0.0ms) SAVEPOINT active_record_1
39912
+ 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"]]
39913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39914
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39915
+  (0.0ms) rollback transaction
39916
+  (0.0ms) begin transaction
39917
+  (0.0ms) SAVEPOINT active_record_1
39918
+ 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"]]
39919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39920
+  (0.0ms) rollback transaction
39921
+  (0.0ms) begin transaction
39922
+  (0.0ms) SAVEPOINT active_record_1
39923
+ 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"]]
39924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39925
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
39926
+  (0.1ms) rollback transaction
39927
+  (0.0ms) begin transaction
39928
+  (0.0ms) rollback transaction
39929
+  (0.0ms) begin transaction
39930
+  (0.1ms) SAVEPOINT active_record_1
39931
+ 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-19 15:21:41.660095"], ["updated_at", "2017-06-19 15:21:41.660095"]]
39932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39933
+  (0.0ms) rollback transaction
39934
+  (0.0ms) begin transaction
39935
+  (0.0ms) SAVEPOINT active_record_1
39936
+ 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-19 15:21:41.663759"], ["updated_at", "2017-06-19 15:21:41.663759"]]
39937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39938
+  (0.1ms) rollback transaction
39939
+  (0.0ms) begin transaction
39940
+  (0.1ms) SAVEPOINT active_record_1
39941
+ 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-19 15:21:41.670342"], ["updated_at", "2017-06-19 15:21:41.670342"]]
39942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39943
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
39944
+  (0.0ms) rollback transaction
39945
+  (0.0ms) begin transaction
39946
+  (0.0ms) rollback transaction
39947
+  (0.0ms) begin transaction
39948
+  (0.0ms) rollback transaction
39949
+  (0.0ms) begin transaction
39950
+  (0.0ms) rollback transaction
39951
+  (0.0ms) begin transaction
39952
+  (0.1ms) SAVEPOINT active_record_1
39953
+ 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-19 15:21:41.692900"], ["updated_at", "2017-06-19 15:21:41.692900"]]
39954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39955
+  (0.0ms) rollback transaction
39956
+  (0.0ms) begin transaction
39957
+  (0.0ms) SAVEPOINT active_record_1
39958
+ 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-19 15:21:41.696752"], ["updated_at", "2017-06-19 15:21:41.696752"]]
39959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39960
+  (0.0ms) rollback transaction
39961
+  (0.0ms) begin transaction
39962
+  (0.0ms) SAVEPOINT active_record_1
39963
+ 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-19 15:21:41.700315"], ["updated_at", "2017-06-19 15:21:41.700315"]]
39964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39965
+  (0.1ms) rollback transaction
39966
+  (0.0ms) begin transaction
39967
+  (0.0ms) rollback transaction
39968
+  (0.0ms) begin transaction
39969
+  (0.1ms) SAVEPOINT active_record_1
39970
+ 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-19 15:21:41.706767"], ["updated_at", "2017-06-19 15:21:41.706767"]]
39971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39972
+  (0.0ms) rollback transaction
39973
+  (0.0ms) begin transaction
39974
+  (0.0ms) SAVEPOINT active_record_1
39975
+ 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-19 15:21:41.710878"], ["updated_at", "2017-06-19 15:21:41.710878"]]
39976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39977
+  (0.1ms) rollback transaction
39978
+  (0.0ms) begin transaction
39979
+  (0.1ms) SAVEPOINT active_record_1
39980
+ 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-19 15:21:41.716431"], ["updated_at", "2017-06-19 15:21:41.716431"]]
39981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39982
+  (0.0ms) rollback transaction
39983
+  (0.0ms) begin transaction
39984
+  (0.2ms) SAVEPOINT active_record_1
39985
+ 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-19 15:21:41.720506"], ["updated_at", "2017-06-19 15:21:41.720506"]]
39986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39987
+  (0.0ms) rollback transaction
39988
+  (0.0ms) DROP TABLE IF EXISTS "people"
39989
+  (0.8ms) SELECT sqlite_version(*)
39990
+  (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)
39991
+  (0.1ms) DROP TABLE IF EXISTS "addresses"
39992
+  (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)
39993
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
39994
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
39995
+  (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)
39996
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
39997
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
39998
+  (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)
39999
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
40000
+  (0.3ms)  SELECT sql
40001
+ FROM sqlite_master
40002
+ WHERE name='index_assignments_on_person_id' AND type='index'
40003
+ UNION ALL
40004
+ SELECT sql
40005
+ FROM sqlite_temp_master
40006
+ WHERE name='index_assignments_on_person_id' AND type='index'
40007
+ 
40008
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
40009
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
40010
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
40011
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
40012
+  (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)
40013
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
40014
+  (0.0ms) begin transaction
40015
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:26:55.793396"], ["updated_at", "2017-06-19 15:26:55.793396"]]
40016
+  (0.0ms) commit transaction
40017
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
40018
+  (0.0ms) begin transaction
40019
+  (0.0ms) commit transaction
40020
+  (0.1ms) begin transaction
40021
+  (0.0ms) rollback transaction
40022
+  (0.0ms) begin transaction
40023
+  (0.0ms) rollback transaction
40024
+  (0.0ms) begin transaction
40025
+  (0.0ms) rollback transaction
40026
+  (0.0ms) begin transaction
40027
+  (0.0ms) rollback transaction
40028
+  (0.0ms) begin transaction
40029
+  (0.0ms) rollback transaction
40030
+  (0.0ms) begin transaction
40031
+  (0.0ms) rollback transaction
40032
+  (0.0ms) begin transaction
40033
+  (0.1ms) rollback transaction
40034
+  (0.0ms) begin transaction
40035
+  (0.0ms) rollback transaction
40036
+  (0.0ms) begin transaction
40037
+  (0.0ms) rollback transaction
40038
+  (0.0ms) begin transaction
40039
+  (0.0ms) SAVEPOINT active_record_1
40040
+ 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"]]
40041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40042
+  (0.1ms) rollback transaction
40043
+  (0.0ms) begin transaction
40044
+  (0.0ms) SAVEPOINT active_record_1
40045
+ 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"]]
40046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40047
+  (0.0ms) SAVEPOINT active_record_1
40048
+ 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"]]
40049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40050
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40051
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40052
+  (0.0ms) rollback transaction
40053
+  (0.0ms) begin transaction
40054
+  (0.0ms) SAVEPOINT active_record_1
40055
+ 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"]]
40056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40057
+  (0.0ms) SAVEPOINT active_record_1
40058
+ 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"]]
40059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40060
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40061
+  (0.1ms) rollback transaction
40062
+  (0.0ms) begin transaction
40063
+  (0.0ms) SAVEPOINT active_record_1
40064
+ 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"]]
40065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40066
+  (0.0ms) SAVEPOINT active_record_1
40067
+ 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"]]
40068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40069
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40070
+  (0.1ms) rollback transaction
40071
+  (0.0ms) begin transaction
40072
+  (0.0ms) SAVEPOINT active_record_1
40073
+ 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"]]
40074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40075
+  (0.0ms) SAVEPOINT active_record_1
40076
+ 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"]]
40077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40078
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40079
+  (0.1ms) rollback transaction
40080
+  (0.0ms) begin transaction
40081
+  (0.0ms) SAVEPOINT active_record_1
40082
+ 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"]]
40083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40084
+  (0.0ms) SAVEPOINT active_record_1
40085
+ 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"]]
40086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40087
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40088
+  (0.1ms) rollback transaction
40089
+  (0.0ms) begin transaction
40090
+  (0.0ms) rollback transaction
40091
+  (0.0ms) begin transaction
40092
+  (0.0ms) SAVEPOINT active_record_1
40093
+ 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"]]
40094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40095
+  (0.0ms) SAVEPOINT active_record_1
40096
+ 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"]]
40097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40098
+  (0.0ms) SAVEPOINT active_record_1
40099
+ 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"]]
40100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40101
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40102
+  (0.1ms) rollback transaction
40103
+  (0.0ms) begin transaction
40104
+  (0.0ms) SAVEPOINT active_record_1
40105
+ 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"]]
40106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40107
+  (0.0ms) SAVEPOINT active_record_1
40108
+ 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"]]
40109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40110
+  (0.0ms) SAVEPOINT active_record_1
40111
+ 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"]]
40112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40113
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40114
+  (0.1ms) rollback transaction
40115
+  (0.0ms) begin transaction
40116
+  (0.0ms) SAVEPOINT active_record_1
40117
+ 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"]]
40118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40119
+  (0.0ms) SAVEPOINT active_record_1
40120
+ 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"]]
40121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40122
+  (0.0ms) SAVEPOINT active_record_1
40123
+ 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"]]
40124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40125
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40126
+  (0.1ms) rollback transaction
40127
+  (0.0ms) begin transaction
40128
+  (0.0ms) SAVEPOINT active_record_1
40129
+ 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"]]
40130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40131
+  (0.0ms) SAVEPOINT active_record_1
40132
+ 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"]]
40133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40134
+  (0.0ms) SAVEPOINT active_record_1
40135
+ 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"]]
40136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40137
+  (0.1ms) rollback transaction
40138
+  (0.1ms) begin transaction
40139
+  (0.1ms) SAVEPOINT active_record_1
40140
+ 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-19 15:26:56.506726"], ["updated_at", "2017-06-19 15:26:56.506726"]]
40141
+ 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-19"], ["created_at", "2017-06-19 15:26:56.507791"], ["updated_at", "2017-06-19 15:26:56.507791"]]
40142
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:26:56.505899"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:26:56.508459"], ["updated_at", "2017-06-19 15:26:56.508459"]]
40143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40144
+  (0.0ms) rollback transaction
40145
+  (0.1ms) begin transaction
40146
+  (0.1ms) SAVEPOINT active_record_1
40147
+ 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-19 15:26:56.514781"], ["updated_at", "2017-06-19 15:26:56.514781"]]
40148
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:26:56.515637"], ["updated_at", "2017-06-19 15:26:56.515637"]]
40149
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:26:56.514137"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:26:56.516255"], ["updated_at", "2017-06-19 15:26:56.516255"]]
40150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40151
+  (0.0ms) rollback transaction
40152
+  (0.0ms) begin transaction
40153
+  (0.1ms) SAVEPOINT active_record_1
40154
+ 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-19 15:26:56.521202"], ["updated_at", "2017-06-19 15:26:56.521202"]]
40155
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:26:56.522026"], ["updated_at", "2017-06-19 15:26:56.522026"]]
40156
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:26:56.520618"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:26:56.522652"], ["updated_at", "2017-06-19 15:26:56.522652"]]
40157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40158
+  (0.1ms) rollback transaction
40159
+  (0.0ms) begin transaction
40160
+  (0.0ms) rollback transaction
40161
+  (0.0ms) begin transaction
40162
+  (0.0ms) rollback transaction
40163
+  (0.0ms) begin transaction
40164
+  (0.0ms) rollback transaction
40165
+  (0.0ms) begin transaction
40166
+  (0.0ms) SAVEPOINT active_record_1
40167
+ 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"]]
40168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40169
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
40170
+  (0.0ms) rollback transaction
40171
+  (0.0ms) begin transaction
40172
+  (0.0ms) SAVEPOINT active_record_1
40173
+ 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"]]
40174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40175
+  (0.0ms) SAVEPOINT active_record_1
40176
+ 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"]]
40177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40178
+  (0.1ms) rollback transaction
40179
+  (0.0ms) begin transaction
40180
+  (0.0ms) SAVEPOINT active_record_1
40181
+ 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"]]
40182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40183
+  (0.0ms) SAVEPOINT active_record_1
40184
+ 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"]]
40185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40186
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
40187
+  (0.1ms) rollback transaction
40188
+  (0.0ms) begin transaction
40189
+  (0.0ms) rollback transaction
40190
+  (0.0ms) begin transaction
40191
+  (0.0ms) rollback transaction
40192
+  (0.0ms) begin transaction
40193
+  (0.0ms) rollback transaction
40194
+  (0.0ms) begin transaction
40195
+  (0.0ms) SAVEPOINT active_record_1
40196
+ 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"]]
40197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40198
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40199
+  (0.0ms) rollback transaction
40200
+  (0.0ms) begin transaction
40201
+  (0.0ms) SAVEPOINT active_record_1
40202
+ 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"]]
40203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40204
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40205
+  (0.0ms) rollback transaction
40206
+  (0.0ms) begin transaction
40207
+  (0.0ms) SAVEPOINT active_record_1
40208
+ 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"]]
40209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40210
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40211
+  (0.0ms) rollback transaction
40212
+  (0.0ms) begin transaction
40213
+  (0.0ms) SAVEPOINT active_record_1
40214
+ 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"]]
40215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40216
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40217
+  (0.0ms) rollback transaction
40218
+  (0.1ms) begin transaction
40219
+  (0.0ms) SAVEPOINT active_record_1
40220
+ 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"]]
40221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40222
+  (0.0ms) rollback transaction
40223
+  (0.0ms) begin transaction
40224
+  (0.0ms) SAVEPOINT active_record_1
40225
+ 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"]]
40226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40227
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40228
+  (0.0ms) rollback transaction
40229
+  (0.0ms) begin transaction
40230
+  (0.0ms) rollback transaction
40231
+  (0.0ms) begin transaction
40232
+  (0.0ms) SAVEPOINT active_record_1
40233
+ 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-19 15:26:56.654342"], ["updated_at", "2017-06-19 15:26:56.654342"]]
40234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40235
+  (0.0ms) rollback transaction
40236
+  (0.0ms) begin transaction
40237
+  (0.0ms) SAVEPOINT active_record_1
40238
+ 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-19 15:26:56.657644"], ["updated_at", "2017-06-19 15:26:56.657644"]]
40239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40240
+  (0.0ms) rollback transaction
40241
+  (0.0ms) begin transaction
40242
+  (0.0ms) SAVEPOINT active_record_1
40243
+ 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-19 15:26:56.662711"], ["updated_at", "2017-06-19 15:26:56.662711"]]
40244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40245
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
40246
+  (0.0ms) rollback transaction
40247
+  (0.0ms) begin transaction
40248
+  (0.1ms) rollback transaction
40249
+  (0.0ms) begin transaction
40250
+  (0.1ms) rollback transaction
40251
+  (0.1ms) begin transaction
40252
+  (0.0ms) rollback transaction
40253
+  (0.1ms) begin transaction
40254
+  (0.1ms) SAVEPOINT active_record_1
40255
+ 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-19 15:26:56.687151"], ["updated_at", "2017-06-19 15:26:56.687151"]]
40256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40257
+  (0.1ms) rollback transaction
40258
+  (0.0ms) begin transaction
40259
+  (0.1ms) SAVEPOINT active_record_1
40260
+ 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-19 15:26:56.692038"], ["updated_at", "2017-06-19 15:26:56.692038"]]
40261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40262
+  (0.1ms) rollback transaction
40263
+  (0.1ms) begin transaction
40264
+  (0.0ms) SAVEPOINT active_record_1
40265
+ 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-19 15:26:56.696408"], ["updated_at", "2017-06-19 15:26:56.696408"]]
40266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40267
+  (0.0ms) rollback transaction
40268
+  (0.0ms) begin transaction
40269
+  (0.0ms) rollback transaction
40270
+  (0.1ms) begin transaction
40271
+  (0.0ms) SAVEPOINT active_record_1
40272
+ 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-19 15:26:56.701655"], ["updated_at", "2017-06-19 15:26:56.701655"]]
40273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40274
+  (0.0ms) rollback transaction
40275
+  (0.0ms) begin transaction
40276
+  (0.0ms) SAVEPOINT active_record_1
40277
+ 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-19 15:26:56.704980"], ["updated_at", "2017-06-19 15:26:56.704980"]]
40278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40279
+  (0.0ms) rollback transaction
40280
+  (0.0ms) begin transaction
40281
+  (0.0ms) SAVEPOINT active_record_1
40282
+ 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-19 15:26:56.708725"], ["updated_at", "2017-06-19 15:26:56.708725"]]
40283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40284
+  (0.0ms) rollback transaction
40285
+  (0.0ms) begin transaction
40286
+  (0.0ms) SAVEPOINT active_record_1
40287
+ 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-19 15:26:56.712108"], ["updated_at", "2017-06-19 15:26:56.712108"]]
40288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40289
+  (0.0ms) rollback transaction
40290
+  (0.0ms) DROP TABLE IF EXISTS "people"
40291
+  (0.8ms) SELECT sqlite_version(*)
40292
+  (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)
40293
+  (0.0ms) DROP TABLE IF EXISTS "addresses"
40294
+  (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)
40295
+  (0.1ms) CREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")
40296
+  (0.0ms) DROP TABLE IF EXISTS "organizations"
40297
+  (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)
40298
+  (0.1ms) CREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")
40299
+  (0.0ms) DROP TABLE IF EXISTS "assignments"
40300
+  (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)
40301
+  (0.1ms) CREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")
40302
+  (0.3ms)  SELECT sql
40303
+ FROM sqlite_master
40304
+ WHERE name='index_assignments_on_person_id' AND type='index'
40305
+ UNION ALL
40306
+ SELECT sql
40307
+ FROM sqlite_temp_master
40308
+ WHERE name='index_assignments_on_person_id' AND type='index'
40309
+ 
40310
+  (0.1ms) CREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")
40311
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
40312
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
40313
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
40314
+  (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)
40315
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
40316
+  (0.0ms) begin transaction
40317
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2017-06-19 15:27:10.819606"], ["updated_at", "2017-06-19 15:27:10.819606"]]
40318
+  (0.0ms) commit transaction
40319
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
40320
+  (0.0ms) begin transaction
40321
+  (0.0ms) commit transaction
40322
+  (0.1ms) begin transaction
40323
+  (0.1ms) rollback transaction
40324
+  (0.0ms) begin transaction
40325
+  (0.0ms) rollback transaction
40326
+  (0.0ms) begin transaction
40327
+  (0.0ms) rollback transaction
40328
+  (0.0ms) begin transaction
40329
+  (0.0ms) rollback transaction
40330
+  (0.0ms) begin transaction
40331
+  (0.1ms) rollback transaction
40332
+  (0.0ms) begin transaction
40333
+  (0.0ms) rollback transaction
40334
+  (0.0ms) begin transaction
40335
+  (0.1ms) rollback transaction
40336
+  (0.0ms) begin transaction
40337
+  (0.1ms) rollback transaction
40338
+  (0.1ms) begin transaction
40339
+  (0.0ms) rollback transaction
40340
+  (0.0ms) begin transaction
40341
+  (0.0ms) SAVEPOINT active_record_1
40342
+ 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"]]
40343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40344
+  (0.1ms) rollback transaction
40345
+  (0.0ms) begin transaction
40346
+  (0.0ms) SAVEPOINT active_record_1
40347
+ 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"]]
40348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40349
+  (0.0ms) SAVEPOINT active_record_1
40350
+ 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"]]
40351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40352
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40353
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40354
+  (0.1ms) rollback transaction
40355
+  (0.0ms) begin transaction
40356
+  (0.0ms) SAVEPOINT active_record_1
40357
+ 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"]]
40358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40359
+  (0.0ms) SAVEPOINT active_record_1
40360
+ 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"]]
40361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40362
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40363
+  (0.1ms) rollback transaction
40364
+  (0.0ms) begin transaction
40365
+  (0.0ms) SAVEPOINT active_record_1
40366
+ 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"]]
40367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40368
+  (0.0ms) SAVEPOINT active_record_1
40369
+ 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"]]
40370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40371
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40372
+  (0.1ms) rollback transaction
40373
+  (0.0ms) begin transaction
40374
+  (0.0ms) SAVEPOINT active_record_1
40375
+ 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"]]
40376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40377
+  (0.0ms) SAVEPOINT active_record_1
40378
+ 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"]]
40379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40380
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40381
+  (0.1ms) rollback transaction
40382
+  (0.0ms) begin transaction
40383
+  (0.0ms) SAVEPOINT active_record_1
40384
+ 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"]]
40385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40386
+  (0.0ms) SAVEPOINT active_record_1
40387
+ 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"]]
40388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40389
+ SQL (0.0ms) UPDATE "addresses" SET "global_registry_id" = '0a594356-3f1c-11e7-bba6-129bd0521531' WHERE "addresses"."id" = ? [["id", 1]]
40390
+  (0.1ms) rollback transaction
40391
+  (0.0ms) begin transaction
40392
+  (0.1ms) rollback transaction
40393
+  (0.0ms) begin transaction
40394
+  (0.0ms) SAVEPOINT active_record_1
40395
+ 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"]]
40396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40397
+  (0.0ms) SAVEPOINT active_record_1
40398
+ 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"]]
40399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40400
+  (0.0ms) SAVEPOINT active_record_1
40401
+ 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"]]
40402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40403
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40404
+  (0.1ms) rollback transaction
40405
+  (0.0ms) begin transaction
40406
+  (0.0ms) SAVEPOINT active_record_1
40407
+ 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"]]
40408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40409
+  (0.0ms) SAVEPOINT active_record_1
40410
+ 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"]]
40411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40412
+  (0.0ms) SAVEPOINT active_record_1
40413
+ 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"]]
40414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40415
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40416
+  (0.1ms) rollback transaction
40417
+  (0.1ms) begin transaction
40418
+  (0.0ms) SAVEPOINT active_record_1
40419
+ 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"]]
40420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40421
+  (0.0ms) SAVEPOINT active_record_1
40422
+ 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"]]
40423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40424
+  (0.0ms) SAVEPOINT active_record_1
40425
+ 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"]]
40426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40427
+ SQL (0.0ms) UPDATE "assignments" SET "global_registry_id" = '51a014a4-4252-11e7-944f-129bd0521531' WHERE "assignments"."id" = ? [["id", 1]]
40428
+  (0.1ms) rollback transaction
40429
+  (0.1ms) begin transaction
40430
+  (0.0ms) SAVEPOINT active_record_1
40431
+ 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"]]
40432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40433
+  (0.0ms) SAVEPOINT active_record_1
40434
+ 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"]]
40435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40436
+  (0.0ms) SAVEPOINT active_record_1
40437
+ 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"]]
40438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40439
+  (0.1ms) rollback transaction
40440
+  (0.0ms) begin transaction
40441
+  (0.1ms) SAVEPOINT active_record_1
40442
+ 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-19 15:27:11.564935"], ["updated_at", "2017-06-19 15:27:11.564935"]]
40443
+ 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-19"], ["created_at", "2017-06-19 15:27:11.565885"], ["updated_at", "2017-06-19 15:27:11.565885"]]
40444
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:27:11.564239"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:27:11.566563"], ["updated_at", "2017-06-19 15:27:11.566563"]]
40445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40446
+  (0.1ms) rollback transaction
40447
+  (0.0ms) begin transaction
40448
+  (0.1ms) SAVEPOINT active_record_1
40449
+ 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-19 15:27:11.573075"], ["updated_at", "2017-06-19 15:27:11.573075"]]
40450
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:27:11.574080"], ["updated_at", "2017-06-19 15:27:11.574080"]]
40451
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:27:11.572440"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:27:11.574774"], ["updated_at", "2017-06-19 15:27:11.574774"]]
40452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40453
+  (0.1ms) rollback transaction
40454
+  (0.0ms) begin transaction
40455
+  (0.1ms) SAVEPOINT active_record_1
40456
+ 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-19 15:27:11.580130"], ["updated_at", "2017-06-19 15:27:11.580130"]]
40457
+ SQL (0.1ms) INSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2017-06-19"], ["created_at", "2017-06-19 15:27:11.581044"], ["updated_at", "2017-06-19 15:27:11.581044"]]
40458
+ SQL (0.1ms) INSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["role", "leader"], ["hired_at", "2017-04-19 15:27:11.579468"], ["person_id", 1], ["organization_id", 1], ["created_at", "2017-06-19 15:27:11.581709"], ["updated_at", "2017-06-19 15:27:11.581709"]]
40459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40460
+  (0.1ms) rollback transaction
40461
+  (0.0ms) begin transaction
40462
+  (0.0ms) rollback transaction
40463
+  (0.0ms) begin transaction
40464
+  (0.0ms) rollback transaction
40465
+  (0.0ms) begin transaction
40466
+  (0.0ms) rollback transaction
40467
+  (0.0ms) begin transaction
40468
+  (0.0ms) SAVEPOINT active_record_1
40469
+ 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"]]
40470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40471
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 1]]
40472
+  (0.1ms) rollback transaction
40473
+  (0.0ms) begin transaction
40474
+  (0.0ms) SAVEPOINT active_record_1
40475
+ 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"]]
40476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40477
+  (0.0ms) SAVEPOINT active_record_1
40478
+ 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"]]
40479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40480
+  (0.1ms) rollback transaction
40481
+  (0.0ms) begin transaction
40482
+  (0.0ms) SAVEPOINT active_record_1
40483
+ 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"]]
40484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40485
+  (0.0ms) SAVEPOINT active_record_1
40486
+ 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"]]
40487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40488
+ SQL (0.0ms) UPDATE "organizations" SET "gr_id" = 'aebb4170-3f34-11e7-bba6-129bd0521531' WHERE "organizations"."id" = ? [["id", 2]]
40489
+  (0.1ms) rollback transaction
40490
+  (0.0ms) begin transaction
40491
+  (0.0ms) rollback transaction
40492
+  (0.0ms) begin transaction
40493
+  (0.0ms) rollback transaction
40494
+  (0.0ms) begin transaction
40495
+  (0.0ms) rollback transaction
40496
+  (0.0ms) begin transaction
40497
+  (0.0ms) SAVEPOINT active_record_1
40498
+ 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"]]
40499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40500
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40501
+  (0.1ms) rollback transaction
40502
+  (0.1ms) begin transaction
40503
+  (0.0ms) SAVEPOINT active_record_1
40504
+ 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"]]
40505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40506
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40507
+  (0.0ms) rollback transaction
40508
+  (0.0ms) begin transaction
40509
+  (0.0ms) SAVEPOINT active_record_1
40510
+ 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"]]
40511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40512
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40513
+  (0.1ms) rollback transaction
40514
+  (0.0ms) begin transaction
40515
+  (0.0ms) SAVEPOINT active_record_1
40516
+ 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"]]
40517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40518
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40519
+  (0.1ms) rollback transaction
40520
+  (0.0ms) begin transaction
40521
+  (0.0ms) SAVEPOINT active_record_1
40522
+ 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"]]
40523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40524
+  (0.1ms) rollback transaction
40525
+  (0.0ms) begin transaction
40526
+  (0.0ms) SAVEPOINT active_record_1
40527
+ 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"]]
40528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40529
+ SQL (0.0ms) UPDATE "people" SET "global_registry_id" = '22527d88-3cba-11e7-b876-129bd0521531' WHERE "people"."id" = ? [["id", 1]]
40530
+  (0.1ms) rollback transaction
40531
+  (0.1ms) begin transaction
40532
+  (0.1ms) rollback transaction
40533
+  (0.0ms) begin transaction
40534
+  (0.1ms) SAVEPOINT active_record_1
40535
+ 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-19 15:27:11.721221"], ["updated_at", "2017-06-19 15:27:11.721221"]]
40536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40537
+  (0.0ms) rollback transaction
40538
+  (0.0ms) begin transaction
40539
+  (0.1ms) SAVEPOINT active_record_1
40540
+ 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-19 15:27:11.724959"], ["updated_at", "2017-06-19 15:27:11.724959"]]
40541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40542
+  (0.1ms) rollback transaction
40543
+  (0.1ms) begin transaction
40544
+  (0.1ms) SAVEPOINT active_record_1
40545
+ 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-19 15:27:11.730872"], ["updated_at", "2017-06-19 15:27:11.730872"]]
40546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40547
+ SQL (0.1ms) UPDATE "people" SET "global_registry_mdm_id" = 'c81340b2-7e57-4978-b6b9-396f21bb0bb2' WHERE "people"."id" = ? [["id", 1]]
40548
+  (0.0ms) rollback transaction
40549
+  (0.0ms) begin transaction
40550
+  (0.0ms) rollback transaction
40551
+  (0.0ms) begin transaction
40552
+  (0.1ms) rollback transaction
40553
+  (0.0ms) begin transaction
40554
+  (0.1ms) rollback transaction
40555
+  (0.1ms) begin transaction
40556
+  (0.1ms) SAVEPOINT active_record_1
40557
+ 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-19 15:27:11.756284"], ["updated_at", "2017-06-19 15:27:11.756284"]]
40558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40559
+  (0.0ms) rollback transaction
40560
+  (0.0ms) begin transaction
40561
+  (0.1ms) SAVEPOINT active_record_1
40562
+ 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-19 15:27:11.760304"], ["updated_at", "2017-06-19 15:27:11.760304"]]
40563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40564
+  (0.1ms) rollback transaction
40565
+  (0.1ms) begin transaction
40566
+  (0.1ms) SAVEPOINT active_record_1
40567
+ SQL (0.2ms) INSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2017-06-19 15:27:11.765594"], ["updated_at", "2017-06-19 15:27:11.765594"]]
40568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40569
+  (0.0ms) rollback transaction
40570
+  (0.0ms) begin transaction
40571
+  (0.0ms) rollback transaction
40572
+  (0.0ms) begin transaction
40573
+  (0.1ms) SAVEPOINT active_record_1
40574
+ 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-19 15:27:11.771552"], ["updated_at", "2017-06-19 15:27:11.771552"]]
40575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40576
+  (0.0ms) rollback transaction
40577
+  (0.0ms) begin transaction
40578
+  (0.1ms) SAVEPOINT active_record_1
40579
+ 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-19 15:27:11.775365"], ["updated_at", "2017-06-19 15:27:11.775365"]]
40580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40581
+  (0.0ms) rollback transaction
40582
+  (0.1ms) begin transaction
40583
+  (0.1ms) SAVEPOINT active_record_1
40584
+ 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-19 15:27:11.780184"], ["updated_at", "2017-06-19 15:27:11.780184"]]
40585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40586
+  (0.0ms) rollback transaction
40587
+  (0.0ms) begin transaction
40588
+  (0.1ms) SAVEPOINT active_record_1
40589
+ 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-19 15:27:11.785202"], ["updated_at", "2017-06-19 15:27:11.785202"]]
40590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40591
+  (0.1ms) rollback transaction