global-registry-bindings 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/global_registry_bindings/version.rb +1 -1
- data/spec/internal/db/test.sqlite +0 -0
- data/spec/internal/log/test.log +1457 -0
- data/spec/spec_helper.rb +1 -8
- metadata +17 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 15ddd09951feb876e8ca7d28e5fb7b7807f2f433cbe0ad1288a8501b71161761
|
4
|
+
data.tar.gz: d8c752a2c69890db440aa43ee5fb1ac148da8999590fe20fde73933ec555df36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60e07a5233f2139077ca420a9c9c202a6be546823af6c6561d3079f304e478df1c7f034f1c90349762d77bcd13d934c3b6e0a1f3e4b3ddf37178f916a64fa16a
|
7
|
+
data.tar.gz: f9c98ceb0fa1e27302fc62c54e8bc1663c310443918abf3ed2cd735132cbc7b22ca4f04c41533d83454a64362d0c94d425efb802bcff7ccf2d8826d2e013ef3f
|
Binary file
|
@@ -0,0 +1,1457 @@
|
|
1
|
+
[1m[35m (2.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "people"[0m
|
4
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
5
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")[0m
|
6
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")[0m
|
7
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "addresses"[0m
|
8
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE 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(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
9
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")[0m
|
10
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "organizations"[0m
|
11
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
12
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")[0m
|
13
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")[0m
|
14
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "assignments"[0m
|
15
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
16
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")[0m
|
17
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")[0m
|
18
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")[0m
|
19
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "areas"[0m
|
20
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
21
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "countries"[0m
|
22
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
23
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "communities"[0m
|
24
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
25
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "foos"[0m
|
26
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
27
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
28
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
29
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
30
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
31
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
32
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
33
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-01-20 20:13:45.191581"], ["updated_at", "2021-01-20 20:13:45.191581"]]
|
34
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
35
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
36
|
+
[1m[35m (3.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
37
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
38
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "people"[0m
|
39
|
+
[1m[35m (2.2ms)[0m [1m[35mCREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
40
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")[0m
|
41
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")[0m
|
42
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "addresses"[0m
|
43
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE 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(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
44
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")[0m
|
45
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "organizations"[0m
|
46
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
47
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")[0m
|
48
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")[0m
|
49
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "assignments"[0m
|
50
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
51
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")[0m
|
52
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")[0m
|
53
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")[0m
|
54
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "areas"[0m
|
55
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
56
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "countries"[0m
|
57
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
58
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "communities"[0m
|
59
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
60
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "foos"[0m
|
61
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
62
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
63
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
64
|
+
[1m[35m (1.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
65
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
66
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
67
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
68
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:44:04.885400"], ["updated_at", "2021-01-21 19:44:04.885400"]]
|
69
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[36mcommit transaction[0m
|
70
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
71
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
72
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
73
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "people"[0m
|
74
|
+
[1m[35m (7.4ms)[0m [1m[35mCREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
75
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")[0m
|
76
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")[0m
|
77
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "addresses"[0m
|
78
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE 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(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
79
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")[0m
|
80
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "organizations"[0m
|
81
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
82
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")[0m
|
83
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")[0m
|
84
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "assignments"[0m
|
85
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
86
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")[0m
|
87
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")[0m
|
88
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")[0m
|
89
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "areas"[0m
|
90
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
91
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "countries"[0m
|
92
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
93
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "communities"[0m
|
94
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
95
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "foos"[0m
|
96
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
97
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
98
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
99
|
+
[1m[35m (1.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
100
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
101
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
102
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
103
|
+
[1m[36mActiveRecord::InternalMetadata Create (17.9ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:44:47.007038"], ["updated_at", "2021-01-21 19:44:47.007038"]]
|
104
|
+
[1m[36mTRANSACTION (1.6ms)[0m [1m[36mcommit transaction[0m
|
105
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
106
|
+
[1m[35m (2.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
107
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
108
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "people"[0m
|
109
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
110
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")[0m
|
111
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")[0m
|
112
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "addresses"[0m
|
113
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE 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(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
114
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")[0m
|
115
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "organizations"[0m
|
116
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
117
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")[0m
|
118
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")[0m
|
119
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "assignments"[0m
|
120
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
121
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")[0m
|
122
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")[0m
|
123
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")[0m
|
124
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "areas"[0m
|
125
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
126
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "countries"[0m
|
127
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
128
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "communities"[0m
|
129
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
130
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "foos"[0m
|
131
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
132
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
133
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
134
|
+
[1m[35m (1.7ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
135
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
136
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
137
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
138
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 19:55:14.029440"], ["updated_at", "2021-01-21 19:55:14.029440"]]
|
139
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
140
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
141
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
142
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
143
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
144
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
145
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
146
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
147
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
148
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
149
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
150
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
151
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
153
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
154
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
155
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
157
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
158
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
159
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
160
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
161
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
162
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
163
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
164
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
165
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
166
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
167
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
168
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
169
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
170
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
171
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
172
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
173
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
174
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.644532"], ["updated_at", "2021-01-21 19:55:15.644532"]]
|
175
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
176
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
177
|
+
[1m[36mOrganization Create (0.3ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.647109"], ["updated_at", "2021-01-21 19:55:15.647109"]]
|
178
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
179
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
180
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2020-11-21 19:55:15.650197"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.651023"], ["updated_at", "2021-01-21 19:55:15.651023"]]
|
181
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
182
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
183
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
184
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
185
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.656356"], ["updated_at", "2021-01-21 19:55:15.656356"]]
|
186
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
187
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
188
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.658659"], ["updated_at", "2021-01-21 19:55:15.658659"]]
|
189
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
190
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
191
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2020-11-21 19:55:15.660000"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.660282"], ["updated_at", "2021-01-21 19:55:15.660282"]]
|
192
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
193
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
194
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ?[0m [["role", "boss"], ["updated_at", "2021-01-21 19:55:15.662103"], ["id", 1]]
|
195
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
196
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
197
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
198
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
199
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.665971"], ["updated_at", "2021-01-21 19:55:15.665971"]]
|
200
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
201
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
202
|
+
[1m[36mOrganization Create (0.3ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.669207"], ["updated_at", "2021-01-21 19:55:15.669207"]]
|
203
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
204
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
205
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "abc"], ["role", "leader"], ["hired_at", "2020-11-21 19:55:15.671694"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 19:55:15.672102"], ["updated_at", "2021-01-21 19:55:15.672102"]]
|
206
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
207
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
208
|
+
[1m[36mAssignment Destroy (0.1ms)[0m [1m[31mDELETE FROM "assignments" WHERE "assignments"."id" = ?[0m [["id", 1]]
|
209
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
210
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
211
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
212
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
213
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.676787"], ["updated_at", "2021-01-21 19:55:15.676787"]]
|
214
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
215
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
216
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
217
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
218
|
+
[1m[36mArea Create (0.4ms)[0m [1m[32mINSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.688667"], ["updated_at", "2021-01-21 19:55:15.688667"]]
|
219
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["created_at", "2021-01-21 19:55:15.689912"], ["updated_at", "2021-01-21 19:55:15.689912"]]
|
220
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
221
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
223
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
224
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.693691"], ["updated_at", "2021-01-21 19:55:15.693691"]]
|
225
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 19:55:15.694765"], ["updated_at", "2021-01-21 19:55:15.694765"]]
|
226
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
227
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
228
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
229
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
230
|
+
[1m[36mOrganization Create (0.7ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.698261"], ["updated_at", "2021-01-21 19:55:15.698261"]]
|
231
|
+
[1m[36mArea Create (0.3ms)[0m [1m[32mINSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.700212"], ["updated_at", "2021-01-21 19:55:15.700212"]]
|
232
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["created_at", "2021-01-21 19:55:15.701469"], ["updated_at", "2021-01-21 19:55:15.701469"]]
|
233
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
234
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
235
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
236
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
237
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.706526"], ["updated_at", "2021-01-21 19:55:15.706526"]]
|
238
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
239
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
240
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 1]]
|
241
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
242
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
243
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
244
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
245
|
+
[1m[36mArea Create (0.3ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.710820"], ["updated_at", "2021-01-21 19:55:15.710820"]]
|
246
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
247
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
248
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 19:55:15.712667"], ["updated_at", "2021-01-21 19:55:15.712667"]]
|
249
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
250
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
251
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 1]]
|
252
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
253
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
254
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
255
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
256
|
+
[1m[36mOrganization Create (0.6ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.717646"], ["updated_at", "2021-01-21 19:55:15.717646"]]
|
257
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
258
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
259
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 19:55:15.720196"], ["updated_at", "2021-01-21 19:55:15.720196"]]
|
260
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
261
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
262
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 2]]
|
263
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
264
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
265
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
266
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
267
|
+
[1m[36mArea Create (0.3ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 19:55:15.725430"], ["updated_at", "2021-01-21 19:55:15.725430"]]
|
268
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
269
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
270
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 19:55:15.727271"], ["updated_at", "2021-01-21 19:55:15.727271"]]
|
271
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
272
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
273
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 19:55:15.729095"], ["updated_at", "2021-01-21 19:55:15.729095"]]
|
274
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
275
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
276
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 2]]
|
277
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
278
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
279
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
280
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
281
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.734034"], ["updated_at", "2021-01-21 19:55:15.734034"]]
|
282
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
283
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
284
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
285
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
286
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.743420"], ["updated_at", "2021-01-21 19:55:15.743420"]]
|
287
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2021-01-21 19:55:15.744786"], ["updated_at", "2021-01-21 19:55:15.744786"]]
|
288
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
289
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
290
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
291
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
292
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.750698"], ["updated_at", "2021-01-21 19:55:15.750698"]]
|
293
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.751975"], ["updated_at", "2021-01-21 19:55:15.751975"]]
|
294
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
295
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
296
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
297
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
298
|
+
[1m[36mCountry Create (0.5ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.756675"], ["updated_at", "2021-01-21 19:55:15.756675"]]
|
299
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.758169"], ["updated_at", "2021-01-21 19:55:15.758169"]]
|
300
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
301
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
302
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
303
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
304
|
+
[1m[36mNamespaced::Person Create (0.9ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.763884"], ["updated_at", "2021-01-21 19:55:15.763884"]]
|
305
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
306
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
307
|
+
[1m[36mNamespaced::Person Update (0.2ms)[0m [1m[33mUPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["first_name", "Anthony"], ["updated_at", "2021-01-21 19:55:15.767582"], ["id", 1]]
|
308
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
309
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
310
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
311
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
312
|
+
[1m[36mCountry Create (0.5ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.772146"], ["updated_at", "2021-01-21 19:55:15.772146"]]
|
313
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
314
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
315
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 19:55:15.774831"], ["updated_at", "2021-01-21 19:55:15.774831"]]
|
316
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
317
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
318
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["first_name", "Anthony"], ["updated_at", "2021-01-21 19:55:15.777316"], ["id", 1]]
|
319
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
320
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
321
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
322
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
323
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 19:55:15.780543"], ["updated_at", "2021-01-21 19:55:15.780543"]]
|
324
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
325
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
326
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.782839"], ["updated_at", "2021-01-21 19:55:15.782839"]]
|
327
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
328
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
329
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["country_of_residence_id", nil], ["updated_at", "2021-01-21 19:55:15.785497"], ["id", 1]]
|
330
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
331
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_residence_gr_id", nil], ["id", 1]]
|
332
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
333
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
334
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
335
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 19:55:15.789160"], ["updated_at", "2021-01-21 19:55:15.789160"]]
|
336
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
337
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
338
|
+
[1m[36mCountry Create (0.1ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Peru"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9963c"], ["created_at", "2021-01-21 19:55:15.790841"], ["updated_at", "2021-01-21 19:55:15.790841"]]
|
339
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
340
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
341
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.792364"], ["updated_at", "2021-01-21 19:55:15.792364"]]
|
342
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
343
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
344
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["country_of_service_id", 2], ["updated_at", "2021-01-21 19:55:15.795309"], ["id", 1]]
|
345
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
346
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_service_gr_id", nil], ["id", 1]]
|
347
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
348
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
349
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
350
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.824654"], ["updated_at", "2021-01-21 19:55:15.824654"]]
|
351
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
352
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
353
|
+
[1m[36mAddress Load (0.1ms)[0m [1m[34mSELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ?[0m [["person_id", 1]]
|
354
|
+
[1m[36mNamespaced::Person Destroy (0.1ms)[0m [1m[31mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 1]]
|
355
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
356
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
357
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
358
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
359
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 19:55:15.851718"], ["updated_at", "2021-01-21 19:55:15.851718"]]
|
360
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
361
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
362
|
+
[1m[36mCountry Create (0.1ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d99639"], ["created_at", "2021-01-21 19:55:15.853646"], ["updated_at", "2021-01-21 19:55:15.853646"]]
|
363
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
364
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
365
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 2], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 19:55:15.855673"], ["updated_at", "2021-01-21 19:55:15.855673"]]
|
366
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
367
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
368
|
+
[1m[36mAddress Load (0.1ms)[0m [1m[34mSELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ?[0m [["person_id", 1]]
|
369
|
+
[1m[36mNamespaced::Person Destroy (0.1ms)[0m [1m[31mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 1]]
|
370
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
371
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
372
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
373
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
374
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.863091"], ["updated_at", "2021-01-21 19:55:15.863091"]]
|
375
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
376
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
377
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
378
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
379
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.869404"], ["updated_at", "2021-01-21 19:55:15.869404"]]
|
380
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
381
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
382
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
383
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
384
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:15.875425"], ["updated_at", "2021-01-21 19:55:15.875425"]]
|
385
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
386
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
387
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
388
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
389
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
390
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
391
|
+
[1m[36mFoo Create (0.6ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.901921"], ["updated_at", "2021-01-21 19:55:15.901921"]]
|
392
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
393
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
394
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
395
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
396
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.910776"], ["updated_at", "2021-01-21 19:55:15.910776"]]
|
397
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
398
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
399
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
400
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
401
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.919323"], ["updated_at", "2021-01-21 19:55:15.919323"]]
|
402
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
403
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
404
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
405
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
406
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.927073"], ["updated_at", "2021-01-21 19:55:15.927073"]]
|
407
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
408
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
409
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
410
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
411
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.937493"], ["updated_at", "2021-01-21 19:55:15.937493"]]
|
412
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
413
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
414
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
415
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
416
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.946219"], ["updated_at", "2021-01-21 19:55:15.946219"]]
|
417
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
418
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
419
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
420
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
421
|
+
[1m[36mFoo Create (0.6ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.955100"], ["updated_at", "2021-01-21 19:55:15.955100"]]
|
422
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
423
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
424
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
425
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
426
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 19:55:15.963490"], ["updated_at", "2021-01-21 19:55:15.963490"]]
|
427
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
428
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
429
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
430
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
431
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
432
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
433
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
434
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
435
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.002842"], ["updated_at", "2021-01-21 19:55:16.002842"]]
|
436
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
437
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
438
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
439
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
440
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.008583"], ["updated_at", "2021-01-21 19:55:16.008583"]]
|
441
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
442
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
443
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
444
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
445
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.013096"], ["updated_at", "2021-01-21 19:55:16.013096"]]
|
446
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
447
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
448
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
449
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
450
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.018887"], ["updated_at", "2021-01-21 19:55:16.018887"]]
|
451
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
452
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
453
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
454
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
455
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.024508"], ["updated_at", "2021-01-21 19:55:16.024508"]]
|
456
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
457
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
458
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
459
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
460
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 19:55:16.046718"], ["updated_at", "2021-01-21 19:55:16.046718"]]
|
461
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
462
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_mdm_id" = ? WHERE "people"."id" = ?[0m [["global_registry_mdm_id", "c81340b2-7e57-4978-b6b9-396f21bb0bb2"], ["id", 1]]
|
463
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
464
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
465
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
466
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
467
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
468
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
469
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
470
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
471
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
472
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
473
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
474
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
475
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
476
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
477
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
478
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
479
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
480
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
481
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
482
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
483
|
+
[1m[36mOrganization Create (0.6ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
484
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
485
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ?[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 1]]
|
486
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
487
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
488
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
489
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
490
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
491
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
492
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
493
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
494
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
495
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
496
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
497
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
498
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
499
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
500
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
501
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
502
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ?[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 2]]
|
503
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
504
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
505
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
506
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
507
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
508
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
509
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
510
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
511
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
512
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
513
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
514
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
515
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
516
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
517
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
518
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
519
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
520
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
521
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
522
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
523
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
524
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
525
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
526
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
527
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
528
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
529
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
530
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
531
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
532
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
533
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
534
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
535
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
536
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
537
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
538
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
539
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
540
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
541
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
542
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
543
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
544
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
545
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
546
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
547
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
548
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
549
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
550
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
551
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
552
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
553
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
554
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
555
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
556
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
557
|
+
[1m[36mAddress Create (0.4ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
558
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
559
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
560
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
561
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
562
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
563
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
564
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
565
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
566
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
567
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
568
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
569
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
570
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
571
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
572
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
573
|
+
[1m[36mAddress Create (0.1ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
574
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
575
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
576
|
+
[1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
|
577
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
578
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
579
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
580
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
581
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
582
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
583
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
584
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
585
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
586
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
587
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
588
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
589
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
590
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
591
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
592
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
593
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
594
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
595
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
596
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
597
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
598
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
599
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
600
|
+
[1m[36mAddress Create (0.1ms)[0m [1m[32mINSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
601
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
602
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
603
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
604
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
605
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
606
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
607
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
608
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
609
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
610
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
611
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
612
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
613
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
614
|
+
[1m[36mCommunity Create (0.5ms)[0m [1m[32mINSERT INTO "communities" ("name", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Community"], ["infobase_id", 234], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
615
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
616
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "global_registry_id" = ? WHERE "communities"."id" = ?[0m [["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["id", 1]]
|
617
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
618
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
619
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
620
|
+
[1m[36mAssignment Create (0.5ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
621
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
622
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
623
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
624
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
625
|
+
[1m[36mAssignment Create (0.5ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
626
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
627
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
628
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
629
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
630
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
631
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
632
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
633
|
+
[1m[36mOrganization Create (0.3ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
634
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
635
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
636
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
637
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
638
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
639
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
640
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
641
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
642
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
643
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
644
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
645
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
646
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
647
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
648
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
649
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
650
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
651
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
652
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
653
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
654
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
655
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
656
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
657
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
658
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
659
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
660
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
661
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
662
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
663
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
664
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
665
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
666
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
667
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
668
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
669
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
670
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
671
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
672
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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"]]
|
673
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
674
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
675
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
676
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
677
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
678
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
679
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
680
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
681
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
682
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
683
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
684
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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"]]
|
685
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
686
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", nil], ["id", 1]]
|
687
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
688
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
689
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
690
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
691
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
692
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
693
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
694
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
695
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
696
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
697
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
698
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
699
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
700
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
701
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
702
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
703
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
704
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
705
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
706
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
707
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
708
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
709
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
710
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
711
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
712
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
713
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
714
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
715
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
716
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
717
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
718
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
719
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "assigned_by_gr_rel_id" = ? WHERE "assignments"."id" = ?[0m [["assigned_by_gr_rel_id", "0fd8b8b8-76c9-11e7-b15c-129bd0521531"], ["id", 1]]
|
720
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
721
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
722
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
723
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
724
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
725
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
726
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
727
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
728
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
729
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
730
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
731
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
732
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
733
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
734
|
+
[1m[36mArea Create (0.4ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0fdb70c5-f51e-4628-a1fe-caa37fae53cd"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
735
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
736
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
737
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["area_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
738
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
739
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "global_registry_area_id" = ? WHERE "organizations"."id" = ?[0m [["global_registry_area_id", "c99d7d7e-8b14-4fe6-9c11-e5359ee03637"], ["id", 1]]
|
740
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
741
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
742
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
743
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "0f9089a3-2b93-4de8-9b81-92be0261f325"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
744
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
745
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
746
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
747
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
748
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_service_gr_id", "420d2fd1-7a73-41ed-9d8f-5dc79b00a688"], ["id", 1]]
|
749
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
750
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
751
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
752
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
753
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
754
|
+
[1m[36mCountry Load (0.1ms)[0m [1m[34mSELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ?[0m [["id", 12345], ["LIMIT", 1]]
|
755
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
756
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
757
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
758
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "7cdaf399-d449-4008-8c6b-3c64a2b2730c"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
759
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
760
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
761
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
762
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
763
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_residence_gr_id", "a4c030ce-13f2-44f5-8131-4003eb21c0ae"], ["id", 1]]
|
764
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
765
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
766
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
767
|
+
[1m[36mCommunity Create (0.4ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
768
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
769
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
770
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
771
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
772
|
+
[1m[36mCommunity Create (0.4ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "infobase_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
773
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
774
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ?[0m [["infobase_gr_id", nil], ["id", 1]]
|
775
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
776
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
777
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
778
|
+
[1m[36mCommunity Create (0.4ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
779
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
780
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ?[0m [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
|
781
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
782
|
+
[1m[35m (2.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
783
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
784
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "people"[0m
|
785
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "global_registry_mdm_id" varchar, "global_registry_fingerprint" varchar, "first_name" varchar, "last_name" varchar, "guid" varchar, "country_of_service_id" integer, "country_of_residence_id" integer, "country_of_service_gr_id" varchar, "country_of_residence_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
786
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_service_id" ON "people" ("country_of_service_id")[0m
|
787
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE INDEX "index_people_on_country_of_residence_id" ON "people" ("country_of_residence_id")[0m
|
788
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "addresses"[0m
|
789
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE 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(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
790
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE INDEX "index_addresses_on_person_id" ON "addresses" ("person_id")[0m
|
791
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "organizations"[0m
|
792
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "organizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "gr_id" varchar, "name" varchar, "description" text, "start_date" date, "parent_id" integer, "area_id" integer, "global_registry_area_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
793
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_organizations_on_parent_id" ON "organizations" ("parent_id")[0m
|
794
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_organizations_on_area_id" ON "organizations" ("area_id")[0m
|
795
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "assignments"[0m
|
796
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "assignments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "assigned_by_gr_rel_id" varchar, "role" varchar, "hired_at" datetime, "person_id" integer, "organization_id" integer, "assigned_by_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
797
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_assignments_on_person_id" ON "assignments" ("person_id")[0m
|
798
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_assignments_on_organization_id" ON "assignments" ("organization_id")[0m
|
799
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_assignments_on_assigned_by_id" ON "assignments" ("assigned_by_id")[0m
|
800
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "areas"[0m
|
801
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "areas" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "area_name" varchar, "area_code" varchar, "is_active" boolean, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
802
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "countries"[0m
|
803
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
804
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "communities"[0m
|
805
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "communities" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "global_registry_id" varchar, "infobase_id" integer, "infobase_gr_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
806
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "foos"[0m
|
807
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "foos" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "global_registry_id" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
808
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
809
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
810
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (0)[0m
|
811
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
812
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
813
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
814
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-01-21 20:00:21.556762"], ["updated_at", "2021-01-21 20:00:21.556762"]]
|
815
|
+
[1m[35m (1.4ms)[0m [1m[36mcommit transaction[0m
|
816
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
817
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
818
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
819
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
820
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
821
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
822
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
823
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
824
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
825
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
826
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
827
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
828
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
829
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
830
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
831
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
832
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
833
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
834
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
835
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
836
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
837
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
838
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
839
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
840
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
841
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
842
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
843
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
844
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
845
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
846
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
847
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
848
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
849
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
850
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:22.985326"], ["updated_at", "2021-01-21 20:00:22.985326"]]
|
851
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
852
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
853
|
+
[1m[36mOrganization Create (0.3ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:22.989170"], ["updated_at", "2021-01-21 20:00:22.989170"]]
|
854
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
855
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
856
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2020-11-21 20:00:22.991911"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:22.992558"], ["updated_at", "2021-01-21 20:00:22.992558"]]
|
857
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
858
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
859
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
860
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
861
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:22.997880"], ["updated_at", "2021-01-21 20:00:22.997880"]]
|
862
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
863
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
864
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.000522"], ["updated_at", "2021-01-21 20:00:23.000522"]]
|
865
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
866
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
867
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2020-11-21 20:00:23.002067"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:23.002385"], ["updated_at", "2021-01-21 20:00:23.002385"]]
|
868
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
869
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
870
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "role" = ?, "updated_at" = ? WHERE "assignments"."id" = ?[0m [["role", "boss"], ["updated_at", "2021-01-21 20:00:23.004566"], ["id", 1]]
|
871
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
872
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
873
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
874
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
875
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.008048"], ["updated_at", "2021-01-21 20:00:23.008048"]]
|
876
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
877
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
878
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.010594"], ["updated_at", "2021-01-21 20:00:23.010594"]]
|
879
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
880
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
881
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "abc"], ["role", "leader"], ["hired_at", "2020-11-21 20:00:23.012499"], ["person_id", 1], ["organization_id", 1], ["created_at", "2021-01-21 20:00:23.012872"], ["updated_at", "2021-01-21 20:00:23.012872"]]
|
882
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
883
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
884
|
+
[1m[36mAssignment Destroy (0.1ms)[0m [1m[31mDELETE FROM "assignments" WHERE "assignments"."id" = ?[0m [["id", 1]]
|
885
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
886
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
887
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
888
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
889
|
+
[1m[36mOrganization Create (0.5ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.018125"], ["updated_at", "2021-01-21 20:00:23.018125"]]
|
890
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
891
|
+
[1m[35m (1.0ms)[0m [1m[31mrollback transaction[0m
|
892
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
893
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
894
|
+
[1m[36mArea Create (0.4ms)[0m [1m[32mINSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.031632"], ["updated_at", "2021-01-21 20:00:23.031632"]]
|
895
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["created_at", "2021-01-21 20:00:23.032929"], ["updated_at", "2021-01-21 20:00:23.032929"]]
|
896
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
897
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
898
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
899
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
900
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.037174"], ["updated_at", "2021-01-21 20:00:23.037174"]]
|
901
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 20:00:23.038384"], ["updated_at", "2021-01-21 20:00:23.038384"]]
|
902
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
903
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
904
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
905
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
906
|
+
[1m[36mOrganization Create (0.5ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.042342"], ["updated_at", "2021-01-21 20:00:23.042342"]]
|
907
|
+
[1m[36mArea Create (0.1ms)[0m [1m[32mINSERT INTO "areas" ("area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.043730"], ["updated_at", "2021-01-21 20:00:23.043730"]]
|
908
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["created_at", "2021-01-21 20:00:23.044365"], ["updated_at", "2021-01-21 20:00:23.044365"]]
|
909
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
910
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
911
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
912
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
913
|
+
[1m[36mOrganization Create (0.5ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.048875"], ["updated_at", "2021-01-21 20:00:23.048875"]]
|
914
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
915
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
916
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 1]]
|
917
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
918
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
919
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
920
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
921
|
+
[1m[36mArea Create (0.4ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.053806"], ["updated_at", "2021-01-21 20:00:23.053806"]]
|
922
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
923
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
924
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 20:00:23.056477"], ["updated_at", "2021-01-21 20:00:23.056477"]]
|
925
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
926
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
927
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 1]]
|
928
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
929
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
930
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
931
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
932
|
+
[1m[36mOrganization Create (0.5ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.063205"], ["updated_at", "2021-01-21 20:00:23.063205"]]
|
933
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
934
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
935
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["created_at", "2021-01-21 20:00:23.065803"], ["updated_at", "2021-01-21 20:00:23.065803"]]
|
936
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
937
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
938
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 2]]
|
939
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
940
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
941
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
942
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
943
|
+
[1m[36mArea Create (0.5ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "efg"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2021-01-21 20:00:23.069973"], ["updated_at", "2021-01-21 20:00:23.069973"]]
|
944
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
945
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
946
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["gr_id", "xyz"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["created_at", "2021-01-21 20:00:23.072387"], ["updated_at", "2021-01-21 20:00:23.072387"]]
|
947
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
948
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
949
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "parent_id", "area_id", "global_registry_area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "abc"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2021-01-21"], ["parent_id", 1], ["area_id", 1], ["global_registry_area_id", "ijk"], ["created_at", "2021-01-21 20:00:23.074429"], ["updated_at", "2021-01-21 20:00:23.074429"]]
|
950
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
951
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
952
|
+
[1m[36mOrganization Destroy (0.1ms)[0m [1m[31mDELETE FROM "organizations" WHERE "organizations"."id" = ?[0m [["id", 2]]
|
953
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
954
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
955
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
956
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
957
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.079653"], ["updated_at", "2021-01-21 20:00:23.079653"]]
|
958
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
959
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
960
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
961
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
962
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.090285"], ["updated_at", "2021-01-21 20:00:23.090285"]]
|
963
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2021-01-21 20:00:23.091649"], ["updated_at", "2021-01-21 20:00:23.091649"]]
|
964
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
965
|
+
[1m[35m (5.5ms)[0m [1m[31mrollback transaction[0m
|
966
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
967
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
968
|
+
[1m[36mCountry Create (0.8ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.104156"], ["updated_at", "2021-01-21 20:00:23.104156"]]
|
969
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.106261"], ["updated_at", "2021-01-21 20:00:23.106261"]]
|
970
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
971
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
972
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
973
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
974
|
+
[1m[36mCountry Create (0.6ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.111835"], ["updated_at", "2021-01-21 20:00:23.111835"]]
|
975
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.113615"], ["updated_at", "2021-01-21 20:00:23.113615"]]
|
976
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
977
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
978
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
979
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
980
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.118949"], ["updated_at", "2021-01-21 20:00:23.118949"]]
|
981
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
982
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
983
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["first_name", "Anthony"], ["updated_at", "2021-01-21 20:00:23.121771"], ["id", 1]]
|
984
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
985
|
+
[1m[35m (1.1ms)[0m [1m[31mrollback transaction[0m
|
986
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
987
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
988
|
+
[1m[36mCountry Create (0.8ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.127987"], ["updated_at", "2021-01-21 20:00:23.127987"]]
|
989
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
990
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
991
|
+
[1m[36mNamespaced::Person Create (0.8ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["created_at", "2021-01-21 20:00:23.132101"], ["updated_at", "2021-01-21 20:00:23.132101"]]
|
992
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
993
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
994
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "first_name" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["first_name", "Anthony"], ["updated_at", "2021-01-21 20:00:23.137351"], ["id", 1]]
|
995
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
996
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
997
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
998
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
999
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Sokovia"], ["created_at", "2021-01-21 20:00:23.141921"], ["updated_at", "2021-01-21 20:00:23.141921"]]
|
1000
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1001
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1002
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.144353"], ["updated_at", "2021-01-21 20:00:23.144353"]]
|
1003
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1004
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1005
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_id" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["country_of_residence_id", nil], ["updated_at", "2021-01-21 20:00:23.147614"], ["id", 1]]
|
1006
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1007
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_residence_gr_id", nil], ["id", 1]]
|
1008
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1009
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1010
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1011
|
+
[1m[36mCountry Create (0.5ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 20:00:23.153603"], ["updated_at", "2021-01-21 20:00:23.153603"]]
|
1012
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1013
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1014
|
+
[1m[36mCountry Create (0.1ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Peru"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9963c"], ["created_at", "2021-01-21 20:00:23.156420"], ["updated_at", "2021-01-21 20:00:23.156420"]]
|
1015
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1016
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1017
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.158303"], ["updated_at", "2021-01-21 20:00:23.158303"]]
|
1018
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1019
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1020
|
+
[1m[36mNamespaced::Person Update (0.2ms)[0m [1m[33mUPDATE "people" SET "country_of_service_id" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["country_of_service_id", 2], ["updated_at", "2021-01-21 20:00:23.162063"], ["id", 1]]
|
1021
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1022
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_service_gr_id", nil], ["id", 1]]
|
1023
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1024
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1025
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1026
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.190641"], ["updated_at", "2021-01-21 20:00:23.190641"]]
|
1027
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1028
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1029
|
+
[1m[36mAddress Load (0.1ms)[0m [1m[34mSELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ?[0m [["person_id", 1]]
|
1030
|
+
[1m[36mNamespaced::Person Destroy (0.1ms)[0m [1m[31mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 1]]
|
1031
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1032
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1033
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1034
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1035
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d9952f"], ["created_at", "2021-01-21 20:00:23.210697"], ["updated_at", "2021-01-21 20:00:23.210697"]]
|
1036
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1037
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1038
|
+
[1m[36mCountry Create (0.1ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "f078eb70-5ddd-4941-9b06-a39576d99639"], ["created_at", "2021-01-21 20:00:23.213004"], ["updated_at", "2021-01-21 20:00:23.213004"]]
|
1039
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1040
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1041
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "country_of_residence_id", "country_of_service_gr_id", "country_of_residence_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "dd555dbf-f3db-4158-a50c-50d3f26347e8"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 2], ["country_of_residence_id", 1], ["country_of_service_gr_id", "89f81f6e-7baf-44d9-8f3a-55bf7c652dcc"], ["country_of_residence_gr_id", "4fa555dd-a067-478e-8765-8faa9483cc56"], ["created_at", "2021-01-21 20:00:23.215614"], ["updated_at", "2021-01-21 20:00:23.215614"]]
|
1042
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1043
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1044
|
+
[1m[36mAddress Load (0.1ms)[0m [1m[34mSELECT "addresses".* FROM "addresses" WHERE "addresses"."person_id" = ?[0m [["person_id", 1]]
|
1045
|
+
[1m[36mNamespaced::Person Destroy (0.2ms)[0m [1m[31mDELETE FROM "people" WHERE "people"."id" = ?[0m [["id", 1]]
|
1046
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1047
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1048
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1049
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1050
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.224050"], ["updated_at", "2021-01-21 20:00:23.224050"]]
|
1051
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1052
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1053
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1054
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1055
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.227713"], ["updated_at", "2021-01-21 20:00:23.227713"]]
|
1056
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1057
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1058
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1059
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1060
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.233374"], ["updated_at", "2021-01-21 20:00:23.233374"]]
|
1061
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1062
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1063
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1064
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1065
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1066
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1067
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.260039"], ["updated_at", "2021-01-21 20:00:23.260039"]]
|
1068
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1069
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
1070
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1071
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1072
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.268619"], ["updated_at", "2021-01-21 20:00:23.268619"]]
|
1073
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1074
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1075
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1076
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1077
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.276803"], ["updated_at", "2021-01-21 20:00:23.276803"]]
|
1078
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1079
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
1080
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1081
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1082
|
+
[1m[36mFoo Create (0.6ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.287039"], ["updated_at", "2021-01-21 20:00:23.287039"]]
|
1083
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1084
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1085
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1086
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1087
|
+
[1m[36mFoo Create (0.9ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.298049"], ["updated_at", "2021-01-21 20:00:23.298049"]]
|
1088
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1089
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1090
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1091
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1092
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.308455"], ["updated_at", "2021-01-21 20:00:23.308455"]]
|
1093
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1094
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1095
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1096
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1097
|
+
[1m[36mFoo Create (0.5ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.317298"], ["updated_at", "2021-01-21 20:00:23.317298"]]
|
1098
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1099
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1100
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1101
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1102
|
+
[1m[36mFoo Create (0.4ms)[0m [1m[32mINSERT INTO "foos" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2021-01-21 20:00:23.326669"], ["updated_at", "2021-01-21 20:00:23.326669"]]
|
1103
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1104
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1105
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1106
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1107
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1108
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1109
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1110
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1111
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.366801"], ["updated_at", "2021-01-21 20:00:23.366801"]]
|
1112
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1113
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
1114
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1115
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1116
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.374410"], ["updated_at", "2021-01-21 20:00:23.374410"]]
|
1117
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1118
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1119
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1120
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1121
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.379460"], ["updated_at", "2021-01-21 20:00:23.379460"]]
|
1122
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1123
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1124
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1125
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1126
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.384875"], ["updated_at", "2021-01-21 20:00:23.384875"]]
|
1127
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1128
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1129
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1130
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1131
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.390679"], ["updated_at", "2021-01-21 20:00:23.390679"]]
|
1132
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1133
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1134
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1135
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1136
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2021-01-21 20:00:23.414044"], ["updated_at", "2021-01-21 20:00:23.414044"]]
|
1137
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1138
|
+
[1m[36mNamespaced::Person Update (0.2ms)[0m [1m[33mUPDATE "people" SET "global_registry_mdm_id" = ? WHERE "people"."id" = ?[0m [["global_registry_mdm_id", "c81340b2-7e57-4978-b6b9-396f21bb0bb2"], ["id", 1]]
|
1139
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
1140
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1141
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
1142
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1143
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1144
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1145
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1146
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1147
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1148
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1149
|
+
[1m[36mNamespaced::Person Create (0.8ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1150
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1151
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1152
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1153
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1154
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1155
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1156
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1157
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1158
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1159
|
+
[1m[36mOrganization Create (0.5ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1160
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1161
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ?[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 1]]
|
1162
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
1163
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1164
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1165
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1166
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1167
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1168
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1169
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1170
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
1171
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1172
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1173
|
+
[1m[36mOrganization Create (0.4ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1174
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1175
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1176
|
+
[1m[36mOrganization Create (0.1ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1177
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1178
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "gr_id" = ? WHERE "organizations"."id" = ?[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["id", 2]]
|
1179
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
1180
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1181
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1182
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1183
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1184
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
1185
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1186
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
1187
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1188
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1189
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1190
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1191
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
1192
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1193
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1194
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1195
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1196
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1197
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1198
|
+
[1m[36mNamespaced::Person Update (0.2ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
1199
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1200
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1201
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1202
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1203
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1204
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1205
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
1206
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1207
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1209
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1210
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1211
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1212
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1213
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1214
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1215
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1216
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1217
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1218
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_id" = ? WHERE "people"."id" = ?[0m [["global_registry_id", "22527d88-3cba-11e7-b876-129bd0521531"], ["id", 1]]
|
1219
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "global_registry_fingerprint" = ? WHERE "people"."id" = ?[0m [["global_registry_fingerprint", "4c671c203b5dd19cdc1920ba5434cf64"], ["id", 1]]
|
1220
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
1221
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1222
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1223
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1224
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1225
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1226
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1227
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1228
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "global_registry_fingerprint", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "f8d20318-2ff2-4a98-a5eb-e9d840508bf1"], ["global_registry_fingerprint", "abc123"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1229
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1230
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1231
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1232
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1233
|
+
[1m[36mAddress Create (0.8ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1234
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1235
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1236
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1237
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1238
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1239
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1240
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1241
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1242
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1243
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
1244
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1245
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1246
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1247
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1248
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1249
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1250
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1251
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
1252
|
+
[1m[35m (6.1ms)[0m [1m[31mrollback transaction[0m
|
1253
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1254
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1255
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1256
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1257
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1258
|
+
[1m[36mAddress Create (0.1ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1259
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1260
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
1261
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
1262
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1263
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1264
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1265
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1266
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1267
|
+
[1m[36mAddress Create (0.1ms)[0m [1m[32mINSERT INTO "addresses" ("address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1268
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1269
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
1270
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1271
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1272
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1273
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1274
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1275
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1276
|
+
[1m[36mAddress Create (0.1ms)[0m [1m[32mINSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1277
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1278
|
+
[1m[36mAddress Update (0.1ms)[0m [1m[33mUPDATE "addresses" SET "global_registry_id" = ? WHERE "addresses"."id" = ?[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["id", 1]]
|
1279
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1280
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1281
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1282
|
+
[1m[36mNamespaced::Person Create (0.6ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1283
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1284
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1285
|
+
[1m[36mAddress Create (0.2ms)[0m [1m[32mINSERT INTO "addresses" ("global_registry_id", "address1", "zip", "primary", "person_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0a594356-3f1c-11e7-bba6-129bd0521531"], ["address1", "10880 Malibu Point"], ["zip", "90265"], ["primary", 1], ["person_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1286
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1287
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1288
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1289
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1290
|
+
[1m[36mCommunity Create (0.7ms)[0m [1m[32mINSERT INTO "communities" ("name", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Community"], ["infobase_id", 234], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1291
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1292
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "global_registry_id" = ? WHERE "communities"."id" = ?[0m [["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["id", 1]]
|
1293
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1294
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1295
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1296
|
+
[1m[36mAssignment Create (0.5ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1297
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1298
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1299
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1300
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1301
|
+
[1m[36mAssignment Create (0.5ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1302
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1303
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1304
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1305
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1306
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1307
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1308
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1309
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1310
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1311
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1312
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1313
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1314
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
1315
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1316
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1317
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1318
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1319
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1320
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1321
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1322
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1323
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1324
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1325
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1326
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
1327
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1328
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1329
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1330
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1331
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1332
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1333
|
+
[1m[36mOrganization Create (0.3ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1334
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1335
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1336
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1337
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1338
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
1339
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1340
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1341
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1342
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1343
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1344
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1345
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1346
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1347
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1348
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1349
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1350
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["id", 1]]
|
1351
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1352
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1353
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1354
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1355
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1356
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1357
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1358
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1359
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1360
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1361
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1362
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "global_registry_id" = ? WHERE "assignments"."id" = ?[0m [["global_registry_id", nil], ["id", 1]]
|
1363
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1364
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1365
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1366
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1367
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1368
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1369
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1370
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1371
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1372
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1373
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1374
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1375
|
+
[1m[36mAssignment Create (0.3ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1376
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1377
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
1378
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1379
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1380
|
+
[1m[36mNamespaced::Person Create (0.5ms)[0m [1m[32mINSERT INTO "people" ("first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1381
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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"]]
|
1382
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1383
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1384
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
1385
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1386
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1387
|
+
[1m[36mNamespaced::Person Create (0.7ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1388
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1389
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1390
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1391
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1392
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1393
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("global_registry_id", "role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "51a014a4-4252-11e7-944f-129bd0521531"], ["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1394
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1395
|
+
[1m[36mAssignment Update (0.1ms)[0m [1m[33mUPDATE "assignments" SET "assigned_by_gr_rel_id" = ? WHERE "assignments"."id" = ?[0m [["assigned_by_gr_rel_id", "0fd8b8b8-76c9-11e7-b15c-129bd0521531"], ["id", 1]]
|
1396
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
1397
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1398
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1399
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1400
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1401
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1402
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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"]]
|
1403
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1404
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1405
|
+
[1m[36mAssignment Create (0.2ms)[0m [1m[32mINSERT INTO "assignments" ("role", "hired_at", "person_id", "organization_id", "assigned_by_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["role", "leader"], ["hired_at", "2000-12-03 00:00:00"], ["person_id", 1], ["organization_id", 1], ["assigned_by_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1406
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1407
|
+
[1m[35m (5.8ms)[0m [1m[31mrollback transaction[0m
|
1408
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1409
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1410
|
+
[1m[36mArea Create (0.5ms)[0m [1m[32mINSERT INTO "areas" ("global_registry_id", "area_name", "area_code", "is_active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "0fdb70c5-f51e-4628-a1fe-caa37fae53cd"], ["area_name", "Best Area"], ["area_code", "BEST"], ["is_active", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1411
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1412
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1413
|
+
[1m[36mOrganization Create (0.2ms)[0m [1m[32mINSERT INTO "organizations" ("gr_id", "name", "description", "start_date", "area_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["gr_id", "aebb4170-3f34-11e7-bba6-129bd0521531"], ["name", "Organization"], ["description", "Fancy Organization"], ["start_date", "2001-02-03"], ["area_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1414
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1415
|
+
[1m[36mOrganization Update (0.1ms)[0m [1m[33mUPDATE "organizations" SET "global_registry_area_id" = ? WHERE "organizations"."id" = ?[0m [["global_registry_area_id", "c99d7d7e-8b14-4fe6-9c11-e5359ee03637"], ["id", 1]]
|
1416
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1417
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1418
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1419
|
+
[1m[36mCountry Create (0.3ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "0f9089a3-2b93-4de8-9b81-92be0261f325"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1420
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1421
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1422
|
+
[1m[36mNamespaced::Person Create (0.1ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1423
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1424
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_service_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_service_gr_id", "420d2fd1-7a73-41ed-9d8f-5dc79b00a688"], ["id", 1]]
|
1425
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1426
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1427
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1428
|
+
[1m[36mNamespaced::Person Create (0.4ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_service_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_service_id", 12345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1429
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1430
|
+
[1m[36mCountry Load (0.1ms)[0m [1m[34mSELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT ?[0m [["id", 12345], ["LIMIT", 1]]
|
1431
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1432
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1433
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1434
|
+
[1m[36mCountry Create (0.4ms)[0m [1m[32mINSERT INTO "countries" ("name", "global_registry_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Sokovia"], ["global_registry_id", "7cdaf399-d449-4008-8c6b-3c64a2b2730c"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1435
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1436
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1437
|
+
[1m[36mNamespaced::Person Create (0.2ms)[0m [1m[32mINSERT INTO "people" ("global_registry_id", "first_name", "last_name", "guid", "country_of_residence_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["global_registry_id", "2f0c62f1-5738-4860-88bd-5706fb801d7b"], ["first_name", "Tony"], ["last_name", "Stark"], ["guid", "98711710-acb5-4a41-ba51-e0fc56644b53"], ["country_of_residence_id", 1], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1438
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1439
|
+
[1m[36mNamespaced::Person Update (0.1ms)[0m [1m[33mUPDATE "people" SET "country_of_residence_gr_id" = ? WHERE "people"."id" = ?[0m [["country_of_residence_gr_id", "a4c030ce-13f2-44f5-8131-4003eb21c0ae"], ["id", 1]]
|
1440
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1441
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1442
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1443
|
+
[1m[36mCommunity Create (0.8ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1444
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1445
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1446
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1447
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1448
|
+
[1m[36mCommunity Create (0.4ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "infobase_gr_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1449
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1450
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ?[0m [["infobase_gr_id", nil], ["id", 1]]
|
1451
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
1452
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1453
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
1454
|
+
[1m[36mCommunity Create (0.4ms)[0m [1m[32mINSERT INTO "communities" ("name", "global_registry_id", "infobase_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Community"], ["global_registry_id", "6133f6fe-c63a-425a-bb46-68917c689723"], ["infobase_id", 2345], ["created_at", "2001-02-03 00:00:00"], ["updated_at", "2001-02-03 00:00:00"]]
|
1455
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
1456
|
+
[1m[36mCommunity Update (0.1ms)[0m [1m[33mUPDATE "communities" SET "infobase_gr_id" = ? WHERE "communities"."id" = ?[0m [["infobase_gr_id", "ee40f9ed-d625-405b-8ce6-aec821611ec6"], ["id", 1]]
|
1457
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|