vault-rails 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +2 -0
  3. data/lib/vault/encrypted_model.rb +3 -0
  4. data/lib/vault/rails/configurable.rb +3 -0
  5. data/lib/vault/rails/errors.rb +3 -0
  6. data/lib/vault/rails/json_serializer.rb +3 -0
  7. data/lib/vault/rails/version.rb +4 -1
  8. data/lib/vault/rails.rb +3 -0
  9. data/spec/dummy/app/models/lazy_person.rb +3 -0
  10. data/spec/dummy/app/models/lazy_single_person.rb +3 -0
  11. data/spec/dummy/app/models/person.rb +3 -0
  12. data/spec/dummy/config/application.rb +3 -0
  13. data/spec/dummy/config/boot.rb +3 -0
  14. data/spec/dummy/config/database.yml +7 -5
  15. data/spec/dummy/config/environment.rb +3 -0
  16. data/spec/dummy/config/environments/development.rb +3 -0
  17. data/spec/dummy/config/environments/test.rb +3 -0
  18. data/spec/dummy/config/initializers/assets.rb +3 -0
  19. data/spec/dummy/config/initializers/backtrace_silencers.rb +3 -0
  20. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  21. data/spec/dummy/config/initializers/filter_parameter_logging.rb +3 -0
  22. data/spec/dummy/config/initializers/inflections.rb +3 -0
  23. data/spec/dummy/config/initializers/mime_types.rb +3 -0
  24. data/spec/dummy/config/initializers/session_store.rb +3 -0
  25. data/spec/dummy/config/initializers/vault.rb +3 -0
  26. data/spec/dummy/config/initializers/wrap_parameters.rb +3 -0
  27. data/spec/dummy/config/locales/en.yml +3 -0
  28. data/spec/dummy/config/routes.rb +3 -0
  29. data/spec/dummy/config/secrets.yml +3 -0
  30. data/spec/dummy/config.ru +3 -0
  31. data/spec/dummy/db/development.sqlite3 +0 -0
  32. data/spec/dummy/db/migrate/20150428220101_create_people.rb +3 -0
  33. data/spec/dummy/db/schema.rb +3 -0
  34. data/spec/dummy/db/test.sqlite3 +0 -0
  35. data/spec/dummy/lib/binary_serializer.rb +3 -0
  36. data/spec/dummy/log/development.log +1637 -0
  37. data/spec/dummy/log/test.log +400 -0
  38. data/spec/dummy/public/404.html +5 -0
  39. data/spec/dummy/public/422.html +5 -0
  40. data/spec/dummy/public/500.html +5 -0
  41. data/spec/integration/rails_spec.rb +5 -2
  42. data/spec/lib/vault/rails/json_serializer_spec.rb +3 -0
  43. data/spec/spec_helper.rb +3 -0
  44. data/spec/support/vault_server.rb +38 -10
  45. data/spec/unit/encrypted_model_spec.rb +3 -0
  46. data/spec/unit/rails/configurable_spec.rb +3 -0
  47. data/spec/unit/rails_spec.rb +3 -0
  48. data/spec/unit/vault/rails_spec.rb +3 -0
  49. metadata +17 -9
@@ -0,0 +1,1637 @@
1
+  (0.7ms) SELECT sqlite_version(*)
2
+  (0.0ms) SELECT sqlite_version(*)
3
+  (0.4ms) SELECT sqlite_version(*)
4
+  (0.0ms) SELECT sqlite_version(*)
5
+  (0.0ms) DROP TABLE IF EXISTS "people"
6
+  (1.0ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
8
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
9
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
10
+  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
11
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
12
+  (0.0ms) begin transaction
13
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-04-24 02:50:59.234475"], ["updated_at", "2023-04-24 02:50:59.234475"]]
14
+  (0.6ms) commit transaction
15
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
16
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
17
+  (0.0ms) begin transaction
18
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "4e27703c7d695bc1c161c509b18ccde03e9ab5b6"], ["created_at", "2023-04-24 02:50:59.271667"], ["updated_at", "2023-04-24 02:50:59.271667"]]
19
+  (0.7ms) commit transaction
20
+  (0.0ms) SELECT sqlite_version(*)
21
+  (0.0ms) DROP TABLE IF EXISTS "people"
22
+  (0.7ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
23
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
24
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
25
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
26
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
27
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
28
+  (0.0ms) begin transaction
29
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-04-24 02:50:59.276922"], ["updated_at", "2023-04-24 02:50:59.276922"]]
30
+  (0.5ms) commit transaction
31
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
32
+  (0.0ms) begin transaction
33
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-04-24 02:50:59.277953"], ["key", "environment"]]
34
+  (0.3ms) commit transaction
35
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
36
+  (0.0ms) begin transaction
37
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "4e27703c7d695bc1c161c509b18ccde03e9ab5b6"], ["created_at", "2023-04-24 02:50:59.278871"], ["updated_at", "2023-04-24 02:50:59.278871"]]
38
+  (0.4ms) commit transaction
39
+  (0.4ms) SELECT sqlite_version(*)
40
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
41
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
42
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
43
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
44
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
45
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
46
+  (0.0ms) SELECT sqlite_version(*)
47
+  (0.0ms) SELECT sqlite_version(*)
48
+  (0.0ms) DROP TABLE IF EXISTS "people"
49
+  (1.2ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
50
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
51
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
52
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
53
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
54
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
55
+  (0.0ms) begin transaction
56
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-04-24 02:51:05.520211"], ["updated_at", "2023-04-24 02:51:05.520211"]]
57
+  (0.6ms) commit transaction
58
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
59
+  (0.0ms) begin transaction
60
+ ActiveRecord::InternalMetadata Update (0.2ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-04-24 02:51:05.521545"], ["key", "environment"]]
61
+  (0.4ms) commit transaction
62
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
63
+  (0.0ms) begin transaction
64
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "4e27703c7d695bc1c161c509b18ccde03e9ab5b6"], ["created_at", "2023-04-24 02:51:05.523792"], ["updated_at", "2023-04-24 02:51:05.523792"]]
65
+  (0.4ms) commit transaction
66
+  (0.4ms) SELECT sqlite_version(*)
67
+  (0.0ms) begin transaction
68
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.566662"], ["updated_at", "2023-04-24 02:51:11.566662"]]
69
+  (0.6ms) commit transaction
70
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
71
+  (0.0ms) begin transaction
72
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.574002"], ["updated_at", "2023-04-24 02:51:11.574002"]]
73
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:jrM0a4Wn5QMy0T6/0d4J+JhZH40AbRDhBGpevQwaDuF2pEJZCjdEflQ="], ["id", 2]]
74
+  (0.7ms) commit transaction
75
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
76
+  (0.0ms) begin transaction
77
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.579633"], ["updated_at", "2023-04-24 02:51:11.579633"]]
78
+  (0.6ms) commit transaction
79
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
80
+  (0.0ms) begin transaction
81
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.582167"], ["updated_at", "2023-04-24 02:51:11.582167"]]
82
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:ayCnTqBlNMxNygdudRiPyfQJkKclUG0JkscHf+SJ9bdqkLZloLPD1Zg="], ["id", 4]]
83
+  (0.9ms) commit transaction
84
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]]
85
+  (0.0ms) begin transaction
86
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.594438"], ["updated_at", "2023-04-24 02:51:11.594438"]]
87
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:c/UZQ9OPT+ldQ+OblUHONMd9ddmjv9fwHQbV0X0jjpUrPj/oXclL"], ["id", 5]]
88
+  (0.5ms) commit transaction
89
+  (0.0ms) begin transaction
90
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.596853"], ["updated_at", "2023-04-24 02:51:11.596853"]]
91
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:/DU7ojNxn3e7GHVrNo+FnAA5WbfcljUSVxcq/IQTVjGx9CBOV33R"], ["id", 6]]
92
+  (0.6ms) commit transaction
93
+  (0.0ms) begin transaction
94
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.599578"], ["updated_at", "2023-04-24 02:51:11.599578"]]
95
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:oQrWEItJlfOHWdRYI5z1Un4JgfMZuAxyMW56dfl3GRJsC2MftG9d"], ["id", 7]]
96
+  (0.5ms) commit transaction
97
+  (0.0ms) begin transaction
98
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.601556"], ["id", 7]]
99
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 7]]
100
+  (0.4ms) commit transaction
101
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
102
+  (0.0ms) begin transaction
103
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.603461"], ["updated_at", "2023-04-24 02:51:11.603461"]]
104
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:e4poRJIvAGyuxacjXhLcsKRDdZ4fNnsYj4GLkC7eJgel0HHpslGg"], ["id", 8]]
105
+  (0.5ms) commit transaction
106
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
107
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
108
+  (0.0ms) begin transaction
109
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.606684"], ["updated_at", "2023-04-24 02:51:11.606684"]]
110
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:La6aVRzDwv0nWU7iM7XpWAJ7eSV8vhOecZDmtd230SVerK+YEEKS"], ["id", 9]]
111
+  (0.7ms) commit transaction
112
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]]
113
+  (0.0ms) begin transaction
114
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.609661"], ["updated_at", "2023-04-24 02:51:11.609661"]]
115
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:00jZ62EFp5CUzv6/rxrYUnJYQweDQlbuHaV9b8IpsaD1QmovFcc4"], ["id", 10]]
116
+  (0.6ms) commit transaction
117
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
118
+  (0.0ms) begin transaction
119
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.612400"], ["id", 10]]
120
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 10]]
121
+  (0.4ms) commit transaction
122
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
123
+  (0.0ms) begin transaction
124
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.614251"], ["updated_at", "2023-04-24 02:51:11.614251"]]
125
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:rOSuQuEWNHPWBmmHsgqhNFAnMbwuqguePKFF3yVW05fy+uICgCUe"], ["id", 11]]
126
+  (0.5ms) commit transaction
127
+  (0.0ms) begin transaction
128
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.616213"], ["id", 11]]
129
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 11]]
130
+  (0.8ms) commit transaction
131
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]]
132
+  (0.0ms) begin transaction
133
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.618421"], ["updated_at", "2023-04-24 02:51:11.618421"]]
134
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:GbLiHhLhaTKklN3Hx64BfJrGaYig/bTbuWsEBG0JC1pk37WUf/O3"], ["id", 12]]
135
+  (0.6ms) commit transaction
136
+  (0.0ms) begin transaction
137
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.620745"], ["updated_at", "2023-04-24 02:51:11.620745"]]
138
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:LrcIfeKf8CURb2PWnz1EKqPhVE7XcjePGmb/JMBFmFMBAsXoqzO6"], ["id", 13]]
139
+  (0.6ms) commit transaction
140
+  (0.0ms) begin transaction
141
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.623218"], ["updated_at", "2023-04-24 02:51:11.623218"]]
142
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:rNDBgu6SOwhZ6qD/eg5NVnvYSusWybwjndFHWMO0gH6JyXP4ssFg"], ["id", 14]]
143
+  (0.6ms) commit transaction
144
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]]
145
+  (0.0ms) begin transaction
146
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.626976"], ["updated_at", "2023-04-24 02:51:11.626976"]]
147
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:k4gzykJOmNGZ7Jpgjk3cumuzQf3Atg0S3crn8p3P06GG7rCsBjg6"], ["id", 15]]
148
+  (0.6ms) commit transaction
149
+  (0.0ms) begin transaction
150
+ LazyPerson Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 15]]
151
+  (0.4ms) commit transaction
152
+  (0.0ms) begin transaction
153
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.630215"], ["updated_at", "2023-04-24 02:51:11.630215"]]
154
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:aipfjuKUMtHEDCsuE6uH+7eR0/1k+kJReqIgCJm1sME6yWdoLSlL7g=="], ["id", 16]]
155
+  (0.7ms) commit transaction
156
+  (0.0ms) begin transaction
157
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.632817"], ["updated_at", "2023-04-24 02:51:11.632817"]]
158
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:efIJyBiWGRpWdlbZCdzlJR9e/Lt0jLgYGmhATB9KHoJK5NlG4YLf"], ["id", 17]]
159
+  (0.5ms) commit transaction
160
+  (0.0ms) begin transaction
161
+ LazyPerson Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:51:11.640144"], ["id", 17]]
162
+  (0.3ms) commit transaction
163
+  (0.0ms) begin transaction
164
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.643472"], ["updated_at", "2023-04-24 02:51:11.643472"]]
165
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:xkcflR4Apm2dk95OmT8Z327dYvSdSERh/hOb5BMup/3v3ZFe3QGP3g=="], ["id", 18]]
166
+  (0.6ms) commit transaction
167
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]]
168
+  (0.0ms) begin transaction
169
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.648002"], ["updated_at", "2023-04-24 02:51:11.648002"]]
170
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:mgjamb9yza2JO+8a8DezMCY70fWu0fo4IdL0hJgTQpjXpkTmWRSkfg=="], ["id", 19]]
171
+  (0.4ms) commit transaction
172
+  (0.0ms) begin transaction
173
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.650327"], ["updated_at", "2023-04-24 02:51:11.650327"]]
174
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:WrUM73Kd1g1mTx4UV+5lL8EPBcHs8OknjMGKT4pAdkR33cgrdkUCsA=="], ["id", 20]]
175
+  (0.4ms) commit transaction
176
+  (0.0ms) begin transaction
177
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.652314"], ["id", 20]]
178
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", ""], ["id", 20]]
179
+  (0.3ms) commit transaction
180
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 20], ["LIMIT", 1]]
181
+  (0.0ms) begin transaction
182
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.654661"], ["updated_at", "2023-04-24 02:51:11.654661"]]
183
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:iLFT7xdRsPZDhT9o7fIG4U79wHOoEDRzkSUzZdIDlQoOeN/nG5ByGQ=="], ["id", 21]]
184
+  (0.5ms) commit transaction
185
+  (0.0ms) begin transaction
186
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.659585"], ["updated_at", "2023-04-24 02:51:11.659585"]]
187
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:kbqsYj38QN//pgHmA38BZdJLs72JShdduVgGssbH5G4liSm1v9kYYw=="], ["id", 22]]
188
+  (0.6ms) commit transaction
189
+  (0.0ms) begin transaction
190
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.661879"], ["id", 22]]
191
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", nil], ["id", 22]]
192
+  (0.8ms) commit transaction
193
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 22], ["LIMIT", 1]]
194
+  (0.0ms) begin transaction
195
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.666508"], ["updated_at", "2023-04-24 02:51:11.666508"]]
196
+ Person Update (0.0ms) UPDATE "people" SET "business_card_encrypted" = ? WHERE "people"."id" = ? [["business_card_encrypted", "vault:v1:VeqTYOGkYVQq2LvDV+jVHTg1WTvAh0SYugRoMmn57qnRSJmal3OdVmjexWjCYGWD7MmeuBSYwStCTUEo"], ["id", 23]]
197
+  (0.7ms) commit transaction
198
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]]
199
+  (0.0ms) begin transaction
200
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.671332"], ["updated_at", "2023-04-24 02:51:11.671332"]]
201
+ Person Update (0.0ms) UPDATE "people" SET "context_symbol_encrypted" = ? WHERE "people"."id" = ? [["context_symbol_encrypted", "vault:v1:EW95L9UeT1ooVRLxvYoKwNzfEyl/sVn4Dcor+dVjka2+WA=="], ["id", 24]]
202
+  (0.5ms) commit transaction
203
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]]
204
+  (0.0ms) begin transaction
205
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.681948"], ["updated_at", "2023-04-24 02:51:11.681948"]]
206
+ Person Update (0.0ms) UPDATE "people" SET "context_string_encrypted" = ? WHERE "people"."id" = ? [["context_string_encrypted", "vault:v1:pgS2Oj17+iIrP3VcjRaCm50N+JkMXj85alEMo3n7/lsrFg=="], ["id", 25]]
207
+  (0.4ms) commit transaction
208
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]]
209
+  (0.0ms) begin transaction
210
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.687546"], ["updated_at", "2023-04-24 02:51:11.687546"]]
211
+ Person Update (0.0ms) UPDATE "people" SET "context_proc_encrypted" = ? WHERE "people"."id" = ? [["context_proc_encrypted", "vault:v1:ElG0NLzFMA3/XB+vfqW+RCygzt08EYWXm0eJ+/iYHP8yiw=="], ["id", 26]]
212
+  (0.6ms) commit transaction
213
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]]
214
+  (0.0ms) begin transaction
215
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.692916"], ["updated_at", "2023-04-24 02:51:11.692916"]]
216
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:3sso9+UcpQDdFSS2XfdRM7KfN5CY450R23foVKTzPAzBkTfRhla/LA=="], ["id", 27]]
217
+  (0.5ms) commit transaction
218
+  (0.0ms) begin transaction
219
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.695214"], ["updated_at", "2023-04-24 02:51:11.695214"]]
220
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:gImyiZ0u+LnoS510JcQo1VAuMEAIKnM3FrDkBtpiZnBuMR5sXbCv"], ["id", 28]]
221
+  (0.4ms) commit transaction
222
+  (0.0ms) begin transaction
223
+ Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 28]]
224
+  (0.3ms) commit transaction
225
+  (0.0ms) begin transaction
226
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.698063"], ["updated_at", "2023-04-24 02:51:11.698063"]]
227
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:6t9d/T1elT+2Tph3FL1FuidLgGeTTYg57NKBpgB3HSSnk3COLyrE"], ["id", 29]]
228
+  (0.8ms) commit transaction
229
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]]
230
+  (0.0ms) begin transaction
231
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.701765"], ["id", 29]]
232
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 29]]
233
+  (0.4ms) commit transaction
234
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]]
235
+  (0.0ms) begin transaction
236
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.703956"], ["updated_at", "2023-04-24 02:51:11.703956"]]
237
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:C8/99bt5aWw6kWVp1IN0/nFb8ZT9hgV7Q9ysWTy0mHxf6JJxYB+6"], ["id", 30]]
238
+  (0.5ms) commit transaction
239
+  (0.0ms) begin transaction
240
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.705949"], ["id", 30]]
241
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 30]]
242
+  (0.4ms) commit transaction
243
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]]
244
+  (0.0ms) begin transaction
245
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.708234"], ["updated_at", "2023-04-24 02:51:11.708234"]]
246
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:5kPa5JKu1Ele8gBg/qsby5j0Uw/QGWnHuZqKMTMNc3682sQ6Q1RS"], ["id", 31]]
247
+  (0.5ms) commit transaction
248
+  (0.0ms) begin transaction
249
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.710659"], ["updated_at", "2023-04-24 02:51:11.710659"]]
250
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:SqradN7P/mnQx5Po1r+lZMSroQ/xl1djmXe7GGl9uJgdQEfWxUpI"], ["id", 32]]
251
+  (0.6ms) commit transaction
252
+  (0.0ms) begin transaction
253
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.712712"], ["id", 32]]
254
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 32]]
255
+  (0.4ms) commit transaction
256
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]]
257
+  (0.0ms) begin transaction
258
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.715078"], ["updated_at", "2023-04-24 02:51:11.715078"]]
259
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:OBRvS+5VFdt0OhDYsqp66BTHFFDr11k1tIK/8Olulhuw6cuLXqt+"], ["id", 33]]
260
+  (0.6ms) commit transaction
261
+  (0.0ms) begin transaction
262
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.717276"], ["updated_at", "2023-04-24 02:51:11.717276"]]
263
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:GJ6BRPbZJgiVWosL8lZsGV3OYRTGY9hPuz9bQyYlPREL96duoDyd"], ["id", 34]]
264
+  (0.5ms) commit transaction
265
+  (0.0ms) begin transaction
266
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.719318"], ["updated_at", "2023-04-24 02:51:11.719318"]]
267
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Ie8/ry7p3ZaU3kdsl9bkytYw8hQNt0UoNzk81gCw3D+TlWQZqH5Z"], ["id", 35]]
268
+  (0.5ms) commit transaction
269
+  (0.0ms) begin transaction
270
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.721589"], ["updated_at", "2023-04-24 02:51:11.721589"]]
271
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:eKgtrKN30OH82yAejMInErA94fFgMdwj0wHhQ4aGxTF13nKGMMTU"], ["id", 36]]
272
+  (0.7ms) commit transaction
273
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]]
274
+  (0.0ms) begin transaction
275
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.725738"], ["updated_at", "2023-04-24 02:51:11.725738"]]
276
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:KdJoJ2n41I1MYQx0TbTeuZ8efa0Dm6WiZdpl2VkxlcD3cfdo0O5G"], ["id", 37]]
277
+  (0.6ms) commit transaction
278
+  (0.0ms) begin transaction
279
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.727819"], ["id", 37]]
280
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 37]]
281
+  (0.4ms) commit transaction
282
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 37], ["LIMIT", 1]]
283
+  (0.0ms) begin transaction
284
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.730055"], ["updated_at", "2023-04-24 02:51:11.730055"]]
285
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:xusqgj1WaPAtvTxaddT+DwANJ+1+ZSUy1UEhOSZsEZ6Btw+DpFBY"], ["id", 38]]
286
+  (0.7ms) commit transaction
287
+  (0.0ms) begin transaction
288
+ Person Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:51:11.732413"], ["id", 38]]
289
+  (0.5ms) commit transaction
290
+  (0.0ms) begin transaction
291
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.734005"], ["updated_at", "2023-04-24 02:51:11.734005"]]
292
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:T6EFNxlvoQrEwvanBvjQdhfCucF2XuaW3Ghe4GiEMOLw52Kw+2qH"], ["id", 39]]
293
+  (0.5ms) commit transaction
294
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 39], ["LIMIT", 1]]
295
+  (0.0ms) begin transaction
296
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.744616"], ["updated_at", "2023-04-24 02:51:11.744616"]]
297
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:uTO85h3COElcPcEtpPYXJUlUbGiKZCYTkZaYodTSkZc0sKDfC0ni"], ["id", 40]]
298
+  (0.4ms) commit transaction
299
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]]
300
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]]
301
+  (0.0ms) begin transaction
302
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.747735"], ["updated_at", "2023-04-24 02:51:11.747735"]]
303
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:BXODY5HEm7ycj7TK+JaXAWZkV9lGB1ioQdy+h7/Wydgfi4zIcVnS"], ["id", 41]]
304
+  (0.5ms) commit transaction
305
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 41], ["LIMIT", 1]]
306
+  (0.0ms) begin transaction
307
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.750208"], ["id", 41]]
308
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 41]]
309
+  (0.3ms) commit transaction
310
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 41], ["LIMIT", 1]]
311
+  (0.0ms) begin transaction
312
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.751599"], ["updated_at", "2023-04-24 02:51:11.751599"]]
313
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:PGmvK4v5ZuVSWCYVHzmsKOZ/B3CjXLYEd/RT+t/ZMTS0tmTP77YNHQ=="], ["id", 42]]
314
+  (0.4ms) commit transaction
315
+  (0.0ms) begin transaction
316
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.753158"], ["updated_at", "2023-04-24 02:51:11.753158"]]
317
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:GbZccULGIusLQ8sTcjodJe4hNC0wx/kcB89MoEcYry1WKMoDdlk2"], ["id", 43]]
318
+  (0.5ms) commit transaction
319
+  (0.0ms) begin transaction
320
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.755732"], ["updated_at", "2023-04-24 02:51:11.755732"]]
321
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:N/P8w6cANgLM/cKmBuA1d2wbwe10UD329EluJKOismtj9qkXKnDv"], ["id", 44]]
322
+  (0.4ms) commit transaction
323
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 44], ["LIMIT", 1]]
324
+  (0.0ms) begin transaction
325
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.758315"], ["updated_at", "2023-04-24 02:51:11.758315"]]
326
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:g/mgwOpQgmfRN9xixg3lMqos2KrPfilLG+u5Fss0XryWhIoyWKg1"], ["id", 45]]
327
+  (0.4ms) commit transaction
328
+  (0.0ms) begin transaction
329
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.759687"], ["id", 45]]
330
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 45]]
331
+  (0.5ms) commit transaction
332
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 45], ["LIMIT", 1]]
333
+  (0.0ms) begin transaction
334
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.761205"], ["updated_at", "2023-04-24 02:51:11.761205"]]
335
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:EGuR43Acami7huLQ8U6Vf+YBy/Siau3NMVKOU13NqScegPzUFHLw"], ["id", 46]]
336
+  (0.6ms) commit transaction
337
+  (0.0ms) begin transaction
338
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.763458"], ["updated_at", "2023-04-24 02:51:11.763458"]]
339
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:3W4geoWMakhdKwafb8645RkaYE0uECA84gLGlu3si5sq/p4f8T1F"], ["id", 47]]
340
+  (0.6ms) commit transaction
341
+  (0.0ms) begin transaction
342
+ LazyPerson Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 47]]
343
+  (0.8ms) commit transaction
344
+  (0.0ms) begin transaction
345
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.766598"], ["updated_at", "2023-04-24 02:51:11.766598"]]
346
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:GsYnwpFKDypzHWZvEIQKA0fLfM9IQ9gNiQ5ih+vAZXNSdl7IJEgc"], ["id", 48]]
347
+  (0.6ms) commit transaction
348
+  (0.0ms) begin transaction
349
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.768402"], ["id", 48]]
350
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:quVd19Misa3D9dSvwPXBbXfoz/Ph3DWfmimZyi1AxpanBr80I36ukHGAQmi6Vf0="], ["id", 48]]
351
+  (0.4ms) commit transaction
352
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 48], ["LIMIT", 1]]
353
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 48], ["LIMIT", 1]]
354
+  (0.0ms) begin transaction
355
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.771728"], ["updated_at", "2023-04-24 02:51:11.771728"]]
356
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:8bRdPt6RNcx4XoPxDJJJDigGwFtZjytqWyBxC3Aeo2ohr40zMV7Q"], ["id", 49]]
357
+  (0.5ms) commit transaction
358
+  (0.0ms) begin transaction
359
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:51:11.773265"], ["id", 49]]
360
+  (0.4ms) commit transaction
361
+  (0.0ms) begin transaction
362
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.774276"], ["updated_at", "2023-04-24 02:51:11.774276"]]
363
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:k9LbqwNmMdaY56zhlMKenBRMqbTTPa7meaEda4obhBXUrEV0r0qr"], ["id", 50]]
364
+  (0.6ms) commit transaction
365
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 50], ["LIMIT", 1]]
366
+  (0.0ms) begin transaction
367
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.776752"], ["updated_at", "2023-04-24 02:51:11.776752"]]
368
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Tgl5o3IR0Isy3YpTggHDdfR1oUOGvlW9ppAYeqv998DH0kYsKUFD"], ["id", 51]]
369
+  (0.5ms) commit transaction
370
+  (0.0ms) begin transaction
371
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.778293"], ["id", 51]]
372
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:eNdm0xwZSkPRimpB2OMtzWc2cBGZtUIFNm93XgEnApOu4ggee0hJU6bSaPeG3lo="], ["id", 51]]
373
+  (0.4ms) commit transaction
374
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 51], ["LIMIT", 1]]
375
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 51], ["LIMIT", 1]]
376
+  (0.0ms) begin transaction
377
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.781163"], ["updated_at", "2023-04-24 02:51:11.781163"]]
378
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:NkDP3Ej1YMHm8LxvI35kROCTBoZ9z7hZqjMSSxjxcG5sZfZKIkBh"], ["id", 52]]
379
+  (0.5ms) commit transaction
380
+  (0.0ms) begin transaction
381
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.782605"], ["id", 52]]
382
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 52]]
383
+  (0.5ms) commit transaction
384
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 52], ["LIMIT", 1]]
385
+  (0.0ms) begin transaction
386
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.784073"], ["updated_at", "2023-04-24 02:51:11.784073"]]
387
+  (0.5ms) commit transaction
388
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 53], ["LIMIT", 1]]
389
+  (0.0ms) begin transaction
390
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.786303"], ["updated_at", "2023-04-24 02:51:11.786303"]]
391
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:3AEq7c6egeGfGtsfRuHtKi+/9chzeMpmt75vW5k8xSwvXXo="], ["id", 54]]
392
+  (0.5ms) commit transaction
393
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 54], ["LIMIT", 1]]
394
+  (0.0ms) begin transaction
395
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.790254"], ["updated_at", "2023-04-24 02:51:11.790254"]]
396
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:7MAUj9h9PNFQFSN8/lLzcLW/hmejGNDvaxpFTCzy076wYfs="], ["id", 55]]
397
+  (0.5ms) commit transaction
398
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 55], ["LIMIT", 1]]
399
+  (0.0ms) begin transaction
400
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.794282"], ["updated_at", "2023-04-24 02:51:11.794282"]]
401
+  (0.5ms) commit transaction
402
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 56], ["LIMIT", 1]]
403
+  (0.0ms) begin transaction
404
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.798369"], ["updated_at", "2023-04-24 02:51:11.798369"]]
405
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:Iz6Cg0t4lw2q2LOsn26oW/P2CCPoH+rfSdhgQ2wKXT2NX8UDw08akYg5ECk="], ["id", 57]]
406
+  (0.7ms) commit transaction
407
+  (0.0ms) begin transaction
408
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.800435"], ["id", 57]]
409
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", ""], ["id", 57]]
410
+  (0.4ms) commit transaction
411
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 57], ["LIMIT", 1]]
412
+  (0.0ms) begin transaction
413
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.802594"], ["updated_at", "2023-04-24 02:51:11.802594"]]
414
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:+OUyPfoRyQJBfACyY1O58cH6czAVzpoIW+oekfaGuCAMOp3R+Nj9TrAomAw="], ["id", 58]]
415
+  (0.5ms) commit transaction
416
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 58], ["LIMIT", 1]]
417
+  (0.0ms) begin transaction
418
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.806345"], ["updated_at", "2023-04-24 02:51:11.806345"]]
419
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:Yq5yYhb/jftQ8cC0d+Xzh/vZwZ0+BKKr8p3laXGsEFIfecNLL8Q51uc/938="], ["id", 59]]
420
+  (0.4ms) commit transaction
421
+  (0.0ms) begin transaction
422
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:51:11.808128"], ["id", 59]]
423
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", nil], ["id", 59]]
424
+  (0.3ms) commit transaction
425
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 59], ["LIMIT", 1]]
426
+  (0.0ms) begin transaction
427
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.810236"], ["updated_at", "2023-04-24 02:51:11.810236"]]
428
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:SxjObdRFKowstYnUcctKG64GppzhEI+yNiBzIoiPt7mqAb/ff4BQ2MHMG3M="], ["id", 60]]
429
+  (0.4ms) commit transaction
430
+  (0.0ms) begin transaction
431
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.812444"], ["updated_at", "2023-04-24 02:51:11.812444"]]
432
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:+5WafCI2+CLFxT51/MvPyMu64Iqsmvd25652CLCqgVmxJj1YXM2g0D3sBNY="], ["id", 61]]
433
+  (0.5ms) commit transaction
434
+  (0.0ms) begin transaction
435
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.814696"], ["updated_at", "2023-04-24 02:51:11.814696"]]
436
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
437
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 62]]
438
+  (0.5ms) commit transaction
439
+  (0.0ms) begin transaction
440
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.816405"], ["updated_at", "2023-04-24 02:51:11.816405"]]
441
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
442
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 63]]
443
+  (0.4ms) commit transaction
444
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 63], ["LIMIT", 1]]
445
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
446
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
447
+  (0.0ms) begin transaction
448
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.819299"], ["updated_at", "2023-04-24 02:51:11.819299"]]
449
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:fqAA4syDWXs+Odp4ofY6WPGHZ0H/kLXIfzD57i/madv2vxsISDZavh7NNrqiNp3Maw=="], ["id", 64]]
450
+  (0.5ms) commit transaction
451
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 64], ["LIMIT", 1]]
452
+  (0.0ms) begin transaction
453
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.824598"], ["updated_at", "2023-04-24 02:51:11.824598"]]
454
+  (0.5ms) commit transaction
455
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 65], ["LIMIT", 1]]
456
+  (0.0ms) begin transaction
457
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.827295"], ["updated_at", "2023-04-24 02:51:11.827295"]]
458
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:B2JH5pDyA/i0/MM5sU71jM9sfisgxslehw36zn7+nfORr0hQIEUbF10="], ["id", 66]]
459
+  (0.5ms) commit transaction
460
+  (0.0ms) begin transaction
461
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:51:11.830568"], ["updated_at", "2023-04-24 02:51:11.830568"]]
462
+ Person Update (0.0ms) UPDATE "people" SET "favorite_color_encrypted" = ? WHERE "people"."id" = ? [["favorite_color_encrypted", "vault:v1:3pvBU9w7Jcx+MLUlWn9rPsJ0jEtWCamUe37Q7dyEbhPgrd+X+18="], ["id", 67]]
463
+  (0.4ms) commit transaction
464
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 67], ["LIMIT", 1]]
465
+  (0.5ms) SELECT sqlite_version(*)
466
+  (0.0ms) begin transaction
467
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:53:38.678547"], ["updated_at", "2023-04-24 02:53:38.678547"]]
468
+ Person Update (0.1ms) UPDATE "people" SET "context_proc_encrypted" = ? WHERE "people"."id" = ? [["context_proc_encrypted", "vault:v1:pffEpWPsUDWbokue/ljNZKDueVMuwDGLuuHtMoSI/VFquQ=="], ["id", 68]]
469
+  (1.3ms) commit transaction
470
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 68], ["LIMIT", 1]]
471
+  (0.4ms) SELECT sqlite_version(*)
472
+  (0.0ms) begin transaction
473
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.472680"], ["updated_at", "2023-04-24 02:54:56.472680"]]
474
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:4ah2b7CZDK18CUvs2WPctNZSfBnyBwvjeMqd6Dnt8l0oSgVcaG7S"], ["id", 69]]
475
+  (1.4ms) commit transaction
476
+  (0.0ms) begin transaction
477
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.481373"], ["updated_at", "2023-04-24 02:54:56.481373"]]
478
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:jQu8PgCcyczy+kN4Tf6ytP48DeaRhcnElKCxUUTqM3ajHNsEGJBr"], ["id", 70]]
479
+  (0.6ms) commit transaction
480
+  (0.0ms) begin transaction
481
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.484405"], ["updated_at", "2023-04-24 02:54:56.484405"]]
482
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:8ihcDaMzSg/iN+Iq1AdrLeCER88aVMbwMHjxBtS6mNrSu44bLllE"], ["id", 71]]
483
+  (0.6ms) commit transaction
484
+  (0.0ms) begin transaction
485
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.486810"], ["updated_at", "2023-04-24 02:54:56.486810"]]
486
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:x0lN9il5/sj3VlbywQ3vCo90dl80HkeCpAZmOtjackYD4MlEdt92"], ["id", 72]]
487
+  (0.7ms) commit transaction
488
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 72], ["LIMIT", 1]]
489
+  (0.0ms) begin transaction
490
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.490695"], ["updated_at", "2023-04-24 02:54:56.490695"]]
491
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:k1xPGKT+GU080bbvjB16N3HBkS+YkMgopbKMKAEDJiL2mLOkQxh8"], ["id", 73]]
492
+  (0.6ms) commit transaction
493
+  (0.0ms) begin transaction
494
+ LazyPerson Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:54:56.496028"], ["id", 73]]
495
+  (0.5ms) commit transaction
496
+  (0.0ms) begin transaction
497
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.497577"], ["updated_at", "2023-04-24 02:54:56.497577"]]
498
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Du9GbMojvbvlkyCrCFZwSputuEfEg/ab8TOpnp8JfIcSrglJt0vRdQ=="], ["id", 74]]
499
+  (0.7ms) commit transaction
500
+  (0.0ms) begin transaction
501
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.502771"], ["updated_at", "2023-04-24 02:54:56.502771"]]
502
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:hsEhnUOfkQN7Zl+spIyXccU65kYFtQAUnpt5hN96c+CAIaQ/CaEI"], ["id", 75]]
503
+  (0.7ms) commit transaction
504
+  (0.0ms) begin transaction
505
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.505104"], ["id", 75]]
506
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 75]]
507
+  (0.4ms) commit transaction
508
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 75], ["LIMIT", 1]]
509
+  (0.0ms) begin transaction
510
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.507094"], ["updated_at", "2023-04-24 02:54:56.507094"]]
511
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:euuyYKx5vbrp5VuIHMWSuU2Fx8TwdRoIlsm+r62604n6palK/TIp"], ["id", 76]]
512
+  (0.5ms) commit transaction
513
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 76], ["LIMIT", 1]]
514
+  (0.0ms) begin transaction
515
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.510099"], ["id", 76]]
516
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 76]]
517
+  (0.5ms) commit transaction
518
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 76], ["LIMIT", 1]]
519
+  (0.0ms) begin transaction
520
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.512188"], ["updated_at", "2023-04-24 02:54:56.512188"]]
521
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ycGXEfpQvj5MNTYcPZDoKfo1HNwVGvOZ87J3NAd3yXRN3/hu8vaC"], ["id", 77]]
522
+  (0.6ms) commit transaction
523
+  (0.0ms) begin transaction
524
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.514594"], ["updated_at", "2023-04-24 02:54:56.514594"]]
525
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:9GeXeFFzot+iVS4wPBFXlBJNrfGEbDjxNkTvEkLLcSpp5COQp2pf"], ["id", 78]]
526
+  (0.7ms) commit transaction
527
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 78], ["LIMIT", 1]]
528
+  (0.0ms) begin transaction
529
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.518285"], ["updated_at", "2023-04-24 02:54:56.518285"]]
530
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:kZtKGhvF9ciGOhtPxebl1l/o2keQLq8HO7WCm6q3cFAgixhkoCId"], ["id", 79]]
531
+  (1.0ms) commit transaction
532
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 79], ["LIMIT", 1]]
533
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 79], ["LIMIT", 1]]
534
+  (0.0ms) begin transaction
535
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.522087"], ["updated_at", "2023-04-24 02:54:56.522087"]]
536
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:2GAQZ2DnnH04DDJdfwzvck4n0IFK1K7FlIh8KMHbafO41n6G8XPa"], ["id", 80]]
537
+  (0.6ms) commit transaction
538
+  (0.0ms) begin transaction
539
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.524186"], ["id", 80]]
540
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 80]]
541
+  (0.4ms) commit transaction
542
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 80], ["LIMIT", 1]]
543
+  (0.0ms) begin transaction
544
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.526166"], ["updated_at", "2023-04-24 02:54:56.526166"]]
545
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:WxKuLVjArKCaCLWvItYwzwtsXUUiizxp+6+5YRISgD3fx/BN7CoT"], ["id", 81]]
546
+  (0.5ms) commit transaction
547
+  (0.0ms) begin transaction
548
+ LazyPerson Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 81]]
549
+  (0.5ms) commit transaction
550
+  (0.0ms) begin transaction
551
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.535606"], ["updated_at", "2023-04-24 02:54:56.535606"]]
552
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:bCwJ3eTUzJ/VDAxGeyF32YTO1kDHvg5Z/QcDDrp4aTrcKGnZmdki"], ["id", 82]]
553
+  (0.6ms) commit transaction
554
+  (0.0ms) begin transaction
555
+ LazySinglePerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.537920"], ["updated_at", "2023-04-24 02:54:56.537920"]]
556
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Rfj/d6Eh6Rv51ruu56U7noM+wzR0FtQYvIwluB0ySA9k/KxWQySa"], ["id", 83]]
557
+  (0.5ms) commit transaction
558
+  (0.0ms) begin transaction
559
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.539736"], ["id", 83]]
560
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:byl5Tfi5LE3os2kTu3Pwa8B1b6TC4Jz9M6gJKLh4Nm/hkSxXAHlBK35AW5AWpaE="], ["id", 83]]
561
+  (0.5ms) commit transaction
562
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 83], ["LIMIT", 1]]
563
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 83], ["LIMIT", 1]]
564
+  (0.0ms) begin transaction
565
+ LazySinglePerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.542741"], ["updated_at", "2023-04-24 02:54:56.542741"]]
566
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:2TLjWT5lklMc1096XOARXgCO53iOQqG2s/4H0ASqidoQ9xlfG1oJ/A=="], ["id", 84]]
567
+  (0.6ms) commit transaction
568
+  (0.0ms) begin transaction
569
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.545167"], ["updated_at", "2023-04-24 02:54:56.545167"]]
570
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ADFhYJ2LFBy5hTkdLj9s55gYEolbxhMvmLgNC6dW006K9npFCSit"], ["id", 85]]
571
+  (0.6ms) commit transaction
572
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 85], ["LIMIT", 1]]
573
+  (0.0ms) begin transaction
574
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.547723"], ["id", 85]]
575
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 85]]
576
+  (0.4ms) commit transaction
577
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 85], ["LIMIT", 1]]
578
+  (0.0ms) begin transaction
579
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.549132"], ["updated_at", "2023-04-24 02:54:56.549132"]]
580
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:5KHRI10ZpygJ1MWcQVH8642xNl6fvzzDwDmnFmr5iCd+3XxP++YA"], ["id", 86]]
581
+  (0.5ms) commit transaction
582
+ LazySinglePerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 86], ["LIMIT", 1]]
583
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 86], ["LIMIT", 1]]
584
+  (0.0ms) begin transaction
585
+ LazySinglePerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.551766"], ["updated_at", "2023-04-24 02:54:56.551766"]]
586
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:aAJc0Zo7e243cLt532mnSTI9o7qPGWVz7q46Bgsw8DjUiHNUlTX6"], ["id", 87]]
587
+  (0.6ms) commit transaction
588
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 87], ["LIMIT", 1]]
589
+  (0.0ms) begin transaction
590
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.554678"], ["updated_at", "2023-04-24 02:54:56.554678"]]
591
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:9FzUKRdnZ8ha0mO1+KEfiPr6uTXC9G4wjitj9J+GfKUyNjSndfhC"], ["id", 88]]
592
+  (0.5ms) commit transaction
593
+  (0.0ms) begin transaction
594
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.556381"], ["id", 88]]
595
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 88]]
596
+  (0.5ms) commit transaction
597
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 88], ["LIMIT", 1]]
598
+  (0.0ms) begin transaction
599
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.557913"], ["updated_at", "2023-04-24 02:54:56.557913"]]
600
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ib9GsgtOjOdPFh4LkZzf0Es+dPuF2DZvpn6vn+L92mY2o6syFii6"], ["id", 89]]
601
+  (0.6ms) commit transaction
602
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 89], ["LIMIT", 1]]
603
+  (0.0ms) begin transaction
604
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.560729"], ["updated_at", "2023-04-24 02:54:56.560729"]]
605
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:fUnxW8InQfl5rNwPoCM9Lj5b0ltqLWaZlMJI2Q1RFuqNGfxW7Dza"], ["id", 90]]
606
+  (0.5ms) commit transaction
607
+  (0.0ms) begin transaction
608
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.562401"], ["id", 90]]
609
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:ZucgIscqwlYUxZtJLT9r/oJPEvZoMP7el4Y39TRvPSMyMfYyShajidKnRgqod7Y="], ["id", 90]]
610
+  (0.4ms) commit transaction
611
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 90], ["LIMIT", 1]]
612
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 90], ["LIMIT", 1]]
613
+  (0.0ms) begin transaction
614
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.565633"], ["updated_at", "2023-04-24 02:54:56.565633"]]
615
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:wKElRWYFmQ6ynlHmbuOedq6PUECLi75jkkShEvwf/mVj0aAdZt4r"], ["id", 91]]
616
+  (0.6ms) commit transaction
617
+  (0.0ms) begin transaction
618
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:54:56.567508"], ["id", 91]]
619
+  (0.4ms) commit transaction
620
+  (0.0ms) begin transaction
621
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.568616"], ["updated_at", "2023-04-24 02:54:56.568616"]]
622
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:tlB34pBP4+8vybGJU4PFWOD7H22ZKY8RMGTgF6iUcAfuj8HwvCSO"], ["id", 92]]
623
+  (0.9ms) commit transaction
624
+  (0.0ms) begin transaction
625
+ LazyPerson Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 92]]
626
+  (0.4ms) commit transaction
627
+  (0.0ms) begin transaction
628
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.571854"], ["updated_at", "2023-04-24 02:54:56.571854"]]
629
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:rUA0MRTZEAoPkv1heibUjNHbaV3hNVL2QgdgOAjNL29nl6M8bU2F"], ["id", 93]]
630
+  (0.4ms) commit transaction
631
+  (0.0ms) begin transaction
632
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.573430"], ["id", 93]]
633
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 93]]
634
+  (0.4ms) commit transaction
635
+ LazySinglePerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 93], ["LIMIT", 1]]
636
+  (0.0ms) begin transaction
637
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.574860"], ["updated_at", "2023-04-24 02:54:56.574860"]]
638
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:5Nokv4+9wGNsmEbRMakZkB6a8raHiXBHU4hy+TAq/2CVlFRJBY3n"], ["id", 94]]
639
+  (0.5ms) commit transaction
640
+  (0.0ms) begin transaction
641
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.589155"], ["updated_at", "2023-04-24 02:54:56.589155"]]
642
+ Person Update (0.1ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:TP8GQnU+YUWaIz9EDPs0Z6mKsKY2cqf2Iw011TF9JdeRnaGZ2J0K1Q=="], ["id", 95]]
643
+  (0.8ms) commit transaction
644
+  (0.0ms) begin transaction
645
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.592454"], ["id", 95]]
646
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", nil], ["id", 95]]
647
+  (0.5ms) commit transaction
648
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 95], ["LIMIT", 1]]
649
+  (0.0ms) begin transaction
650
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.595296"], ["updated_at", "2023-04-24 02:54:56.595296"]]
651
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:1x+rQUAiHqBH9AlTMtUMWqrXh9zeYsVztT1Zat2zBbRaVLzeI3wwcw=="], ["id", 96]]
652
+  (0.6ms) commit transaction
653
+  (0.0ms) begin transaction
654
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.598125"], ["updated_at", "2023-04-24 02:54:56.598125"]]
655
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:ofevfKnPp0tTCqn3OhG0DMmtje3sPlAHOAC6gGdBtRExwv9LH9smcw=="], ["id", 97]]
656
+  (0.6ms) commit transaction
657
+  (0.0ms) begin transaction
658
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.600942"], ["updated_at", "2023-04-24 02:54:56.600942"]]
659
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:nxR7jxtplU2Qq5NH8/92jU1joKh907NpDVNyvmKEJOXfkPEP5LbDMQ=="], ["id", 98]]
660
+  (0.5ms) commit transaction
661
+  (0.0ms) begin transaction
662
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.603090"], ["id", 98]]
663
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", ""], ["id", 98]]
664
+  (0.6ms) commit transaction
665
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 98], ["LIMIT", 1]]
666
+  (0.0ms) begin transaction
667
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.605785"], ["updated_at", "2023-04-24 02:54:56.605785"]]
668
+ Person Update (0.1ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:nZNAV1yMbLxVJywCiZARGrIuzzeV23xFbrkeyHHxEg5OeQOdTyLsUA=="], ["id", 99]]
669
+  (0.7ms) commit transaction
670
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 99], ["LIMIT", 1]]
671
+  (0.0ms) begin transaction
672
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.662966"], ["updated_at", "2023-04-24 02:54:56.662966"]]
673
+ Person Update (0.1ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:DgEDXQ/VfT3UZlz1nIZl7Voigz+vY0eejBJ09JiVT1qckSv4Xy58XWA="], ["id", 100]]
674
+  (1.0ms) commit transaction
675
+  (0.0ms) begin transaction
676
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.666553"], ["updated_at", "2023-04-24 02:54:56.666553"]]
677
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:j8KSYf8YuJAzVljTAykhqpddUVfqNqW8In9lnBwvDOYfDTyF4/+nSUIpMyUC9w5weg=="], ["id", 101]]
678
+  (0.5ms) commit transaction
679
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 101], ["LIMIT", 1]]
680
+  (0.0ms) begin transaction
681
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.671353"], ["updated_at", "2023-04-24 02:54:56.671353"]]
682
+  (0.7ms) commit transaction
683
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 102], ["LIMIT", 1]]
684
+  (0.0ms) begin transaction
685
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.674386"], ["updated_at", "2023-04-24 02:54:56.674386"]]
686
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:6R1MNKCziNBJfKvPkY2qyUMorOXBj6ppDlZLRXcijr5qf1o="], ["id", 103]]
687
+  (0.6ms) commit transaction
688
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 103], ["LIMIT", 1]]
689
+  (0.0ms) begin transaction
690
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.679006"], ["updated_at", "2023-04-24 02:54:56.679006"]]
691
+  (0.7ms) commit transaction
692
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 104], ["LIMIT", 1]]
693
+  (0.0ms) begin transaction
694
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.682057"], ["updated_at", "2023-04-24 02:54:56.682057"]]
695
+  (0.5ms) commit transaction
696
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 105], ["LIMIT", 1]]
697
+  (0.0ms) begin transaction
698
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.684543"], ["updated_at", "2023-04-24 02:54:56.684543"]]
699
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:1g1zcQcEl9t7fhrnUWtz7Z80jbOP60cR3odSBcqnWOi+CUI="], ["id", 106]]
700
+  (0.5ms) commit transaction
701
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 106], ["LIMIT", 1]]
702
+  (0.0ms) begin transaction
703
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.688777"], ["updated_at", "2023-04-24 02:54:56.688777"]]
704
+  (0.6ms) commit transaction
705
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 107], ["LIMIT", 1]]
706
+  (0.0ms) begin transaction
707
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.691465"], ["updated_at", "2023-04-24 02:54:56.691465"]]
708
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:p9gbtJtAVZGvBwPEkYwNfskdU6H/dq2xYOhpsZ8scHFj1Bqr4mdx4xY="], ["id", 108]]
709
+  (0.6ms) commit transaction
710
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 108], ["LIMIT", 1]]
711
+  (0.0ms) begin transaction
712
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.695882"], ["updated_at", "2023-04-24 02:54:56.695882"]]
713
+  (0.8ms) commit transaction
714
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 109], ["LIMIT", 1]]
715
+  (0.0ms) begin transaction
716
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.699563"], ["updated_at", "2023-04-24 02:54:56.699563"]]
717
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:HTEiz0d/l4CV0GMbtGPRiWSSYKmu5/ONEN1bzwq+wjOTx/m3IlSaOk8="], ["id", 110]]
718
+  (0.6ms) commit transaction
719
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 110], ["LIMIT", 1]]
720
+  (0.0ms) begin transaction
721
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.705366"], ["updated_at", "2023-04-24 02:54:56.705366"]]
722
+ Person Update (0.0ms) UPDATE "people" SET "favorite_color_encrypted" = ? WHERE "people"."id" = ? [["favorite_color_encrypted", "vault:v1:JKEz/TXHnH+dTzwrfDEJfmywA947JIohrIgCEVkHncxeSftIBjE="], ["id", 111]]
723
+  (0.6ms) commit transaction
724
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 111], ["LIMIT", 1]]
725
+  (0.0ms) begin transaction
726
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.711981"], ["updated_at", "2023-04-24 02:54:56.711981"]]
727
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:JfF/OrL3aLlXpHsafgLn6W89pD86YDvHo6BXfYdiu9GaRrM7ULxw"], ["id", 112]]
728
+  (0.7ms) commit transaction
729
+  (0.0ms) begin transaction
730
+ Person Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:54:56.714488"], ["id", 112]]
731
+  (0.5ms) commit transaction
732
+  (0.0ms) begin transaction
733
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.717887"], ["updated_at", "2023-04-24 02:54:56.717887"]]
734
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:xPCGqnwgCF1AKUCZv1rcHO8Qy6GchqBogHhdW2uMW4LkiEsvjKX8CA=="], ["id", 113]]
735
+  (0.5ms) commit transaction
736
+  (0.0ms) begin transaction
737
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.720542"], ["updated_at", "2023-04-24 02:54:56.720542"]]
738
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:FRVKdR9YbKACYSAN9ueXvV0FeV3RCsjJDACqfl+hqUpnog0Uud5m"], ["id", 114]]
739
+  (0.5ms) commit transaction
740
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 114], ["LIMIT", 1]]
741
+  (0.0ms) begin transaction
742
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.724586"], ["updated_at", "2023-04-24 02:54:56.724586"]]
743
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:YjoJePaa/xB2ieyZovOqy7chRfLlBAf+TBnLlsQ16JLUX3lDYNdM"], ["id", 115]]
744
+  (0.5ms) commit transaction
745
+  (0.0ms) begin transaction
746
+ Person Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 115]]
747
+  (0.4ms) commit transaction
748
+  (0.0ms) begin transaction
749
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.727990"], ["updated_at", "2023-04-24 02:54:56.727990"]]
750
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:b5Mou7HuSEOQ3iFRVUAsltKKsqdFtP1MhZsVr7StINw/MTOci/IA"], ["id", 116]]
751
+  (0.6ms) commit transaction
752
+  (0.0ms) begin transaction
753
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.730820"], ["updated_at", "2023-04-24 02:54:56.730820"]]
754
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Ne9Pr7vd4az9THDX90yxOPShmq3bbQsa4m7Tt0PaJf+u5t4bBPr7"], ["id", 117]]
755
+  (0.5ms) commit transaction
756
+  (0.0ms) begin transaction
757
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.733480"], ["updated_at", "2023-04-24 02:54:56.733480"]]
758
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:B3R9nEp39rS9/49NpooOgwK8Hh3klhxlsM+wd8gMrtdjXriPuc55"], ["id", 118]]
759
+  (0.6ms) commit transaction
760
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 118], ["LIMIT", 1]]
761
+  (0.0ms) begin transaction
762
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.737314"], ["id", 118]]
763
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 118]]
764
+  (0.4ms) commit transaction
765
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 118], ["LIMIT", 1]]
766
+  (0.0ms) begin transaction
767
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.739801"], ["updated_at", "2023-04-24 02:54:56.739801"]]
768
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:v3HbI2mDGULAu6wfJH84qrKUV03EnhSoHNzAiTgIZPjMNed1U0j/"], ["id", 119]]
769
+  (0.5ms) commit transaction
770
+  (0.0ms) begin transaction
771
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.742071"], ["id", 119]]
772
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 119]]
773
+  (0.4ms) commit transaction
774
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 119], ["LIMIT", 1]]
775
+  (0.0ms) begin transaction
776
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.744482"], ["updated_at", "2023-04-24 02:54:56.744482"]]
777
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:bIWR3MHD/+qE/kYeJshulxuYWMFev421nxgOeQh5uc7/vvq3R5Fc"], ["id", 120]]
778
+  (0.6ms) commit transaction
779
+  (0.0ms) begin transaction
780
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.747037"], ["updated_at", "2023-04-24 02:54:56.747037"]]
781
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ogDamv2w/6Cn/lm35gJitI/oNOwshuc1s6Gx9hKeCN5xFVy+va8R"], ["id", 121]]
782
+  (0.5ms) commit transaction
783
+  (0.0ms) begin transaction
784
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.749604"], ["updated_at", "2023-04-24 02:54:56.749604"]]
785
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:qur1hV6apH1q1M6Bvz4menqBFMgzxzpkNkw4q9NU1bc4IDunSq7E"], ["id", 122]]
786
+  (0.6ms) commit transaction
787
+  (0.0ms) begin transaction
788
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.751743"], ["id", 122]]
789
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 122]]
790
+  (0.4ms) commit transaction
791
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 122], ["LIMIT", 1]]
792
+  (0.0ms) begin transaction
793
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.754093"], ["updated_at", "2023-04-24 02:54:56.754093"]]
794
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:vegPmVyP9rxXw28DqAnoQTH1SAYBRIiOlh0ngI4yu6PQ0ChhkGl0"], ["id", 123]]
795
+  (0.6ms) commit transaction
796
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 123], ["LIMIT", 1]]
797
+  (0.0ms) begin transaction
798
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.758316"], ["updated_at", "2023-04-24 02:54:56.758316"]]
799
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:dhsrs0Z3/UBTpjAPdfyoiuQLzqJcpcCQD4fA2aLlVVPog6CRjs75"], ["id", 124]]
800
+  (0.7ms) commit transaction
801
+  (0.0ms) begin transaction
802
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.760665"], ["id", 124]]
803
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 124]]
804
+  (0.6ms) commit transaction
805
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 124], ["LIMIT", 1]]
806
+  (0.0ms) begin transaction
807
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.763417"], ["updated_at", "2023-04-24 02:54:56.763417"]]
808
+ Person Update (0.0ms) UPDATE "people" SET "context_string_encrypted" = ? WHERE "people"."id" = ? [["context_string_encrypted", "vault:v1:XTdHPx6HAVqqRKWi0LnCjTyF9S6EXwg2J0xqv7jjMzKBIw=="], ["id", 125]]
809
+  (0.6ms) commit transaction
810
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 125], ["LIMIT", 1]]
811
+  (0.0ms) begin transaction
812
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.775614"], ["updated_at", "2023-04-24 02:54:56.775614"]]
813
+ Person Update (0.0ms) UPDATE "people" SET "context_proc_encrypted" = ? WHERE "people"."id" = ? [["context_proc_encrypted", "vault:v1:URtuQNR4QK+ElSbCwx/2SCr3BwnRRD6EGqTjxcoOeYvXLA=="], ["id", 126]]
814
+  (0.7ms) commit transaction
815
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 126], ["LIMIT", 1]]
816
+  (0.0ms) begin transaction
817
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.781963"], ["updated_at", "2023-04-24 02:54:56.781963"]]
818
+ Person Update (0.0ms) UPDATE "people" SET "context_symbol_encrypted" = ? WHERE "people"."id" = ? [["context_symbol_encrypted", "vault:v1:CiTUuh4NSXpoz4TuWsYVKoCQQpdQ0XKsfQ2ZnRqqAbVPaw=="], ["id", 127]]
819
+  (0.6ms) commit transaction
820
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 127], ["LIMIT", 1]]
821
+  (0.0ms) begin transaction
822
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.791094"], ["updated_at", "2023-04-24 02:54:56.791094"]]
823
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
824
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 128]]
825
+  (0.6ms) commit transaction
826
+  (0.0ms) begin transaction
827
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.794344"], ["updated_at", "2023-04-24 02:54:56.794344"]]
828
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
829
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 129]]
830
+  (0.6ms) commit transaction
831
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 129], ["LIMIT", 1]]
832
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
833
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
834
+  (0.0ms) begin transaction
835
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.798306"], ["updated_at", "2023-04-24 02:54:56.798306"]]
836
+ Person Update (0.0ms) UPDATE "people" SET "business_card_encrypted" = ? WHERE "people"."id" = ? [["business_card_encrypted", "vault:v1:JS/W8r/FLlCWmyegrlN4ogxAbCdNtxF1ek0V/ktEF4/ValzVCeUJapHNtiGr20K9Kc/Iz8IxAaymmjFR"], ["id", 130]]
837
+  (0.5ms) commit transaction
838
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 130], ["LIMIT", 1]]
839
+  (0.0ms) begin transaction
840
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.805657"], ["updated_at", "2023-04-24 02:54:56.805657"]]
841
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:ftp2/ral4NvRueZRf6y45yltFghoNtdAzGbkrMsoa8qDkVmOIKwE0QKWUag="], ["id", 131]]
842
+  (0.6ms) commit transaction
843
+  (0.0ms) begin transaction
844
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.808069"], ["id", 131]]
845
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", ""], ["id", 131]]
846
+  (0.4ms) commit transaction
847
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 131], ["LIMIT", 1]]
848
+  (0.0ms) begin transaction
849
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.810339"], ["updated_at", "2023-04-24 02:54:56.810339"]]
850
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:iMMrRjKV27f/MYPKwO7dIO5n8V+48+g8bZt8SAd9ttvdRVVkJKNpgvUq6BQ="], ["id", 132]]
851
+  (0.8ms) commit transaction
852
+  (0.0ms) begin transaction
853
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:54:56.812841"], ["id", 132]]
854
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", nil], ["id", 132]]
855
+  (0.4ms) commit transaction
856
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 132], ["LIMIT", 1]]
857
+  (0.0ms) begin transaction
858
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.815035"], ["updated_at", "2023-04-24 02:54:56.815035"]]
859
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:+fydrMKahCR1jEM0BHGXr5Mys5Om4c6kiVuHv9oHRwIk4UQNrqrQbSXMMXQ="], ["id", 133]]
860
+  (0.8ms) commit transaction
861
+  (0.0ms) begin transaction
862
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.818078"], ["updated_at", "2023-04-24 02:54:56.818078"]]
863
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:tBy+/grlnHjruBRD1iFmPxSwshDa/uiO4mYDGNgrJRgeqyKrv6MKA8Ky1qM="], ["id", 134]]
864
+  (0.6ms) commit transaction
865
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 134], ["LIMIT", 1]]
866
+  (0.0ms) begin transaction
867
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:54:56.822191"], ["updated_at", "2023-04-24 02:54:56.822191"]]
868
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:exYs+bHNF/ogN9a5hRcHeNMtiCJkufjm/Ka1y/JDybBsoeX8ge3o4a2E7Ls="], ["id", 135]]
869
+  (0.6ms) commit transaction
870
+  (0.5ms) SELECT sqlite_version(*)
871
+  (0.0ms) begin transaction
872
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.617642"], ["updated_at", "2023-04-24 02:58:14.617642"]]
873
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:oEmbWftsEpSFiRIStAFNHLSX1JfhjoTuyBLoSLgTSkhdVk2LHo3ltQ=="], ["id", 136]]
874
+  (1.2ms) commit transaction
875
+  (0.0ms) begin transaction
876
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.625088"], ["updated_at", "2023-04-24 02:58:14.625088"]]
877
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:vv8gzCkLRtWwi6Rq84ntffoELM7LtPEywmFbNE+WewKg8jsAQwQI"], ["id", 137]]
878
+  (0.7ms) commit transaction
879
+  (0.0ms) begin transaction
880
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.628238"], ["updated_at", "2023-04-24 02:58:14.628238"]]
881
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ld4zu7mS0xoGUMGYtliNs4lUp3rnr7EF4do4Wp+B2+E5ip6sio/i"], ["id", 138]]
882
+  (0.7ms) commit transaction
883
+  (0.0ms) begin transaction
884
+ Person Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:58:14.633473"], ["id", 138]]
885
+  (0.8ms) commit transaction
886
+  (0.0ms) begin transaction
887
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.635536"], ["updated_at", "2023-04-24 02:58:14.635536"]]
888
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:l8Irn+2ITBx3mpflZfK5F8ivhLB2DH0j2RXZr/rapl41MlyLu0MA"], ["id", 139]]
889
+  (0.6ms) commit transaction
890
+  (0.0ms) begin transaction
891
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.637623"], ["id", 139]]
892
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 139]]
893
+  (0.4ms) commit transaction
894
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 139], ["LIMIT", 1]]
895
+  (0.0ms) begin transaction
896
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.640160"], ["updated_at", "2023-04-24 02:58:14.640160"]]
897
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:kjzeUgxJVSZLkif/0oAux1LfqwixKB03t36MRgeDNMcxMNoCvDvy"], ["id", 140]]
898
+  (0.5ms) commit transaction
899
+  (0.0ms) begin transaction
900
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.642473"], ["id", 140]]
901
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 140]]
902
+  (0.3ms) commit transaction
903
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 140], ["LIMIT", 1]]
904
+  (0.0ms) begin transaction
905
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.644726"], ["updated_at", "2023-04-24 02:58:14.644726"]]
906
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:82p6n7SjbHnFHTHxJWDVSB+dkRheWYpFFcYP0+Pi8EQauUK3tD0z"], ["id", 141]]
907
+  (0.5ms) commit transaction
908
+  (0.0ms) begin transaction
909
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.647069"], ["updated_at", "2023-04-24 02:58:14.647069"]]
910
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:KZaYqnt+orJcN65VsiCX8DFx552E8TDuqw8q5KhHuQHaQpEdAx+w"], ["id", 142]]
911
+  (0.4ms) commit transaction
912
+  (0.0ms) begin transaction
913
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.649252"], ["updated_at", "2023-04-24 02:58:14.649252"]]
914
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:LC/z7OMdCNoorU5g4r51EZSUhPtSTMeU/I4jJzuEtf4fLMFmhSOF"], ["id", 143]]
915
+  (0.4ms) commit transaction
916
+  (0.0ms) begin transaction
917
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.651391"], ["updated_at", "2023-04-24 02:58:14.651391"]]
918
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:MiF4AMqovLXDx8inofjse+n9OzHMu38mTd6j6xqeZKHK6Aw9Q/aE"], ["id", 144]]
919
+  (0.5ms) commit transaction
920
+  (0.0ms) begin transaction
921
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.653366"], ["id", 144]]
922
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 144]]
923
+  (0.3ms) commit transaction
924
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 144], ["LIMIT", 1]]
925
+  (0.0ms) begin transaction
926
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.655601"], ["updated_at", "2023-04-24 02:58:14.655601"]]
927
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ecgzijM+ZPNpwehGTBKfQDdY9rAefQ60YdsWMKf+rfH6AY/eUtTH"], ["id", 145]]
928
+  (0.4ms) commit transaction
929
+  (0.0ms) begin transaction
930
+ Person Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 145]]
931
+  (0.3ms) commit transaction
932
+  (0.0ms) begin transaction
933
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.658728"], ["updated_at", "2023-04-24 02:58:14.658728"]]
934
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:CMIuw4ChgFbS4PRFSAn2i3cqEvS8PKYtaMJD/XwAUg+sVpCcIHyv"], ["id", 146]]
935
+  (0.6ms) commit transaction
936
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 146], ["LIMIT", 1]]
937
+  (0.0ms) begin transaction
938
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.662597"], ["updated_at", "2023-04-24 02:58:14.662597"]]
939
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:xUBRMtVXrw6REOM8q3IqEHxEnHiPK/tr1dM4dIyxwXlBQ5nVhr6U"], ["id", 147]]
940
+  (0.6ms) commit transaction
941
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 147], ["LIMIT", 1]]
942
+  (0.0ms) begin transaction
943
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.666586"], ["updated_at", "2023-04-24 02:58:14.666586"]]
944
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:180HEZEadAvMq6RaHZjhrS7/0AMDKkGm/2OED52VY9Us6sf+k7uJ"], ["id", 148]]
945
+  (0.6ms) commit transaction
946
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 148], ["LIMIT", 1]]
947
+  (0.0ms) begin transaction
948
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.670596"], ["id", 148]]
949
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 148]]
950
+  (0.5ms) commit transaction
951
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 148], ["LIMIT", 1]]
952
+  (0.0ms) begin transaction
953
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.673108"], ["updated_at", "2023-04-24 02:58:14.673108"]]
954
+  (0.6ms) commit transaction
955
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 149], ["LIMIT", 1]]
956
+  (0.0ms) begin transaction
957
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.675467"], ["updated_at", "2023-04-24 02:58:14.675467"]]
958
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:oIfg1BJ8Prt6o6oKJakspDXmFh1M2OLnp4uSQDhsAbsJoK4="], ["id", 150]]
959
+  (0.5ms) commit transaction
960
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 150], ["LIMIT", 1]]
961
+  (0.0ms) begin transaction
962
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.679384"], ["updated_at", "2023-04-24 02:58:14.679384"]]
963
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:2dxApz0LHRiFQLqzHEXNL6PmjYhsXGHfyKwQSnsOmXoRR2Y="], ["id", 151]]
964
+  (0.5ms) commit transaction
965
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 151], ["LIMIT", 1]]
966
+  (0.0ms) begin transaction
967
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.683250"], ["updated_at", "2023-04-24 02:58:14.683250"]]
968
+  (0.5ms) commit transaction
969
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 152], ["LIMIT", 1]]
970
+  (0.0ms) begin transaction
971
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.685725"], ["updated_at", "2023-04-24 02:58:14.685725"]]
972
+  (0.5ms) commit transaction
973
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 153], ["LIMIT", 1]]
974
+  (0.0ms) begin transaction
975
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.687837"], ["updated_at", "2023-04-24 02:58:14.687837"]]
976
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:bmXLAVBCFQGU6czSXvyYsZU5grSK8MyHEgO1s2C0XvNUz3/YTISarBU="], ["id", 154]]
977
+  (0.6ms) commit transaction
978
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 154], ["LIMIT", 1]]
979
+  (0.0ms) begin transaction
980
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.693295"], ["updated_at", "2023-04-24 02:58:14.693295"]]
981
+  (0.5ms) commit transaction
982
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 155], ["LIMIT", 1]]
983
+  (0.0ms) begin transaction
984
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.696101"], ["updated_at", "2023-04-24 02:58:14.696101"]]
985
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:oWyJFREURVO5g6mWATF66Gc8tErhbpPKg5f6Fo5ULkVHXFD1OD8AWLw="], ["id", 156]]
986
+  (0.5ms) commit transaction
987
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 156], ["LIMIT", 1]]
988
+  (0.0ms) begin transaction
989
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.701519"], ["updated_at", "2023-04-24 02:58:14.701519"]]
990
+ Person Update (0.0ms) UPDATE "people" SET "favorite_color_encrypted" = ? WHERE "people"."id" = ? [["favorite_color_encrypted", "vault:v1:OKLggxm7gtnUupzcsusPolQ3a+1MUto+eUUuQB+Iggx3wf/JXcA="], ["id", 157]]
991
+  (0.5ms) commit transaction
992
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 157], ["LIMIT", 1]]
993
+  (0.0ms) begin transaction
994
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.706981"], ["updated_at", "2023-04-24 02:58:14.706981"]]
995
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:9CMNp09fYg5vGQFrMrxdQlO8Mdf/JYVWo5vLWskSeiXiAnAVsWXaWA=="], ["id", 158]]
996
+  (0.5ms) commit transaction
997
+  (0.0ms) begin transaction
998
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.709387"], ["updated_at", "2023-04-24 02:58:14.709387"]]
999
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:R4WjWpK+x4uU5YrQT/GuT5qAXkv+VKpmUbZ75BA0GGrfgdUdJOXeDA=="], ["id", 159]]
1000
+  (0.5ms) commit transaction
1001
+  (0.0ms) begin transaction
1002
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.711621"], ["updated_at", "2023-04-24 02:58:14.711621"]]
1003
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:1PKQofU8PfXjfSKZf6xokQcoMDz7eqBTff9LUqsQt1gEEtrItGtEHA=="], ["id", 160]]
1004
+  (0.5ms) commit transaction
1005
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 160], ["LIMIT", 1]]
1006
+  (0.0ms) begin transaction
1007
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.715882"], ["updated_at", "2023-04-24 02:58:14.715882"]]
1008
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:N4uFo/iGbu5yQ2elUZ/xqdXQ6BDNN7lEQhnCfW89OdFSvzxznKg65g=="], ["id", 161]]
1009
+  (0.5ms) commit transaction
1010
+  (0.0ms) begin transaction
1011
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.717736"], ["id", 161]]
1012
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", ""], ["id", 161]]
1013
+  (0.4ms) commit transaction
1014
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 161], ["LIMIT", 1]]
1015
+  (0.0ms) begin transaction
1016
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.719831"], ["updated_at", "2023-04-24 02:58:14.719831"]]
1017
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:AKun65498yXQqyQ3b3TfyqJrJzqtMvn3UIujcq6e26efChVihhxWWw=="], ["id", 162]]
1018
+  (0.4ms) commit transaction
1019
+  (0.0ms) begin transaction
1020
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.721627"], ["id", 162]]
1021
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", nil], ["id", 162]]
1022
+  (0.4ms) commit transaction
1023
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 162], ["LIMIT", 1]]
1024
+  (0.0ms) begin transaction
1025
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.733869"], ["updated_at", "2023-04-24 02:58:14.733869"]]
1026
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:0jwzcpwI3OmBi3FZapb+z1eRXzlGV6IW9wKaXnczvzdBPRacqZup"], ["id", 163]]
1027
+  (0.7ms) commit transaction
1028
+  (0.0ms) begin transaction
1029
+ LazyPerson Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 163]]
1030
+  (0.9ms) commit transaction
1031
+  (0.0ms) begin transaction
1032
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.737760"], ["updated_at", "2023-04-24 02:58:14.737760"]]
1033
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:FoDbtU4QCc2GSsSgXThXrFpJjPjqWjI14rl/2lqqJT23qG8+QNZi"], ["id", 164]]
1034
+  (0.5ms) commit transaction
1035
+  (0.0ms) begin transaction
1036
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.739603"], ["id", 164]]
1037
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 164]]
1038
+  (0.5ms) commit transaction
1039
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 164], ["LIMIT", 1]]
1040
+  (0.0ms) begin transaction
1041
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.741520"], ["updated_at", "2023-04-24 02:58:14.741520"]]
1042
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:bRr+vQKPns7HkImDMdJxOhExIWIU7P3LdTfiiN0B+DrTXJnbv00X"], ["id", 165]]
1043
+  (0.5ms) commit transaction
1044
+  (0.0ms) begin transaction
1045
+ LazyPerson Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:58:14.743272"], ["id", 165]]
1046
+  (0.4ms) commit transaction
1047
+  (0.0ms) begin transaction
1048
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.744437"], ["updated_at", "2023-04-24 02:58:14.744437"]]
1049
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:BPVGzAmrSApSRVnRWUCE29FL0YgLEgTGRsuA6Emvwi9JM2C4Zhul"], ["id", 166]]
1050
+  (0.5ms) commit transaction
1051
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 166], ["LIMIT", 1]]
1052
+  (0.0ms) begin transaction
1053
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.747265"], ["updated_at", "2023-04-24 02:58:14.747265"]]
1054
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:AVezLUUWhEWIFC9OU1oRTtRkVfQZsgMnraTfTvrGDphrbNBrJ92M"], ["id", 167]]
1055
+  (0.5ms) commit transaction
1056
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 167], ["LIMIT", 1]]
1057
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 167], ["LIMIT", 1]]
1058
+  (0.0ms) begin transaction
1059
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.750190"], ["updated_at", "2023-04-24 02:58:14.750190"]]
1060
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:qZ9J3lLZpv/yorMqwe5knGyc57Ra7cAhzm49lXwGPg9xxPxJ9dvE"], ["id", 168]]
1061
+  (0.5ms) commit transaction
1062
+  (0.0ms) begin transaction
1063
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.752190"], ["updated_at", "2023-04-24 02:58:14.752190"]]
1064
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:dhYQwJia6XTD9pe9qf/EM2Lm1XDENaXG1Y+wUO6VQIKle/6DQIQ2"], ["id", 169]]
1065
+  (0.5ms) commit transaction
1066
+  (0.0ms) begin transaction
1067
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.754123"], ["updated_at", "2023-04-24 02:58:14.754123"]]
1068
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:oA20l8X5yPCGnIw5bdpmGn5FyGXuHavRtrnSB8f2oMDgumP51ypO"], ["id", 170]]
1069
+  (0.4ms) commit transaction
1070
+  (0.0ms) begin transaction
1071
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.756035"], ["updated_at", "2023-04-24 02:58:14.756035"]]
1072
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:JWnucQsleiPMHkyVkoBPdHYALhLYGjB7YiBAc0CAIFVbp7VAGN3Z"], ["id", 171]]
1073
+  (0.6ms) commit transaction
1074
+  (0.0ms) begin transaction
1075
+ LazyPerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.757999"], ["updated_at", "2023-04-24 02:58:14.757999"]]
1076
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:DePxkUxSDYOcgn9Q2YmpbTZrv4CJ0SdWRcqcefY7NLvrHohN0/E5"], ["id", 172]]
1077
+  (0.4ms) commit transaction
1078
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 172], ["LIMIT", 1]]
1079
+  (0.0ms) begin transaction
1080
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.760597"], ["id", 172]]
1081
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 172]]
1082
+  (0.4ms) commit transaction
1083
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 172], ["LIMIT", 1]]
1084
+  (0.0ms) begin transaction
1085
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.762221"], ["updated_at", "2023-04-24 02:58:14.762221"]]
1086
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:S5B2HPb2TgByyPPEER17/o6bR8yAJ7GCWfGhNOhFaTs+iMYR7jo4"], ["id", 173]]
1087
+  (1.1ms) commit transaction
1088
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 173], ["LIMIT", 1]]
1089
+  (0.0ms) begin transaction
1090
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.765314"], ["updated_at", "2023-04-24 02:58:14.765314"]]
1091
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:0Le4P8RbfWxybwzGT2gg3Hul8Cb2u919S6a6ctd5Ar0BzyVdF92xLA=="], ["id", 174]]
1092
+  (0.5ms) commit transaction
1093
+  (0.0ms) begin transaction
1094
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.767123"], ["updated_at", "2023-04-24 02:58:14.767123"]]
1095
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:TJoAWrp1Tg4C52BXjBF6l3lyab1pb5+Q9i9Ejz1lkQXrjQLvem/o"], ["id", 175]]
1096
+  (0.5ms) commit transaction
1097
+  (0.0ms) begin transaction
1098
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.768829"], ["id", 175]]
1099
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 175]]
1100
+  (0.4ms) commit transaction
1101
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 175], ["LIMIT", 1]]
1102
+  (0.0ms) begin transaction
1103
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.771023"], ["updated_at", "2023-04-24 02:58:14.771023"]]
1104
+ Person Update (0.0ms) UPDATE "people" SET "business_card_encrypted" = ? WHERE "people"."id" = ? [["business_card_encrypted", "vault:v1:03zY1cUfRYg7KX1Ftl5WmGwbp9qy4Y46g6UJdkxsoCSmSSVxcgV2pf3B15QZu6TsRrQ17S6aZ3qJ5uxt"], ["id", 176]]
1105
+  (0.5ms) commit transaction
1106
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 176], ["LIMIT", 1]]
1107
+  (0.0ms) begin transaction
1108
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.776488"], ["updated_at", "2023-04-24 02:58:14.776488"]]
1109
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:JLFxpmSXs2jQJmuIP0oqU8OBbmygj6O43b2zqUDowrV4SCya7ewl6Od4IRs="], ["id", 177]]
1110
+  (0.5ms) commit transaction
1111
+  (0.0ms) begin transaction
1112
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.778635"], ["updated_at", "2023-04-24 02:58:14.778635"]]
1113
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:zHmjF/w9IMhRXiMVwHvxv4xthK131o4sgCS3Ih+AO7P4+5BE+YXzJfXUZhs="], ["id", 178]]
1114
+  (0.5ms) commit transaction
1115
+  (0.0ms) begin transaction
1116
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.780717"], ["updated_at", "2023-04-24 02:58:14.780717"]]
1117
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:Ko07Si4i016oRSrDQK82Gv09UATjcmDTep+mBiKQQj0JNTToDeBexI1s8M4="], ["id", 179]]
1118
+  (0.5ms) commit transaction
1119
+  (0.0ms) begin transaction
1120
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.782488"], ["id", 179]]
1121
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", nil], ["id", 179]]
1122
+  (0.5ms) commit transaction
1123
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 179], ["LIMIT", 1]]
1124
+  (0.0ms) begin transaction
1125
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.784821"], ["updated_at", "2023-04-24 02:58:14.784821"]]
1126
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:OQ+EqmcIp68pUnOXNa+VFasTdbmLdX+WI+kCQVT5qxDLf2uhanN8AubFXq0="], ["id", 180]]
1127
+  (0.4ms) commit transaction
1128
+  (0.0ms) begin transaction
1129
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.786632"], ["id", 180]]
1130
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", ""], ["id", 180]]
1131
+  (0.4ms) commit transaction
1132
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 180], ["LIMIT", 1]]
1133
+  (0.0ms) begin transaction
1134
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.788744"], ["updated_at", "2023-04-24 02:58:14.788744"]]
1135
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:LS5avRFp5lJeQAH1JgGPB06Zeon00I4cpGywi3ghzDdn82aH2p0yRYZfh/Y="], ["id", 181]]
1136
+  (0.5ms) commit transaction
1137
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 181], ["LIMIT", 1]]
1138
+  (0.0ms) begin transaction
1139
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.792299"], ["updated_at", "2023-04-24 02:58:14.792299"]]
1140
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1141
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 182]]
1142
+  (0.5ms) commit transaction
1143
+  (0.0ms) begin transaction
1144
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.794464"], ["updated_at", "2023-04-24 02:58:14.794464"]]
1145
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1146
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 183]]
1147
+  (0.5ms) commit transaction
1148
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 183], ["LIMIT", 1]]
1149
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1150
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1151
+  (0.0ms) begin transaction
1152
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.797417"], ["updated_at", "2023-04-24 02:58:14.797417"]]
1153
+  (0.5ms) commit transaction
1154
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 184], ["LIMIT", 1]]
1155
+  (0.0ms) begin transaction
1156
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.799471"], ["updated_at", "2023-04-24 02:58:14.799471"]]
1157
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:ioJMX5+0JkRt+2QkiJ2A5taQPDckueIuhD0ONdQgqkdibUnv/pV3u0aoEk4gTyapsw=="], ["id", 185]]
1158
+  (0.4ms) commit transaction
1159
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 185], ["LIMIT", 1]]
1160
+  (0.0ms) begin transaction
1161
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.803569"], ["updated_at", "2023-04-24 02:58:14.803569"]]
1162
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:W83kLwL2RX0nSg1kqlVwz/GbXhZXUulQFFnmv7+RQTHkW53BfyS9+I4="], ["id", 186]]
1163
+  (0.5ms) commit transaction
1164
+  (0.0ms) begin transaction
1165
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.812644"], ["updated_at", "2023-04-24 02:58:14.812644"]]
1166
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Sn4XPnvdndtUbl+T+duwdsA2UANANVjn5tR6YjqCAsYOgvErFAfJ"], ["id", 187]]
1167
+  (0.6ms) commit transaction
1168
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 187], ["LIMIT", 1]]
1169
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 187], ["LIMIT", 1]]
1170
+  (0.0ms) begin transaction
1171
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.815670"], ["updated_at", "2023-04-24 02:58:14.815670"]]
1172
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:q3zVfQO0rXSquPkfOPRr3YD4AX+4r1bCbmkvVU7jAdv7WQ2dSfMC"], ["id", 188]]
1173
+  (0.5ms) commit transaction
1174
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 188], ["LIMIT", 1]]
1175
+  (0.0ms) begin transaction
1176
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.818094"], ["updated_at", "2023-04-24 02:58:14.818094"]]
1177
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:vS0NCfIbPUcofg2gvV66CdKFfAyqVHQfY1XAtNXl6VqU89guQe7D"], ["id", 189]]
1178
+  (0.5ms) commit transaction
1179
+  (0.0ms) begin transaction
1180
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.819614"], ["id", 189]]
1181
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:i8b8UvzZjJIDpt4YXmnsJslNmu6CgLa7hq9V5zGhImx8GP235uVlZQ5lGbk+FVk="], ["id", 189]]
1182
+  (0.4ms) commit transaction
1183
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 189], ["LIMIT", 1]]
1184
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 189], ["LIMIT", 1]]
1185
+  (0.0ms) begin transaction
1186
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.822286"], ["updated_at", "2023-04-24 02:58:14.822286"]]
1187
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:RUVRfxxWfeRawn3ibIRaK+gpP+S/dvX3pYOAeeyQHz04WEg00XXx"], ["id", 190]]
1188
+  (0.5ms) commit transaction
1189
+  (0.0ms) begin transaction
1190
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.823843"], ["updated_at", "2023-04-24 02:58:14.823843"]]
1191
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:RDjxQuioRinrTIf1FvK0978DotuCNtdDxyZ1a1WXURAJLFDesoY2"], ["id", 191]]
1192
+  (0.5ms) commit transaction
1193
+  (0.0ms) begin transaction
1194
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-04-24 02:58:14.825277"], ["id", 191]]
1195
+  (0.3ms) commit transaction
1196
+  (0.0ms) begin transaction
1197
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.826049"], ["updated_at", "2023-04-24 02:58:14.826049"]]
1198
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:SPCW8fSv7rRVaHEt5RxDwnpy5yIhRzWnCLQ89bJuV9wpcyxhzsfp"], ["id", 192]]
1199
+  (0.5ms) commit transaction
1200
+  (0.0ms) begin transaction
1201
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.827465"], ["id", 192]]
1202
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 192]]
1203
+  (0.3ms) commit transaction
1204
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 192], ["LIMIT", 1]]
1205
+  (0.0ms) begin transaction
1206
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.828506"], ["updated_at", "2023-04-24 02:58:14.828506"]]
1207
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:R5SKEtfrmp9NtIUwwXJP6IkWpyrX1eTit9stEKULXtrSppb9PHB3hA=="], ["id", 193]]
1208
+  (0.4ms) commit transaction
1209
+  (0.0ms) begin transaction
1210
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.829915"], ["updated_at", "2023-04-24 02:58:14.829915"]]
1211
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Ig9plJ1jfhSfsw8u2ziTJ3LWTVpQvtJs3yD9eM1vGiifpFvX6jR0"], ["id", 194]]
1212
+  (0.5ms) commit transaction
1213
+  (0.0ms) begin transaction
1214
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.831486"], ["updated_at", "2023-04-24 02:58:14.831486"]]
1215
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:XITa4+D7jMBY4ZXctZ/KMOj+ePqBYydoiKd6rWYWQmAIOB9D79/t"], ["id", 195]]
1216
+  (0.5ms) commit transaction
1217
+  (0.0ms) begin transaction
1218
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.832912"], ["id", 195]]
1219
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:w9xBCL+9O2w7mijGtDWuImguzgMpMBq/WvgKHzeuUX/0dZuEDMTmS7CMiGDvtTY="], ["id", 195]]
1220
+  (0.4ms) commit transaction
1221
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 195], ["LIMIT", 1]]
1222
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 195], ["LIMIT", 1]]
1223
+  (0.0ms) begin transaction
1224
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.835751"], ["updated_at", "2023-04-24 02:58:14.835751"]]
1225
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:t6UPI0XpD30fxBajzH2CSdPHO1Lj4sfMUNebzTqWs1x2iUKgMu4i"], ["id", 196]]
1226
+  (0.5ms) commit transaction
1227
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 196], ["LIMIT", 1]]
1228
+  (0.0ms) begin transaction
1229
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.838110"], ["id", 196]]
1230
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 196]]
1231
+  (0.4ms) commit transaction
1232
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 196], ["LIMIT", 1]]
1233
+  (0.0ms) begin transaction
1234
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.839280"], ["updated_at", "2023-04-24 02:58:14.839280"]]
1235
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:yya+tUKUXjwZJaNOrLBdFuNBksU9RbbyMKc+JiPlUVRAc0aek4ox"], ["id", 197]]
1236
+  (0.4ms) commit transaction
1237
+  (0.0ms) begin transaction
1238
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-04-24 02:58:14.840610"], ["id", 197]]
1239
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 197]]
1240
+  (0.5ms) commit transaction
1241
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 197], ["LIMIT", 1]]
1242
+  (0.0ms) begin transaction
1243
+ LazyPerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.841986"], ["updated_at", "2023-04-24 02:58:14.841986"]]
1244
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:E4GCD4KG1MeQqSaGK2wo2z++UoUVVRmmJLj68GPYI/SjrIab082L"], ["id", 198]]
1245
+  (0.4ms) commit transaction
1246
+  (0.0ms) begin transaction
1247
+ LazyPerson Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 198]]
1248
+  (0.3ms) commit transaction
1249
+  (0.0ms) begin transaction
1250
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-04-24 02:58:14.844507"], ["updated_at", "2023-04-24 02:58:14.844507"]]
1251
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:rITEMsUab3fLaSmFxzZDY5HZWTiMMewmh6x0vfblUNvutPSbaNQY"], ["id", 199]]
1252
+  (0.5ms) commit transaction
1253
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 199], ["LIMIT", 1]]
1254
+  (0.7ms) SELECT sqlite_version(*)
1255
+  (0.0ms) begin transaction
1256
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.248700"], ["updated_at", "2023-06-27 15:35:14.248700"]]
1257
+ Person Update (0.1ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:Zo4eWoXHi4fKPaBGwTdGUw26oDONFP1BlAmA9Xs954q12eJzwNBoyps="], ["id", 200]]
1258
+  (0.5ms) commit transaction
1259
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 200], ["LIMIT", 1]]
1260
+  (0.0ms) begin transaction
1261
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.260644"], ["updated_at", "2023-06-27 15:35:14.260644"]]
1262
+  (0.6ms) commit transaction
1263
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 201], ["LIMIT", 1]]
1264
+  (0.0ms) begin transaction
1265
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.264307"], ["updated_at", "2023-06-27 15:35:14.264307"]]
1266
+  (0.5ms) commit transaction
1267
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 202], ["LIMIT", 1]]
1268
+  (0.0ms) begin transaction
1269
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.267142"], ["updated_at", "2023-06-27 15:35:14.267142"]]
1270
+ Person Update (0.1ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:5Kk3L0Wfu/XN7neRJNOXs5cKiCq1X4cYxIiomizjXlFTxFyBvQhqR+M="], ["id", 203]]
1271
+  (0.6ms) commit transaction
1272
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 203], ["LIMIT", 1]]
1273
+  (0.0ms) begin transaction
1274
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.280593"], ["updated_at", "2023-06-27 15:35:14.280593"]]
1275
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:fLCiqMhzKATthj+hZRKxzQprdW93czKQUBilr41D3RaLmwKJvDvA"], ["id", 204]]
1276
+  (0.6ms) commit transaction
1277
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 204], ["LIMIT", 1]]
1278
+  (0.0ms) begin transaction
1279
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.285098"], ["updated_at", "2023-06-27 15:35:14.285098"]]
1280
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ie3zu6S4iWJHs6efaexEcD4+jl+LlpppJwIetZ/7GlHCKEOrv1KY"], ["id", 205]]
1281
+  (0.5ms) commit transaction
1282
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 205], ["LIMIT", 1]]
1283
+  (0.0ms) begin transaction
1284
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.288659"], ["id", 205]]
1285
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 205]]
1286
+  (0.5ms) commit transaction
1287
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 205], ["LIMIT", 1]]
1288
+  (0.0ms) begin transaction
1289
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.290993"], ["updated_at", "2023-06-27 15:35:14.290993"]]
1290
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:APG+PHeDgqcS8DZnAIMtyvn2U5sHTyP5/+7rr17+0JMjrN1xErNY"], ["id", 206]]
1291
+  (0.5ms) commit transaction
1292
+  (0.0ms) begin transaction
1293
+ LazyPerson Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 206]]
1294
+  (0.5ms) commit transaction
1295
+  (0.0ms) begin transaction
1296
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.294608"], ["updated_at", "2023-06-27 15:35:14.294608"]]
1297
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:gr9LqRWNdcG/VuTzs0aStre0cT/X/ejkf3Pw0v5E3jgmwgnMpoWn"], ["id", 207]]
1298
+  (0.6ms) commit transaction
1299
+  (0.0ms) begin transaction
1300
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.297457"], ["updated_at", "2023-06-27 15:35:14.297457"]]
1301
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:bWzmRKjDMvgzMSDJw8YXkcVyBS52r2gy44eiIi+DgROJc0N9oZZx"], ["id", 208]]
1302
+  (0.5ms) commit transaction
1303
+  (0.0ms) begin transaction
1304
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.300009"], ["id", 208]]
1305
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 208]]
1306
+  (0.6ms) commit transaction
1307
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 208], ["LIMIT", 1]]
1308
+  (0.0ms) begin transaction
1309
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.302536"], ["updated_at", "2023-06-27 15:35:14.302536"]]
1310
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:p8sbNinkOd5g8yfMQrTgqhh2fzrjIStVzGY8EmBeyL8ZRVuR+RK0VQ=="], ["id", 209]]
1311
+  (0.6ms) commit transaction
1312
+  (0.1ms) begin transaction
1313
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.305512"], ["updated_at", "2023-06-27 15:35:14.305512"]]
1314
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:RV2x5+0/V/A0gMu6D0C1U5FS3+BMR5/MwatqJ6vWKJZph9V1c/K3"], ["id", 210]]
1315
+  (0.5ms) commit transaction
1316
+  (0.0ms) begin transaction
1317
+ LazyPerson Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-06-27 15:35:14.312808"], ["id", 210]]
1318
+  (0.5ms) commit transaction
1319
+  (0.0ms) begin transaction
1320
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.314672"], ["updated_at", "2023-06-27 15:35:14.314672"]]
1321
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:slR0V5+DcpG5EDp9xEpRqugl9/DHmcLMoc7lo3ogp2Au2mTyR5X4"], ["id", 211]]
1322
+  (0.6ms) commit transaction
1323
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 211], ["LIMIT", 1]]
1324
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 211], ["LIMIT", 1]]
1325
+  (0.0ms) begin transaction
1326
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.321849"], ["updated_at", "2023-06-27 15:35:14.321849"]]
1327
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Bb7BClOFUS0NJDc93EIFcrC0RzKRK/v5KU6BtPcsNee9pe9ZfPOG"], ["id", 212]]
1328
+  (0.6ms) commit transaction
1329
+  (0.0ms) begin transaction
1330
+ LazyPerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.325279"], ["updated_at", "2023-06-27 15:35:14.325279"]]
1331
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:kmO8BxnOteIKLgCOY7L/7VbkKhDCY6x4zpgGyMxcQ9G13McA+pA3"], ["id", 213]]
1332
+  (0.6ms) commit transaction
1333
+  (0.0ms) begin transaction
1334
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.328304"], ["updated_at", "2023-06-27 15:35:14.328304"]]
1335
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:02KtceAFgMc8wiHdT7l5/IukD5oQWc0gNqfiLOc3CkGAdv36gbpU"], ["id", 214]]
1336
+  (0.6ms) commit transaction
1337
+  (0.0ms) begin transaction
1338
+ LazyPerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.330739"], ["id", 214]]
1339
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 214]]
1340
+  (0.8ms) commit transaction
1341
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 214], ["LIMIT", 1]]
1342
+  (0.0ms) begin transaction
1343
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.333281"], ["updated_at", "2023-06-27 15:35:14.333281"]]
1344
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:fnqZajl+f5ebzq92uwapC9eQ9T7SOmVGyhPPXaLa/L6O2P0Swnr/"], ["id", 215]]
1345
+  (0.6ms) commit transaction
1346
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 215], ["LIMIT", 1]]
1347
+  (0.0ms) begin transaction
1348
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.337062"], ["updated_at", "2023-06-27 15:35:14.337062"]]
1349
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:EQZHa/3vnk7Jc4PdiIjz8yRohD9oAF0MYFc3jaD0gB2C5wGXTjy9"], ["id", 216]]
1350
+  (0.6ms) commit transaction
1351
+  (0.0ms) begin transaction
1352
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.340883"], ["updated_at", "2023-06-27 15:35:14.340883"]]
1353
+ Person Update (0.1ms) UPDATE "people" SET "business_card_encrypted" = ? WHERE "people"."id" = ? [["business_card_encrypted", "vault:v1:eQsfV6sHJZpDvge/O6TyUedmcFwxiblIcfx3KRFAfYPgHXoyH+ZGoiRtvn5AvY6mbJNBLn6MSFBSN2mi"], ["id", 217]]
1354
+  (0.6ms) commit transaction
1355
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 217], ["LIMIT", 1]]
1356
+  (0.0ms) begin transaction
1357
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.346874"], ["updated_at", "2023-06-27 15:35:14.346874"]]
1358
+ Person Update (0.0ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:thqGGgxJgzOSiZaT5qURKyd9lOc/3M0Po0ZWwsVs22XmfYtFWuGfW8yM+0G7dXz+kw=="], ["id", 218]]
1359
+  (0.7ms) commit transaction
1360
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 218], ["LIMIT", 1]]
1361
+  (0.0ms) begin transaction
1362
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.353025"], ["updated_at", "2023-06-27 15:35:14.353025"]]
1363
+ Person Update (0.1ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:xLhEWcS79dTv6+cCs4LmdGOzRQ8+ZZ3rO2GHLYUeoYNnBNziR92KOPg="], ["id", 219]]
1364
+  (0.6ms) commit transaction
1365
+  (0.0ms) begin transaction
1366
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.356321"], ["updated_at", "2023-06-27 15:35:14.356321"]]
1367
+  (0.6ms) commit transaction
1368
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 220], ["LIMIT", 1]]
1369
+  (0.0ms) begin transaction
1370
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.361857"], ["updated_at", "2023-06-27 15:35:14.361857"]]
1371
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:9AqaH/1kqYX0TZkGuR9zbVisT/E1fY+yJ5k7P2azhUaWGKpl4qpB4jAdodQ="], ["id", 221]]
1372
+  (1.3ms) commit transaction
1373
+  (0.0ms) begin transaction
1374
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.365119"], ["id", 221]]
1375
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", ""], ["id", 221]]
1376
+  (0.5ms) commit transaction
1377
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 221], ["LIMIT", 1]]
1378
+  (0.0ms) begin transaction
1379
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.367653"], ["updated_at", "2023-06-27 15:35:14.367653"]]
1380
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:7rWcClNteJCZBDU484ZaS+Nj5fLgC7GncK0Xfhb7w5z3OyhGFGFXI060i3Q="], ["id", 222]]
1381
+  (0.5ms) commit transaction
1382
+  (0.0ms) begin transaction
1383
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.370239"], ["id", 222]]
1384
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", nil], ["id", 222]]
1385
+  (0.5ms) commit transaction
1386
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 222], ["LIMIT", 1]]
1387
+  (0.0ms) begin transaction
1388
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.372807"], ["updated_at", "2023-06-27 15:35:14.372807"]]
1389
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:amaKEHvUO98dmBXoyv7u8fBmEsd/NlBeOakBrrt3zrHWRk+52TKvkLY5sxI="], ["id", 223]]
1390
+  (0.6ms) commit transaction
1391
+  (0.0ms) begin transaction
1392
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.375547"], ["updated_at", "2023-06-27 15:35:14.375547"]]
1393
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:dc+hznFD+klQQP6aT6wDaa+5fU+GuSEQppBeoAUOctkb5x7NmwGGAdvTSKA="], ["id", 224]]
1394
+  (0.5ms) commit transaction
1395
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 224], ["LIMIT", 1]]
1396
+  (0.0ms) begin transaction
1397
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.380127"], ["updated_at", "2023-06-27 15:35:14.380127"]]
1398
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:Pno5bTGZm9lkoj6joj4BczD7qCsA8uQlh0ZVHcWEyhwV2W3B2s7FqbdMijA="], ["id", 225]]
1399
+  (0.7ms) commit transaction
1400
+  (0.0ms) begin transaction
1401
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.385342"], ["updated_at", "2023-06-27 15:35:14.385342"]]
1402
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:RGlMflyGIGWMfokcy6wYQ0ouxpUhvh5+Dd4zkJZwaaFVOZTbwJIUPg=="], ["id", 226]]
1403
+  (0.5ms) commit transaction
1404
+  (0.0ms) begin transaction
1405
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.388263"], ["updated_at", "2023-06-27 15:35:14.388263"]]
1406
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:x4a6VUw9fKnDRKQ4hTSYrulCU4wJY27FCwtjevHEv3GBMXeJlJ7IXQ=="], ["id", 227]]
1407
+  (0.6ms) commit transaction
1408
+  (0.0ms) begin transaction
1409
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.391192"], ["updated_at", "2023-06-27 15:35:14.391192"]]
1410
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:K54RYxV4A8nl1NN/Mnn6VP3gAkhFRDkSOKHSkY6QUgR7HDP/oJd3ig=="], ["id", 228]]
1411
+  (0.5ms) commit transaction
1412
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 228], ["LIMIT", 1]]
1413
+  (0.0ms) begin transaction
1414
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.395986"], ["updated_at", "2023-06-27 15:35:14.395986"]]
1415
+ Person Update (0.1ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:F22SKQRc6R2Ij2LEqvJbSVKJCBHltdETcIdCbA6UJc6m1T2uu7iTsA=="], ["id", 229]]
1416
+  (0.7ms) commit transaction
1417
+  (0.0ms) begin transaction
1418
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.398664"], ["id", 229]]
1419
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", nil], ["id", 229]]
1420
+  (0.7ms) commit transaction
1421
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 229], ["LIMIT", 1]]
1422
+  (0.0ms) begin transaction
1423
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.401839"], ["updated_at", "2023-06-27 15:35:14.401839"]]
1424
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:YzHdvMvfw9Eu+oZbWGvL03V+QDX+n8QzFESd6VCKVrz4HbNUiDCCjg=="], ["id", 230]]
1425
+  (0.5ms) commit transaction
1426
+  (0.0ms) begin transaction
1427
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.404151"], ["id", 230]]
1428
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", ""], ["id", 230]]
1429
+  (0.5ms) commit transaction
1430
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 230], ["LIMIT", 1]]
1431
+  (0.0ms) begin transaction
1432
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.407327"], ["updated_at", "2023-06-27 15:35:14.407327"]]
1433
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1434
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 231]]
1435
+  (0.5ms) commit transaction
1436
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 231], ["LIMIT", 1]]
1437
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1438
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1439
+  (0.0ms) begin transaction
1440
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.411097"], ["updated_at", "2023-06-27 15:35:14.411097"]]
1441
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
1442
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 232]]
1443
+  (0.4ms) commit transaction
1444
+  (0.0ms) begin transaction
1445
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.414907"], ["updated_at", "2023-06-27 15:35:14.414907"]]
1446
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:zONbtYaP9QzdrKhvwGXhvCcfBum7OgqicedPdGTx2mDNRlBKE9zo"], ["id", 233]]
1447
+  (0.7ms) commit transaction
1448
+  (0.0ms) begin transaction
1449
+ Person Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-06-27 15:35:14.418856"], ["id", 233]]
1450
+  (0.5ms) commit transaction
1451
+  (0.0ms) begin transaction
1452
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.420914"], ["updated_at", "2023-06-27 15:35:14.420914"]]
1453
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:A2xxcMD4dJYa+NEqyJI3C+ymDnDb2KVpd0HZVHWgDVZxuKyjbLF1"], ["id", 234]]
1454
+  (0.5ms) commit transaction
1455
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 234], ["LIMIT", 1]]
1456
+  (0.0ms) begin transaction
1457
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.426365"], ["updated_at", "2023-06-27 15:35:14.426365"]]
1458
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ej8i/A+ZhwQejKlP4DZDOPdK7jPZB9uMqJuq0p8EBvC9qUwEOqn4"], ["id", 235]]
1459
+  (0.6ms) commit transaction
1460
+  (0.0ms) begin transaction
1461
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.429008"], ["id", 235]]
1462
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 235]]
1463
+  (0.4ms) commit transaction
1464
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 235], ["LIMIT", 1]]
1465
+  (0.0ms) begin transaction
1466
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.431884"], ["updated_at", "2023-06-27 15:35:14.431884"]]
1467
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:tkk/JfWFEHyshKsl2KXLmCJNTFDlz1MWRcZAsqfZxMH8eMG+nLQf"], ["id", 236]]
1468
+  (0.5ms) commit transaction
1469
+  (0.0ms) begin transaction
1470
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.434559"], ["id", 236]]
1471
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 236]]
1472
+  (0.4ms) commit transaction
1473
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 236], ["LIMIT", 1]]
1474
+  (0.0ms) begin transaction
1475
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.437261"], ["updated_at", "2023-06-27 15:35:14.437261"]]
1476
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:jOiqObE7TyQQInImd57VuPZFYcbfLJhi5+oiSh/HT46y23jHcZWz"], ["id", 237]]
1477
+  (0.6ms) commit transaction
1478
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 237], ["LIMIT", 1]]
1479
+  (0.0ms) begin transaction
1480
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.442463"], ["updated_at", "2023-06-27 15:35:14.442463"]]
1481
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:LGXxNJ2GotCygvXbCmER1sXSyu+qoM7KO6DIPYrEfEwe5a367Ay1"], ["id", 238]]
1482
+  (0.5ms) commit transaction
1483
+  (0.0ms) begin transaction
1484
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.445313"], ["updated_at", "2023-06-27 15:35:14.445313"]]
1485
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:7XHDKCFocR9KVMG4ytNw2dyjsc0ZgFc2uzi6qy7LNwpPCYr6OBYK"], ["id", 239]]
1486
+  (0.5ms) commit transaction
1487
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 239], ["LIMIT", 1]]
1488
+  (0.0ms) begin transaction
1489
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.450925"], ["id", 239]]
1490
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 239]]
1491
+  (0.4ms) commit transaction
1492
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 239], ["LIMIT", 1]]
1493
+  (0.0ms) begin transaction
1494
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.453569"], ["updated_at", "2023-06-27 15:35:14.453569"]]
1495
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Z8GGs59RvlArMvozbLP6UdpsYVRD9vTJ/bpYwjV5v6ie5F8PUlCF"], ["id", 240]]
1496
+  (0.5ms) commit transaction
1497
+  (0.0ms) begin transaction
1498
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.456676"], ["updated_at", "2023-06-27 15:35:14.456676"]]
1499
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:CCyUl+drrVx3IMj7OqF10UL71AaMcpmwp8EzERFDT9s2fvGzOMkg0A=="], ["id", 241]]
1500
+  (0.5ms) commit transaction
1501
+  (0.0ms) begin transaction
1502
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.459312"], ["updated_at", "2023-06-27 15:35:14.459312"]]
1503
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Dlr1aufvb/SEcChUtJDj6Y+jGeaFRQYP1WeJGdvRA75vAyLZkjxX"], ["id", 242]]
1504
+  (0.5ms) commit transaction
1505
+  (0.0ms) begin transaction
1506
+ Person Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 242]]
1507
+  (0.7ms) commit transaction
1508
+  (0.0ms) begin transaction
1509
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.463580"], ["updated_at", "2023-06-27 15:35:14.463580"]]
1510
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:usl7KZ8Eeyljk7LzmrSQOKMTzMosiOU0EWtZhTMrEUUwx4FbODIB"], ["id", 243]]
1511
+  (0.6ms) commit transaction
1512
+  (0.0ms) begin transaction
1513
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.466282"], ["updated_at", "2023-06-27 15:35:14.466282"]]
1514
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:X9wv5jAgU07E3Uc3yDzlfDsQmI/AjyJ4lInYcgBs7oa3ZYPWzMSk"], ["id", 244]]
1515
+  (0.7ms) commit transaction
1516
+  (0.0ms) begin transaction
1517
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.469487"], ["updated_at", "2023-06-27 15:35:14.469487"]]
1518
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:yFUXGeAOsmry0237XsZw2Gdu1ngJ4+JxU3oNo7M5WFxw87UnQ0ly"], ["id", 245]]
1519
+  (0.5ms) commit transaction
1520
+  (0.0ms) begin transaction
1521
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.472270"], ["id", 245]]
1522
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 245]]
1523
+  (0.4ms) commit transaction
1524
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 245], ["LIMIT", 1]]
1525
+  (0.0ms) begin transaction
1526
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.475912"], ["updated_at", "2023-06-27 15:35:14.475912"]]
1527
+ Person Update (0.1ms) UPDATE "people" SET "favorite_color_encrypted" = ? WHERE "people"."id" = ? [["favorite_color_encrypted", "vault:v1:PQAu/aOYqAmghsmuBvkspkn4qnPbuy9xoY3tjtZEUlwn/5ivYug="], ["id", 246]]
1528
+  (0.5ms) commit transaction
1529
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 246], ["LIMIT", 1]]
1530
+  (0.0ms) begin transaction
1531
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.481506"], ["updated_at", "2023-06-27 15:35:14.481506"]]
1532
+  (0.4ms) commit transaction
1533
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 247], ["LIMIT", 1]]
1534
+  (0.0ms) begin transaction
1535
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.484606"], ["updated_at", "2023-06-27 15:35:14.484606"]]
1536
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:hiFzJey1fKiyY0rrCu6UEL42ZkWWvm2jnfH5ZF54T/R7Etc="], ["id", 248]]
1537
+  (0.5ms) commit transaction
1538
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 248], ["LIMIT", 1]]
1539
+  (0.0ms) begin transaction
1540
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.489848"], ["updated_at", "2023-06-27 15:35:14.489848"]]
1541
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:slmd5h3yZkxE0H9D4kMsWlOGSSc+nCk8D1VAuCkA/jDoAc0="], ["id", 249]]
1542
+  (0.7ms) commit transaction
1543
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 249], ["LIMIT", 1]]
1544
+  (0.0ms) begin transaction
1545
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.494324"], ["updated_at", "2023-06-27 15:35:14.494324"]]
1546
+  (0.5ms) commit transaction
1547
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 250], ["LIMIT", 1]]
1548
+  (0.0ms) begin transaction
1549
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.502471"], ["updated_at", "2023-06-27 15:35:14.502471"]]
1550
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Y9/nIh3G9+Xw5B0ZsZNDcrhdf3L5FVGPbaN48XFJmP1ZOQdoRWv7"], ["id", 251]]
1551
+  (0.6ms) commit transaction
1552
+  (0.0ms) begin transaction
1553
+ LazySinglePerson Update (0.3ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.504675"], ["id", 251]]
1554
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:V6oZdfPF+fAoSL/KYLnwgCp4tSK3empnidyTebygFfiLcW7lRJdylNDuamAPnSU="], ["id", 251]]
1555
+  (0.6ms) commit transaction
1556
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 251], ["LIMIT", 1]]
1557
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 251], ["LIMIT", 1]]
1558
+  (0.0ms) begin transaction
1559
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.509655"], ["updated_at", "2023-06-27 15:35:14.509655"]]
1560
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:z8+1UQIOlsSL0TAlyisZpxj1PSi9Q5KBPVgk5tOWH8GWzSEOL/D6"], ["id", 252]]
1561
+  (0.4ms) commit transaction
1562
+  (0.0ms) begin transaction
1563
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2023-06-27 15:35:14.511401"], ["id", 252]]
1564
+  (0.4ms) commit transaction
1565
+  (0.0ms) begin transaction
1566
+ LazySinglePerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.512469"], ["updated_at", "2023-06-27 15:35:14.512469"]]
1567
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:/yCnNu27F5GvrceVfmqXSGUWflVvvpr5o8oRAmsX9XRGC935nxoK"], ["id", 253]]
1568
+  (0.4ms) commit transaction
1569
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 253], ["LIMIT", 1]]
1570
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 253], ["LIMIT", 1]]
1571
+  (0.1ms) begin transaction
1572
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.515430"], ["updated_at", "2023-06-27 15:35:14.515430"]]
1573
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:jN3rpKiszZ7ymUqmrW0RXMB9EuR9qPPwJ5r9hkLNV5POsutYqaQU"], ["id", 254]]
1574
+  (0.6ms) commit transaction
1575
+  (0.0ms) begin transaction
1576
+ LazyPerson Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 254]]
1577
+  (0.4ms) commit transaction
1578
+  (0.0ms) begin transaction
1579
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.519130"], ["updated_at", "2023-06-27 15:35:14.519130"]]
1580
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:rMJvRVG3GdnCpfhpRESXY0f/TRLBs2CVYpSyYKsXAODopMRmCdq6"], ["id", 255]]
1581
+  (0.5ms) commit transaction
1582
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 255], ["LIMIT", 1]]
1583
+  (0.0ms) begin transaction
1584
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.522248"], ["id", 255]]
1585
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 255]]
1586
+  (0.6ms) commit transaction
1587
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 255], ["LIMIT", 1]]
1588
+  (0.0ms) begin transaction
1589
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.524249"], ["updated_at", "2023-06-27 15:35:14.524249"]]
1590
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:em9Nn521dTDI5QV6tdyv3KLV8ua0umomIo4eHusbrbOD/oV2zY5E"], ["id", 256]]
1591
+  (0.6ms) commit transaction
1592
+  (0.0ms) begin transaction
1593
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.526454"], ["id", 256]]
1594
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 256]]
1595
+  (0.5ms) commit transaction
1596
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 256], ["LIMIT", 1]]
1597
+  (0.0ms) begin transaction
1598
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.528375"], ["updated_at", "2023-06-27 15:35:14.528375"]]
1599
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:iFrrPO/Tpf/RhvYG0stp/I17lUZx5SEL5W1rrFNWL4y3v1nyQSu9"], ["id", 257]]
1600
+  (0.7ms) commit transaction
1601
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 257], ["LIMIT", 1]]
1602
+  (0.0ms) begin transaction
1603
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.532166"], ["updated_at", "2023-06-27 15:35:14.532166"]]
1604
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Y9oYiWLdL2OIKheDOEPi4d3djx2dWf8re2RZOPkNXkB6gKbgHTtD"], ["id", 258]]
1605
+  (0.5ms) commit transaction
1606
+  (0.0ms) begin transaction
1607
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.534527"], ["updated_at", "2023-06-27 15:35:14.534527"]]
1608
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:uHCG+ZEFHoKysnCGyvS/p4bo0z9YnEdfqtxb6AZ9fI49Baro6fAI"], ["id", 259]]
1609
+  (0.5ms) commit transaction
1610
+  (0.0ms) begin transaction
1611
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.536656"], ["updated_at", "2023-06-27 15:35:14.536656"]]
1612
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:jNujFrTz+gqlbgmQVnxqfTg4Arzn/4pYJU29Hd6czMOBcpt2Azre"], ["id", 260]]
1613
+  (0.6ms) commit transaction
1614
+  (0.0ms) begin transaction
1615
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.538469"], ["id", 260]]
1616
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 260]]
1617
+  (0.4ms) commit transaction
1618
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 260], ["LIMIT", 1]]
1619
+  (0.0ms) begin transaction
1620
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.539930"], ["updated_at", "2023-06-27 15:35:14.539930"]]
1621
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:4MjDuegOLmC4Yeje8AL2RHjrK5LaM3prOKhP1cZRbaVfN3rL94GK"], ["id", 261]]
1622
+  (0.5ms) commit transaction
1623
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 261], ["LIMIT", 1]]
1624
+  (0.0ms) begin transaction
1625
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.543240"], ["updated_at", "2023-06-27 15:35:14.543240"]]
1626
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:z0LsN0nNODyHSRnL02NAdCdcWVBkUkLKW+MfbIfk3Ttv7aeOIPUALQ=="], ["id", 262]]
1627
+  (0.6ms) commit transaction
1628
+  (0.0ms) begin transaction
1629
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2023-06-27 15:35:14.545852"], ["updated_at", "2023-06-27 15:35:14.545852"]]
1630
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:s8pgnas5oA9vf3vixqkIvE+fS4hP0NxAXP2tWMfvkbVQjv/Zg2Hy"], ["id", 263]]
1631
+  (0.9ms) commit transaction
1632
+  (0.0ms) begin transaction
1633
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2023-06-27 15:35:14.548302"], ["id", 263]]
1634
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:xEr7IsLUoKH2jdAxoPqzauED8XLM3EOpUAB+fAFaxwazbngQsAgtMjDllInoBmQ="], ["id", 263]]
1635
+  (0.5ms) commit transaction
1636
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 263], ["LIMIT", 1]]
1637
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 263], ["LIMIT", 1]]