samvera-persona 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,537 @@
1
+  (0.1ms) DROP TABLE IF EXISTS "users"
2
+ ↳ db/schema.rb:15
3
+  (0.1ms) SELECT sqlite_version(*)
4
+ ↳ db/schema.rb:15
5
+  (10.3ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
6
+ ↳ db/schema.rb:15
7
+  (10.1ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
8
+ ↳ db/schema.rb:15
9
+  (12.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
10
+ ↳ db/schema.rb:15
11
+  (11.7ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
12
+ ↳ db/schema.rb:15
13
+  (12.0ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
14
+ ↳ db/schema.rb:15
15
+  (11.7ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
16
+ ↳ db/schema.rb:15
17
+  (12.0ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
18
+ ↳ db/schema.rb:15
19
+  (13.3ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
20
+ ↳ db/schema.rb:15
21
+  (12.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
22
+ ↳ db/schema.rb:13
23
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
24
+ ↳ db/schema.rb:13
25
+  (11.0ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
26
+ ↳ db/schema.rb:13
27
+  (11.8ms) INSERT INTO "schema_migrations" (version) VALUES
28
+ (20190513181646),
29
+ (20190628003608),
30
+ (20190520170817);
31
+
32
+ 
33
+ ↳ db/schema.rb:13
34
+  (13.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
35
+ ↳ db/schema.rb:13
36
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
37
+ ↳ db/schema.rb:13
38
+  (0.1ms) begin transaction
39
+ ↳ db/schema.rb:13
40
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-11-29 14:13:07.035536"], ["updated_at", "2021-11-29 14:13:07.035536"]]
41
+ ↳ db/schema.rb:13
42
+  (12.3ms) commit transaction
43
+ ↳ db/schema.rb:13
44
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
45
+ ↳ bin/rails:14
46
+  (0.1ms) begin transaction
47
+ ↳ bin/rails:14
48
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-11-29 14:13:07.055470"], ["key", "environment"]]
49
+ ↳ bin/rails:14
50
+  (13.2ms) commit transaction
51
+ ↳ bin/rails:14
52
+  (0.0ms) SELECT sqlite_version(*)
53
+ ↳ bin/rails:14
54
+  (17.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
55
+ ↳ bin/rails:14
56
+  (9.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
57
+ ↳ bin/rails:14
58
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
59
+ ↳ bin/rails:14
60
+ Migrating to CreateUsersForEngineTesting (20190513181646)
61
+  (0.0ms) begin transaction
62
+ ↳ bin/rails:14
63
+  (0.0ms) SELECT sqlite_version(*)
64
+ ↳ db/migrate/20190513181646_create_users_for_engine_testing.rb:4
65
+  (0.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
66
+ ↳ db/migrate/20190513181646_create_users_for_engine_testing.rb:4
67
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190513181646"]]
68
+ ↳ bin/rails:14
69
+  (9.7ms) commit transaction
70
+ ↳ bin/rails:14
71
+ Migrating to AddDeletedAtToUsers (20190520170817)
72
+  (0.0ms) begin transaction
73
+ ↳ bin/rails:14
74
+  (0.2ms) ALTER TABLE "users" ADD "deleted_at" datetime
75
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190520170817_add_deleted_at_to_users.rb:3
76
+  (0.1ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
77
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190520170817_add_deleted_at_to_users.rb:4
78
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190520170817"]]
79
+ ↳ bin/rails:14
80
+  (10.9ms) commit transaction
81
+ ↳ bin/rails:14
82
+ Migrating to AddDeviseToUsers (20190628003608)
83
+  (0.1ms) begin transaction
84
+ ↳ bin/rails:14
85
+  (0.8ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
86
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:7
87
+  (0.5ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
88
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:8
89
+  (0.4ms) ALTER TABLE "users" ADD "reset_password_token" varchar
90
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:11
91
+  (0.4ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
92
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:12
93
+  (0.4ms) ALTER TABLE "users" ADD "remember_created_at" datetime
94
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:15
95
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
96
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:40
97
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
98
+ ↳ db/migrate/20190628003608_add_devise_to_users.rb:41
99
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190628003608"]]
100
+ ↳ bin/rails:14
101
+  (12.7ms) commit transaction
102
+ ↳ bin/rails:14
103
+ Migrating to PersonaDeviseInvitableAddToUsers (20190628003746)
104
+  (0.0ms) begin transaction
105
+ ↳ bin/rails:14
106
+  (0.2ms) ALTER TABLE "users" ADD "invitation_token" varchar
107
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:5
108
+  (0.1ms) ALTER TABLE "users" ADD "invitation_created_at" datetime
109
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:6
110
+  (0.1ms) ALTER TABLE "users" ADD "invitation_sent_at" datetime
111
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:7
112
+  (0.1ms) ALTER TABLE "users" ADD "invitation_accepted_at" datetime
113
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:8
114
+  (0.1ms) ALTER TABLE "users" ADD "invitation_limit" integer
115
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:9
116
+  (0.1ms) ALTER TABLE "users" ADD "invited_by_type" varchar
117
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:10
118
+  (0.2ms) ALTER TABLE "users" ADD "invited_by_id" integer
119
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:10
120
+  (0.1ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
121
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:10
122
+  (0.1ms) ALTER TABLE "users" ADD "invitations_count" integer DEFAULT 0
123
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:11
124
+  (0.1ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
125
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:12
126
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
127
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:13
128
+  (0.1ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
129
+ ↳ /var/home/cjcolvar/Code/samvera/samvera-persona/db/migrate/20190628003746_persona_devise_invitable_add_to_users.rb:14
130
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190628003746"]]
131
+ ↳ bin/rails:14
132
+  (11.5ms) commit transaction
133
+ ↳ bin/rails:14
134
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
135
+ ↳ bin/rails:14
136
+  (0.1ms) begin transaction
137
+ ↳ bin/rails:14
138
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-11-29 14:13:35.440690"], ["updated_at", "2021-11-29 14:13:35.440690"]]
139
+ ↳ bin/rails:14
140
+  (12.1ms) commit transaction
141
+ ↳ bin/rails:14
142
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
143
+ ↳ bin/rails:14
144
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
145
+ ↳ bin/rails:14
146
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
147
+ ↳ bin/rails:14
148
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
149
+ ↳ bin/rails:14
150
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
151
+ ↳ bin/rails:14
152
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
153
+ ↳ bin/rails:14
154
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
155
+ ↳ bin/rails:14
156
+  (0.0ms) DROP TABLE IF EXISTS "users"
157
+ ↳ db/schema.rb:15
158
+  (0.0ms) SELECT sqlite_version(*)
159
+ ↳ db/schema.rb:15
160
+  (17.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
161
+ ↳ db/schema.rb:15
162
+  (10.5ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
163
+ ↳ db/schema.rb:15
164
+  (10.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
165
+ ↳ db/schema.rb:15
166
+  (9.7ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
167
+ ↳ db/schema.rb:15
168
+  (9.4ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
169
+ ↳ db/schema.rb:15
170
+  (10.0ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
171
+ ↳ db/schema.rb:15
172
+  (10.2ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
173
+ ↳ db/schema.rb:15
174
+  (10.6ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
175
+ ↳ db/schema.rb:15
176
+  (11.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
177
+ ↳ db/schema.rb:13
178
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
179
+ ↳ db/schema.rb:13
180
+  (12.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
181
+ ↳ db/schema.rb:13
182
+  (12.2ms) INSERT INTO "schema_migrations" (version) VALUES
183
+ (20190513181646),
184
+ (20190628003608),
185
+ (20190520170817);
186
+
187
+ 
188
+ ↳ db/schema.rb:13
189
+  (12.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
+ ↳ db/schema.rb:13
191
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
192
+ ↳ db/schema.rb:13
193
+  (0.1ms) begin transaction
194
+ ↳ db/schema.rb:13
195
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-11-29 14:13:41.630032"], ["updated_at", "2021-11-29 14:13:41.630032"]]
196
+ ↳ db/schema.rb:13
197
+  (13.4ms) commit transaction
198
+ ↳ db/schema.rb:13
199
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
200
+ ↳ bin/rails:14
201
+  (0.1ms) begin transaction
202
+ ↳ bin/rails:14
203
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-11-29 14:13:41.652557"], ["key", "environment"]]
204
+ ↳ bin/rails:14
205
+  (13.3ms) commit transaction
206
+ ↳ bin/rails:14
207
+  (1.5ms) SELECT sqlite_version(*)
208
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
209
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
210
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
211
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
212
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
213
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
214
+  (1.5ms) SELECT sqlite_version(*)
215
+  (18.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
216
+  (10.3ms) 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)
217
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
218
+ Migrating to CreateUsersForEngineTesting (20190513181646)
219
+  (0.0ms) begin transaction
220
+  (0.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
221
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190513181646"]]
222
+  (11.7ms) commit transaction
223
+ Migrating to AddDeletedAtToUsers (20190520170817)
224
+  (0.0ms) begin transaction
225
+  (0.4ms) ALTER TABLE "users" ADD "deleted_at" datetime
226
+  (0.1ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
227
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190520170817"]]
228
+  (11.2ms) commit transaction
229
+ Migrating to AddDeviseToUsers (20190628003608)
230
+  (0.0ms) begin transaction
231
+  (0.2ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
232
+  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
233
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar
234
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
235
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
236
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
237
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
238
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190628003608"]]
239
+  (11.0ms) commit transaction
240
+ Migrating to PersonaDeviseInvitableAddToUsers (20190628003746)
241
+  (0.0ms) begin transaction
242
+  (0.2ms) ALTER TABLE "users" ADD "invitation_token" varchar
243
+  (0.1ms) ALTER TABLE "users" ADD "invitation_created_at" datetime
244
+  (0.1ms) ALTER TABLE "users" ADD "invitation_sent_at" datetime
245
+  (0.1ms) ALTER TABLE "users" ADD "invitation_accepted_at" datetime
246
+  (0.1ms) ALTER TABLE "users" ADD "invitation_limit" integer
247
+  (0.1ms) ALTER TABLE "users" ADD "invited_by_type" varchar
248
+  (0.2ms) ALTER TABLE "users" ADD "invited_by_id" integer
249
+  (0.1ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
250
+  (0.2ms) ALTER TABLE "users" ADD "invitations_count" integer DEFAULT 0
251
+  (0.1ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
252
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
253
+  (0.1ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
254
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190628003746"]]
255
+  (10.5ms) commit transaction
256
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
257
+  (0.0ms) begin transaction
258
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-12-22 12:42:45.778317"], ["updated_at", "2021-12-22 12:42:45.778317"]]
259
+  (10.8ms) commit transaction
260
+  (0.0ms) SELECT sqlite_version(*)
261
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
262
+  (0.0ms) SELECT sqlite_version(*)
263
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
264
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
265
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
266
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
267
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
268
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
269
+  (0.0ms) SELECT sqlite_version(*)
270
+  (0.0ms) SELECT sqlite_version(*)
271
+  (0.1ms) DROP TABLE IF EXISTS "users"
272
+  (10.7ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
273
+  (9.4ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
274
+  (9.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
275
+  (9.7ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
276
+  (9.3ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
277
+  (9.7ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
278
+  (10.3ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
279
+  (11.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
280
+  (10.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
281
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
282
+  (10.4ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
283
+  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES
284
+ (20190513181646),
285
+ (20190520170817),
286
+ (20190628003608);
287
+
288
+ 
289
+  (10.8ms) 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)
290
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
291
+  (0.1ms) begin transaction
292
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2021-12-22 12:42:45.955346"], ["updated_at", "2021-12-22 12:42:45.955346"]]
293
+  (13.0ms) commit transaction
294
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
295
+  (0.1ms) begin transaction
296
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2021-12-22 12:42:45.982645"], ["key", "environment"]]
297
+  (12.9ms) commit transaction
298
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
299
+  (0.1ms) begin transaction
300
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "4debe6f4f4a1b169db4fd60a14c6b78a605578e0"], ["created_at", "2021-12-22 12:42:46.008685"], ["updated_at", "2021-12-22 12:42:46.008685"]]
301
+  (12.1ms) commit transaction
302
+ DEPRECATION WARNING: Non-URL-safe CSRF tokens are deprecated. Use 6.1 defaults or above. (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/config/environment.rb:5)
303
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
304
+ `legacy_connection_handling` to `false` in your application.
305
+
306
+ The new connection handling does not support `connection_handlers`
307
+ getter and setter.
308
+
309
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
310
+ (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)
311
+ ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
312
+ ActiveRecord::InternalMetadata Pluck (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
313
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
314
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
315
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
316
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
317
+  (0.1ms) DROP TABLE IF EXISTS "users"
318
+  (12.0ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "deleted_at" datetime(6), "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "invitation_token" varchar, "invitation_created_at" datetime(6), "invitation_sent_at" datetime(6), "invitation_accepted_at" datetime(6), "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
319
+  (11.3ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
320
+  (11.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
321
+  (11.8ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
322
+  (12.8ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
323
+  (12.5ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
324
+  (13.6ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
325
+  (13.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
326
+  (13.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
327
+ ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
328
+  (13.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
329
+  (13.0ms) INSERT INTO "schema_migrations" (version) VALUES
330
+ (20190513181646),
331
+ (20190520170817),
332
+ (20190628003608);
333
+
334
+ 
335
+  (12.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)
336
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
337
+ TRANSACTION (0.8ms) begin transaction
338
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-02-07 17:50:01.102212"], ["updated_at", "2023-02-07 17:50:01.102212"]]
339
+ TRANSACTION (11.9ms) commit transaction
340
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
341
+ TRANSACTION (0.1ms) begin transaction
342
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-02-07 17:50:01.128356"], ["key", "environment"]]
343
+ TRANSACTION (12.6ms) commit transaction
344
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
345
+ TRANSACTION (0.1ms) begin transaction
346
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "a0d807ec79111b6bd4f504fbbcc0ddc17749f33f"], ["created_at", "2023-02-07 17:50:01.150867"], ["updated_at", "2023-02-07 17:50:01.150867"]]
347
+ TRANSACTION (13.1ms) commit transaction
348
+ DEPRECATION WARNING: Non-URL-safe CSRF tokens are deprecated. Use 6.1 defaults or above. (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/config/environment.rb:5)
349
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
350
+ `legacy_connection_handling` to `false` in your application.
351
+
352
+ The new connection handling does not support `connection_handlers`
353
+ getter and setter.
354
+
355
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
356
+ (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)
357
+ ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
358
+ ActiveRecord::InternalMetadata Pluck (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
359
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
360
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
361
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
362
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
363
+  (0.1ms) DROP TABLE IF EXISTS "users"
364
+  (17.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "deleted_at" datetime(6), "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "invitation_token" varchar, "invitation_created_at" datetime(6), "invitation_sent_at" datetime(6), "invitation_accepted_at" datetime(6), "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
365
+  (10.4ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
366
+  (10.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
367
+  (9.8ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
368
+  (10.1ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
369
+  (10.0ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
370
+  (10.7ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
371
+  (11.4ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
372
+  (12.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
373
+ ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
374
+  (14.0ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
375
+  (13.5ms) INSERT INTO "schema_migrations" (version) VALUES
376
+ (20190513181646),
377
+ (20190520170817),
378
+ (20190628003608);
379
+
380
+ 
381
+  (13.5ms) 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)
382
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
383
+ TRANSACTION (0.1ms) begin transaction
384
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-02-07 17:50:39.753588"], ["updated_at", "2023-02-07 17:50:39.753588"]]
385
+ TRANSACTION (12.3ms) commit transaction
386
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
387
+ TRANSACTION (0.1ms) begin transaction
388
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-02-07 17:50:39.776287"], ["key", "environment"]]
389
+ TRANSACTION (11.9ms) commit transaction
390
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
391
+ TRANSACTION (0.1ms) begin transaction
392
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "a0d807ec79111b6bd4f504fbbcc0ddc17749f33f"], ["created_at", "2023-02-07 17:50:39.795357"], ["updated_at", "2023-02-07 17:50:39.795357"]]
393
+ TRANSACTION (12.2ms) commit transaction
394
+  (3.1ms) SELECT sqlite_version(*)
395
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
396
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
397
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
398
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
399
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
400
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
401
+  (0.0ms) SELECT sqlite_version(*)
402
+  (0.0ms) SELECT sqlite_version(*)
403
+  (0.1ms) DROP TABLE IF EXISTS "users"
404
+  (12.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
405
+  (10.8ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
406
+  (12.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
407
+  (12.0ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
408
+  (12.3ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
409
+  (12.5ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
410
+  (12.3ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
411
+  (12.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
412
+  (13.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
413
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
414
+  (13.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
415
+  (12.9ms) INSERT INTO "schema_migrations" (version) VALUES
416
+ (20190513181646),
417
+ (20190520170817),
418
+ (20190628003608);
419
+
420
+ 
421
+  (13.1ms) 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)
422
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
423
+ TRANSACTION (0.1ms) begin transaction
424
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-02-07 18:05:56.598593"], ["updated_at", "2023-02-07 18:05:56.598593"]]
425
+ TRANSACTION (11.7ms) commit transaction
426
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
427
+ TRANSACTION (0.1ms) begin transaction
428
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-02-07 18:05:56.619598"], ["key", "environment"]]
429
+ TRANSACTION (12.6ms) commit transaction
430
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
431
+ TRANSACTION (0.1ms) begin transaction
432
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "a0d807ec79111b6bd4f504fbbcc0ddc17749f33f"], ["created_at", "2023-02-07 18:05:56.642465"], ["updated_at", "2023-02-07 18:05:56.642465"]]
433
+ TRANSACTION (13.1ms) commit transaction
434
+  (0.9ms) SELECT sqlite_version(*)
435
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
436
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
437
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
438
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
439
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
440
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
441
+  (0.0ms) SELECT sqlite_version(*)
442
+  (0.0ms) SELECT sqlite_version(*)
443
+  (0.1ms) DROP TABLE IF EXISTS "users"
444
+  (11.0ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
445
+  (12.1ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
446
+  (11.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
447
+  (11.9ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
448
+  (11.7ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
449
+  (12.4ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
450
+  (12.1ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
451
+  (12.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
452
+  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
453
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
454
+  (9.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
455
+  (10.3ms) INSERT INTO "schema_migrations" (version) VALUES
456
+ (20190513181646),
457
+ (20190520170817),
458
+ (20190628003608);
459
+
460
+ 
461
+  (12.1ms) 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)
462
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
463
+ TRANSACTION (0.0ms) begin transaction
464
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-02-07 18:06:37.140128"], ["updated_at", "2023-02-07 18:06:37.140128"]]
465
+ TRANSACTION (12.6ms) commit transaction
466
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
467
+ TRANSACTION (0.1ms) begin transaction
468
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-02-07 18:06:37.160909"], ["key", "environment"]]
469
+ TRANSACTION (14.6ms) commit transaction
470
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
471
+ TRANSACTION (0.1ms) begin transaction
472
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "a0d807ec79111b6bd4f504fbbcc0ddc17749f33f"], ["created_at", "2023-02-07 18:06:37.188454"], ["updated_at", "2023-02-07 18:06:37.188454"]]
473
+ TRANSACTION (14.1ms) commit transaction
474
+ DEPRECATION WARNING: Non-URL-safe CSRF tokens are deprecated. Use 6.1 defaults or above. (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/config/environment.rb:5)
475
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
476
+ `legacy_connection_handling` to `false` in your application.
477
+
478
+ The new connection handling does not support `connection_handlers`
479
+ getter and setter.
480
+
481
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
482
+ (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)
483
+ ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
484
+ ActiveRecord::InternalMetadata Pluck (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
485
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
486
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
487
+ ActiveRecord::SchemaMigration Pluck (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
488
+ ActiveRecord::InternalMetadata Pluck (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
489
+  (0.1ms) DROP TABLE IF EXISTS "users"
490
+  (19.5ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "deleted_at" datetime(6), "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "invitation_token" varchar, "invitation_created_at" datetime(6), "invitation_sent_at" datetime(6), "invitation_accepted_at" datetime(6), "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
491
+  (11.5ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
492
+  (11.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
493
+  (10.8ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
494
+  (12.0ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
495
+  (12.6ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
496
+  (12.5ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
497
+  (12.6ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
498
+  (13.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
499
+ ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
500
+  (13.3ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
501
+  (13.0ms) INSERT INTO "schema_migrations" (version) VALUES
502
+ (20190513181646),
503
+ (20190520170817),
504
+ (20190628003608);
505
+
506
+ 
507
+  (13.0ms) 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)
508
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
509
+ TRANSACTION (0.1ms) begin transaction
510
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2023-02-07 19:06:01.685771"], ["updated_at", "2023-02-07 19:06:01.685771"]]
511
+ TRANSACTION (13.5ms) commit transaction
512
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
513
+ TRANSACTION (0.1ms) begin transaction
514
+ ActiveRecord::InternalMetadata Update (0.4ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2023-02-07 19:06:01.712579"], ["key", "environment"]]
515
+ TRANSACTION (13.1ms) commit transaction
516
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
517
+ TRANSACTION (0.1ms) begin transaction
518
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "a0d807ec79111b6bd4f504fbbcc0ddc17749f33f"], ["created_at", "2023-02-07 19:06:01.736533"], ["updated_at", "2023-02-07 19:06:01.736533"]]
519
+ TRANSACTION (13.1ms) commit transaction
520
+ DEPRECATION WARNING: Non-URL-safe CSRF tokens are deprecated. Use 6.1 defaults or above. (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/config/environment.rb:5)
521
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
522
+ `legacy_connection_handling` to `false` in your application.
523
+
524
+ The new connection handling does not support `connection_handlers`
525
+ getter and setter.
526
+
527
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
528
+ (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)
529
+ DEPRECATION WARNING: Non-URL-safe CSRF tokens are deprecated. Use 6.1 defaults or above. (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/config/environment.rb:5)
530
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
531
+ `legacy_connection_handling` to `false` in your application.
532
+
533
+ The new connection handling does not support `connection_handlers`
534
+ getter and setter.
535
+
536
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
537
+ (called from <top (required)> at /var/home/cjcolvar/Code/samvera/samvera-persona/spec/dummy/app/models/application_record.rb:1)