strict-loading 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,931 @@
1
+  (1.3ms) SELECT sqlite_version(*)
2
+  (0.0ms) SELECT sqlite_version(*)
3
+  (0.0ms) SELECT sqlite_version(*)
4
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
5
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
6
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
7
+  (0.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)
8
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
9
+  (0.0ms) begin transaction
10
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 00:48:53.092776"], ["updated_at", "2026-01-09 00:48:53.092776"]]
11
+  (0.5ms) commit transaction
12
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
13
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
14
+  (0.0ms) SELECT sqlite_version(*)
15
+  (0.0ms) PRAGMA foreign_keys
16
+  (0.0ms) PRAGMA defer_foreign_keys
17
+  (0.0ms) PRAGMA defer_foreign_keys = ON
18
+  (0.0ms) PRAGMA foreign_keys = OFF
19
+  (0.1ms) TRUNCATE TABLE "todo_lists"
20
+  (0.8ms) DELETE FROM "todo_lists"
21
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
22
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
23
+  (0.1ms) TRUNCATE TABLE "todo_items"
24
+  (1.1ms) DELETE FROM "todo_items"
25
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
26
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
27
+  (0.0ms) PRAGMA defer_foreign_keys = 0
28
+  (0.0ms) PRAGMA foreign_keys = 1
29
+  (0.0ms) begin transaction
30
+  (0.0ms) SAVEPOINT active_record_1
31
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
32
+  (0.0ms) RELEASE SAVEPOINT active_record_1
33
+  (0.0ms) SAVEPOINT active_record_1
34
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
35
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36
+  (0.0ms) SAVEPOINT active_record_1
37
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
38
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
40
+  (0.3ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+  (0.0ms) SAVEPOINT active_record_1
43
+ TodoList Create (0.6ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
44
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45
+  (0.0ms) SAVEPOINT active_record_1
46
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
47
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48
+  (0.0ms) SAVEPOINT active_record_1
49
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
50
+  (0.0ms) RELEASE SAVEPOINT active_record_1
51
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
52
+  (0.3ms) rollback transaction
53
+  (1.3ms) SELECT sqlite_version(*)
54
+  (0.0ms) SELECT sqlite_version(*)
55
+  (0.0ms) SELECT sqlite_version(*)
56
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
57
+  (0.8ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
58
+  (1.1ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
59
+  (1.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)
60
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
61
+  (0.0ms) begin transaction
62
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 00:55:32.137742"], ["updated_at", "2026-01-09 00:55:32.137742"]]
63
+  (0.5ms) commit transaction
64
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
65
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
66
+  (0.0ms) SELECT sqlite_version(*)
67
+  (0.0ms) PRAGMA foreign_keys
68
+  (0.0ms) PRAGMA defer_foreign_keys
69
+  (0.0ms) PRAGMA defer_foreign_keys = ON
70
+  (0.0ms) PRAGMA foreign_keys = OFF
71
+  (0.1ms) TRUNCATE TABLE "todo_lists"
72
+  (0.8ms) DELETE FROM "todo_lists"
73
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
74
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
75
+  (0.0ms) TRUNCATE TABLE "todo_items"
76
+  (0.9ms) DELETE FROM "todo_items"
77
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
78
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
79
+  (0.0ms) PRAGMA defer_foreign_keys = 0
80
+  (0.0ms) PRAGMA foreign_keys = 1
81
+  (0.0ms) begin transaction
82
+  (0.0ms) SAVEPOINT active_record_1
83
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
84
+  (0.0ms) RELEASE SAVEPOINT active_record_1
85
+  (0.0ms) SAVEPOINT active_record_1
86
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
87
+  (0.0ms) RELEASE SAVEPOINT active_record_1
88
+  (0.0ms) SAVEPOINT active_record_1
89
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
90
+  (0.0ms) RELEASE SAVEPOINT active_record_1
91
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
92
+  (0.3ms) rollback transaction
93
+  (1.3ms) SELECT sqlite_version(*)
94
+  (0.0ms) SELECT sqlite_version(*)
95
+  (0.0ms) SELECT sqlite_version(*)
96
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
97
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
98
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
99
+  (0.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)
100
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
101
+  (0.0ms) begin transaction
102
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:18:28.429873"], ["updated_at", "2026-01-09 03:18:28.429873"]]
103
+  (0.5ms) commit transaction
104
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
105
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
106
+  (0.0ms) SELECT sqlite_version(*)
107
+  (0.0ms) PRAGMA foreign_keys
108
+  (0.0ms) PRAGMA defer_foreign_keys
109
+  (0.0ms) PRAGMA defer_foreign_keys = ON
110
+  (0.0ms) PRAGMA foreign_keys = OFF
111
+  (0.1ms) TRUNCATE TABLE "todo_lists"
112
+  (0.8ms) DELETE FROM "todo_lists"
113
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
114
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
115
+  (0.0ms) TRUNCATE TABLE "todo_items"
116
+  (0.8ms) DELETE FROM "todo_items"
117
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
118
+  (0.0ms) DELETE FROM sqlite_sequence where name = 'todo_items';
119
+  (0.0ms) PRAGMA defer_foreign_keys = 0
120
+  (0.0ms) PRAGMA foreign_keys = 1
121
+  (0.0ms) begin transaction
122
+  (0.0ms) SAVEPOINT active_record_1
123
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
125
+  (0.0ms) SAVEPOINT active_record_1
126
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
128
+  (0.0ms) SAVEPOINT active_record_1
129
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
131
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
132
+  (0.4ms) rollback transaction
133
+  (1.3ms) SELECT sqlite_version(*)
134
+  (0.0ms) SELECT sqlite_version(*)
135
+  (0.0ms) SELECT sqlite_version(*)
136
+  (0.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
137
+  (0.6ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
138
+  (0.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
139
+  (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)
140
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
141
+  (0.0ms) begin transaction
142
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:18:44.648564"], ["updated_at", "2026-01-09 03:18:44.648564"]]
143
+  (0.4ms) commit transaction
144
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
145
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
146
+  (0.0ms) SELECT sqlite_version(*)
147
+  (0.0ms) PRAGMA foreign_keys
148
+  (0.0ms) PRAGMA defer_foreign_keys
149
+  (0.0ms) PRAGMA defer_foreign_keys = ON
150
+  (0.0ms) PRAGMA foreign_keys = OFF
151
+  (0.1ms) TRUNCATE TABLE "todo_lists"
152
+  (1.0ms) DELETE FROM "todo_lists"
153
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
154
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
155
+  (0.0ms) TRUNCATE TABLE "todo_items"
156
+  (0.8ms) DELETE FROM "todo_items"
157
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
158
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
159
+  (0.0ms) PRAGMA defer_foreign_keys = 0
160
+  (0.0ms) PRAGMA foreign_keys = 1
161
+  (0.0ms) begin transaction
162
+  (0.0ms) SAVEPOINT active_record_1
163
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
165
+  (0.0ms) SAVEPOINT active_record_1
166
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
168
+  (0.0ms) SAVEPOINT active_record_1
169
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
171
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
172
+  (0.2ms) rollback transaction
173
+  (1.3ms) SELECT sqlite_version(*)
174
+  (0.0ms) SELECT sqlite_version(*)
175
+  (0.0ms) SELECT sqlite_version(*)
176
+  (1.2ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
177
+  (0.8ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
178
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
179
+  (2.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)
180
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
181
+  (0.0ms) begin transaction
182
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:19:33.600738"], ["updated_at", "2026-01-09 03:19:33.600738"]]
183
+  (0.5ms) commit transaction
184
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
185
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
186
+  (0.0ms) SELECT sqlite_version(*)
187
+  (0.0ms) PRAGMA foreign_keys
188
+  (0.0ms) PRAGMA defer_foreign_keys
189
+  (0.0ms) PRAGMA defer_foreign_keys = ON
190
+  (0.0ms) PRAGMA foreign_keys = OFF
191
+  (0.1ms) TRUNCATE TABLE "todo_lists"
192
+  (0.8ms) DELETE FROM "todo_lists"
193
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
194
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
195
+  (0.0ms) TRUNCATE TABLE "todo_items"
196
+  (0.9ms) DELETE FROM "todo_items"
197
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
198
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
199
+  (0.0ms) PRAGMA defer_foreign_keys = 0
200
+  (0.0ms) PRAGMA foreign_keys = 1
201
+  (0.0ms) begin transaction
202
+  (0.0ms) SAVEPOINT active_record_1
203
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
205
+  (0.0ms) SAVEPOINT active_record_1
206
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
208
+  (0.0ms) SAVEPOINT active_record_1
209
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
211
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
212
+  (0.4ms) rollback transaction
213
+  (1.3ms) SELECT sqlite_version(*)
214
+  (0.0ms) SELECT sqlite_version(*)
215
+  (0.0ms) SELECT sqlite_version(*)
216
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
217
+  (0.6ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
218
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
219
+  (0.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)
220
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
221
+  (0.0ms) begin transaction
222
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:19:55.557281"], ["updated_at", "2026-01-09 03:19:55.557281"]]
223
+  (0.4ms) commit transaction
224
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
225
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
226
+  (0.0ms) SELECT sqlite_version(*)
227
+  (0.0ms) PRAGMA foreign_keys
228
+  (0.0ms) PRAGMA defer_foreign_keys
229
+  (0.0ms) PRAGMA defer_foreign_keys = ON
230
+  (0.0ms) PRAGMA foreign_keys = OFF
231
+  (0.1ms) TRUNCATE TABLE "todo_lists"
232
+  (1.0ms) DELETE FROM "todo_lists"
233
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
234
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
235
+  (0.0ms) TRUNCATE TABLE "todo_items"
236
+  (0.8ms) DELETE FROM "todo_items"
237
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
238
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
239
+  (0.0ms) PRAGMA defer_foreign_keys = 0
240
+  (0.0ms) PRAGMA foreign_keys = 1
241
+  (0.0ms) begin transaction
242
+  (0.0ms) SAVEPOINT active_record_1
243
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
245
+  (0.0ms) SAVEPOINT active_record_1
246
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
248
+  (0.0ms) SAVEPOINT active_record_1
249
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
251
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
252
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
253
+  (1.3ms) SELECT sqlite_version(*)
254
+  (0.0ms) SELECT sqlite_version(*)
255
+  (0.0ms) SELECT sqlite_version(*)
256
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
257
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
258
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
259
+  (0.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)
260
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
261
+  (0.0ms) begin transaction
262
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:20:09.261179"], ["updated_at", "2026-01-09 03:20:09.261179"]]
263
+  (0.5ms) commit transaction
264
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
265
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
266
+  (0.0ms) SELECT sqlite_version(*)
267
+  (0.0ms) PRAGMA foreign_keys
268
+  (0.0ms) PRAGMA defer_foreign_keys
269
+  (0.0ms) PRAGMA defer_foreign_keys = ON
270
+  (0.0ms) PRAGMA foreign_keys = OFF
271
+  (0.1ms) TRUNCATE TABLE "todo_lists"
272
+  (0.9ms) DELETE FROM "todo_lists"
273
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
274
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
275
+  (0.1ms) TRUNCATE TABLE "todo_items"
276
+  (0.9ms) DELETE FROM "todo_items"
277
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
278
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
279
+  (0.0ms) PRAGMA defer_foreign_keys = 0
280
+  (0.0ms) PRAGMA foreign_keys = 1
281
+  (0.0ms) begin transaction
282
+  (0.0ms) SAVEPOINT active_record_1
283
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
285
+  (0.0ms) SAVEPOINT active_record_1
286
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
288
+  (0.0ms) SAVEPOINT active_record_1
289
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
291
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
292
+ TodoItem Load (0.1ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
293
+  (1.3ms) SELECT sqlite_version(*)
294
+  (0.0ms) SELECT sqlite_version(*)
295
+  (0.0ms) SELECT sqlite_version(*)
296
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
297
+  (2.3ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
298
+  (0.9ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
299
+  (0.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)
300
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
301
+  (0.0ms) begin transaction
302
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:20:35.537769"], ["updated_at", "2026-01-09 03:20:35.537769"]]
303
+  (0.5ms) commit transaction
304
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
305
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
306
+  (0.0ms) SELECT sqlite_version(*)
307
+  (0.0ms) PRAGMA foreign_keys
308
+  (0.0ms) PRAGMA defer_foreign_keys
309
+  (0.0ms) PRAGMA defer_foreign_keys = ON
310
+  (0.0ms) PRAGMA foreign_keys = OFF
311
+  (0.1ms) TRUNCATE TABLE "todo_lists"
312
+  (1.0ms) DELETE FROM "todo_lists"
313
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
314
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
315
+  (0.1ms) TRUNCATE TABLE "todo_items"
316
+  (0.9ms) DELETE FROM "todo_items"
317
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
318
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
319
+  (0.0ms) PRAGMA defer_foreign_keys = 0
320
+  (0.0ms) PRAGMA foreign_keys = 1
321
+  (0.0ms) begin transaction
322
+  (0.0ms) SAVEPOINT active_record_1
323
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
+  (0.0ms) SAVEPOINT active_record_1
326
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
328
+  (0.0ms) SAVEPOINT active_record_1
329
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
331
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
332
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
333
+  (0.3ms) rollback transaction
334
+  (1.3ms) SELECT sqlite_version(*)
335
+  (0.0ms) SELECT sqlite_version(*)
336
+  (0.0ms) SELECT sqlite_version(*)
337
+  (0.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
338
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
339
+  (0.8ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
340
+  (0.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)
341
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
342
+  (0.0ms) begin transaction
343
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:21:38.774494"], ["updated_at", "2026-01-09 03:21:38.774494"]]
344
+  (0.5ms) commit transaction
345
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
346
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
347
+  (0.0ms) SELECT sqlite_version(*)
348
+  (0.0ms) PRAGMA foreign_keys
349
+  (0.0ms) PRAGMA defer_foreign_keys
350
+  (0.0ms) PRAGMA defer_foreign_keys = ON
351
+  (0.0ms) PRAGMA foreign_keys = OFF
352
+  (0.1ms) TRUNCATE TABLE "todo_lists"
353
+  (0.8ms) DELETE FROM "todo_lists"
354
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
355
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
356
+  (0.0ms) TRUNCATE TABLE "todo_items"
357
+  (0.8ms) DELETE FROM "todo_items"
358
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
359
+  (0.0ms) DELETE FROM sqlite_sequence where name = 'todo_items';
360
+  (0.0ms) PRAGMA defer_foreign_keys = 0
361
+  (0.0ms) PRAGMA foreign_keys = 1
362
+  (0.0ms) begin transaction
363
+  (0.0ms) SAVEPOINT active_record_1
364
+ TodoList Create (0.3ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
366
+  (0.0ms) SAVEPOINT active_record_1
367
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
369
+  (0.0ms) SAVEPOINT active_record_1
370
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
372
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
373
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
374
+  (0.3ms) rollback transaction
375
+  (1.2ms) SELECT sqlite_version(*)
376
+  (0.0ms) SELECT sqlite_version(*)
377
+  (0.0ms) SELECT sqlite_version(*)
378
+  (0.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
379
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
380
+  (0.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
381
+  (0.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)
382
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
383
+  (0.0ms) begin transaction
384
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:22:39.291876"], ["updated_at", "2026-01-09 03:22:39.291876"]]
385
+  (0.5ms) commit transaction
386
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
387
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
388
+  (0.0ms) SELECT sqlite_version(*)
389
+  (0.0ms) PRAGMA foreign_keys
390
+  (0.0ms) PRAGMA defer_foreign_keys
391
+  (0.0ms) PRAGMA defer_foreign_keys = ON
392
+  (0.0ms) PRAGMA foreign_keys = OFF
393
+  (0.1ms) TRUNCATE TABLE "todo_lists"
394
+  (0.9ms) DELETE FROM "todo_lists"
395
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
396
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
397
+  (0.1ms) TRUNCATE TABLE "todo_items"
398
+  (0.9ms) DELETE FROM "todo_items"
399
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
400
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
401
+  (0.0ms) PRAGMA defer_foreign_keys = 0
402
+  (0.0ms) PRAGMA foreign_keys = 1
403
+  (0.0ms) begin transaction
404
+  (0.0ms) SAVEPOINT active_record_1
405
+ TodoList Create (0.3ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
407
+  (0.0ms) SAVEPOINT active_record_1
408
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
410
+  (0.0ms) SAVEPOINT active_record_1
411
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
413
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
414
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
415
+  (0.2ms) rollback transaction
416
+  (1.3ms) SELECT sqlite_version(*)
417
+  (0.0ms) SELECT sqlite_version(*)
418
+  (0.0ms) SELECT sqlite_version(*)
419
+  (0.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
420
+  (0.6ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
421
+  (0.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
422
+  (0.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)
423
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
424
+  (0.0ms) begin transaction
425
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:23:02.560783"], ["updated_at", "2026-01-09 03:23:02.560783"]]
426
+  (0.4ms) commit transaction
427
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
428
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
429
+  (0.0ms) SELECT sqlite_version(*)
430
+  (0.0ms) PRAGMA foreign_keys
431
+  (0.0ms) PRAGMA defer_foreign_keys
432
+  (0.0ms) PRAGMA defer_foreign_keys = ON
433
+  (0.0ms) PRAGMA foreign_keys = OFF
434
+  (0.1ms) TRUNCATE TABLE "todo_lists"
435
+  (0.8ms) DELETE FROM "todo_lists"
436
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
437
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
438
+  (0.0ms) TRUNCATE TABLE "todo_items"
439
+  (0.8ms) DELETE FROM "todo_items"
440
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
441
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
442
+  (0.0ms) PRAGMA defer_foreign_keys = 0
443
+  (0.0ms) PRAGMA foreign_keys = 1
444
+  (0.0ms) begin transaction
445
+  (0.0ms) SAVEPOINT active_record_1
446
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
448
+  (0.0ms) SAVEPOINT active_record_1
449
+ TodoItem Create (0.3ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
451
+  (0.0ms) SAVEPOINT active_record_1
452
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
454
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
455
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
456
+  (0.7ms) rollback transaction
457
+  (1.3ms) SELECT sqlite_version(*)
458
+  (0.0ms) SELECT sqlite_version(*)
459
+  (0.0ms) SELECT sqlite_version(*)
460
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
461
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
462
+  (0.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
463
+  (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)
464
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
465
+  (0.0ms) begin transaction
466
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:23:26.276289"], ["updated_at", "2026-01-09 03:23:26.276289"]]
467
+  (0.5ms) commit transaction
468
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
469
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
470
+  (0.0ms) SELECT sqlite_version(*)
471
+  (0.0ms) PRAGMA foreign_keys
472
+  (0.0ms) PRAGMA defer_foreign_keys
473
+  (0.0ms) PRAGMA defer_foreign_keys = ON
474
+  (0.0ms) PRAGMA foreign_keys = OFF
475
+  (0.1ms) TRUNCATE TABLE "todo_lists"
476
+  (0.9ms) DELETE FROM "todo_lists"
477
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
478
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
479
+  (0.0ms) TRUNCATE TABLE "todo_items"
480
+  (0.8ms) DELETE FROM "todo_items"
481
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
482
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
483
+  (0.0ms) PRAGMA defer_foreign_keys = 0
484
+  (0.0ms) PRAGMA foreign_keys = 1
485
+  (0.0ms) begin transaction
486
+  (0.0ms) SAVEPOINT active_record_1
487
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
489
+  (0.0ms) SAVEPOINT active_record_1
490
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
492
+  (0.0ms) SAVEPOINT active_record_1
493
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
495
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
496
+  (0.3ms) rollback transaction
497
+  (1.3ms) SELECT sqlite_version(*)
498
+  (0.0ms) SELECT sqlite_version(*)
499
+  (0.0ms) SELECT sqlite_version(*)
500
+  (0.8ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
501
+  (0.7ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
502
+  (0.7ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
503
+  (0.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)
504
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
505
+  (0.0ms) begin transaction
506
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:23:59.553980"], ["updated_at", "2026-01-09 03:23:59.553980"]]
507
+  (0.6ms) commit transaction
508
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
509
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
510
+  (0.0ms) SELECT sqlite_version(*)
511
+  (0.0ms) PRAGMA foreign_keys
512
+  (0.0ms) PRAGMA defer_foreign_keys
513
+  (0.0ms) PRAGMA defer_foreign_keys = ON
514
+  (0.0ms) PRAGMA foreign_keys = OFF
515
+  (0.1ms) TRUNCATE TABLE "todo_lists"
516
+  (1.0ms) DELETE FROM "todo_lists"
517
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
518
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
519
+  (0.1ms) TRUNCATE TABLE "todo_items"
520
+  (1.0ms) DELETE FROM "todo_items"
521
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
522
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
523
+  (0.0ms) PRAGMA defer_foreign_keys = 0
524
+  (0.0ms) PRAGMA foreign_keys = 1
525
+  (0.0ms) begin transaction
526
+  (0.0ms) SAVEPOINT active_record_1
527
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+  (0.0ms) SAVEPOINT active_record_1
530
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
532
+  (0.0ms) SAVEPOINT active_record_1
533
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
535
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
536
+ TodoItem Load (0.0ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
537
+  (0.9ms) rollback transaction
538
+  (3.2ms) SELECT sqlite_version(*)
539
+  (0.0ms) SELECT sqlite_version(*)
540
+  (0.0ms) SELECT sqlite_version(*)
541
+  (8.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
542
+  (1.0ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
543
+  (2.8ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
544
+  (1.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)
545
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
546
+  (0.1ms) begin transaction
547
+ ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:27:41.617317"], ["updated_at", "2026-01-09 03:27:41.617317"]]
548
+  (0.8ms) commit transaction
549
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
550
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
551
+  (0.1ms) SELECT sqlite_version(*)
552
+  (0.1ms) PRAGMA foreign_keys
553
+  (0.0ms) PRAGMA defer_foreign_keys
554
+  (0.0ms) PRAGMA defer_foreign_keys = ON
555
+  (0.0ms) PRAGMA foreign_keys = OFF
556
+  (0.4ms) TRUNCATE TABLE "todo_lists"
557
+  (1.7ms) DELETE FROM "todo_lists"
558
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
559
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
560
+  (0.1ms) TRUNCATE TABLE "todo_items"
561
+  (1.0ms) DELETE FROM "todo_items"
562
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
563
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
564
+  (0.0ms) PRAGMA defer_foreign_keys = 0
565
+  (0.0ms) PRAGMA foreign_keys = 1
566
+  (0.0ms) begin transaction
567
+  (0.1ms) SAVEPOINT active_record_1
568
+ TodoList Create (1.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
569
+  (0.4ms) RELEASE SAVEPOINT active_record_1
570
+  (0.0ms) SAVEPOINT active_record_1
571
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
573
+  (0.0ms) SAVEPOINT active_record_1
574
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
576
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
577
+  (1.2ms) rollback transaction
578
+  (0.0ms) begin transaction
579
+  (0.0ms) SAVEPOINT active_record_1
580
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
582
+  (0.0ms) SAVEPOINT active_record_1
583
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
585
+  (0.0ms) SAVEPOINT active_record_1
586
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
588
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
589
+ TodoItem Load (0.3ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
590
+  (2.5ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+  (0.2ms) SAVEPOINT active_record_1
593
+ TodoList Create (1.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
595
+  (0.1ms) SAVEPOINT active_record_1
596
+ TodoItem Create (0.5ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
598
+  (0.0ms) SAVEPOINT active_record_1
599
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
601
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
602
+  (1.2ms) rollback transaction
603
+  (3.1ms) SELECT sqlite_version(*)
604
+  (0.0ms) SELECT sqlite_version(*)
605
+  (0.0ms) SELECT sqlite_version(*)
606
+  (9.0ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
607
+  (1.0ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
608
+  (2.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
609
+  (1.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)
610
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
611
+  (0.1ms) begin transaction
612
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:28:40.852334"], ["updated_at", "2026-01-09 03:28:40.852334"]]
613
+  (0.6ms) commit transaction
614
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
615
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
616
+  (0.1ms) SELECT sqlite_version(*)
617
+  (0.1ms) PRAGMA foreign_keys
618
+  (0.0ms) PRAGMA defer_foreign_keys
619
+  (0.0ms) PRAGMA defer_foreign_keys = ON
620
+  (0.0ms) PRAGMA foreign_keys = OFF
621
+  (0.5ms) TRUNCATE TABLE "todo_lists"
622
+  (1.6ms) DELETE FROM "todo_lists"
623
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
624
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
625
+  (0.1ms) TRUNCATE TABLE "todo_items"
626
+  (0.9ms) DELETE FROM "todo_items"
627
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
628
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
629
+  (0.0ms) PRAGMA defer_foreign_keys = 0
630
+  (0.0ms) PRAGMA foreign_keys = 1
631
+  (0.0ms) begin transaction
632
+  (0.1ms) SAVEPOINT active_record_1
633
+ TodoList Create (0.9ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
634
+  (0.4ms) RELEASE SAVEPOINT active_record_1
635
+  (0.0ms) SAVEPOINT active_record_1
636
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
638
+  (0.0ms) SAVEPOINT active_record_1
639
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
641
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
642
+  (1.3ms) rollback transaction
643
+  (0.0ms) begin transaction
644
+  (0.0ms) SAVEPOINT active_record_1
645
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
647
+  (0.0ms) SAVEPOINT active_record_1
648
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
650
+  (0.0ms) SAVEPOINT active_record_1
651
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
653
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
654
+ TodoItem Load (0.2ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
655
+  (2.0ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+  (0.1ms) SAVEPOINT active_record_1
658
+ TodoList Create (1.7ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
660
+  (0.1ms) SAVEPOINT active_record_1
661
+ TodoItem Create (0.7ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
663
+  (0.1ms) SAVEPOINT active_record_1
664
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
665
+  (0.1ms) RELEASE SAVEPOINT active_record_1
666
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
667
+  (0.9ms) rollback transaction
668
+  (2.6ms) SELECT sqlite_version(*)
669
+  (7.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
670
+  (1.0ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
671
+  (2.4ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
672
+  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
673
+ ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
674
+  (0.1ms) begin transaction
675
+ ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:33:22.866867"], ["updated_at", "2026-01-09 03:33:22.866867"]]
676
+  (0.8ms) commit transaction
677
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
678
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
679
+  (0.0ms) begin transaction
680
+  (0.0ms) commit transaction
681
+  (0.1ms) PRAGMA foreign_keys
682
+  (0.0ms) PRAGMA foreign_keys = OFF
683
+  (0.4ms) TRUNCATE TABLE "todo_lists"
684
+  (1.6ms) DELETE FROM "todo_lists"
685
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
686
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
687
+  (0.1ms) TRUNCATE TABLE "todo_items"
688
+  (0.9ms) DELETE FROM "todo_items"
689
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
690
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
691
+  (0.1ms) PRAGMA foreign_keys = 1
692
+  (0.0ms) begin transaction
693
+  (0.0ms) commit transaction
694
+  (0.0ms) begin transaction
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ TodoList Create (0.7ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
697
+  (0.3ms) RELEASE SAVEPOINT active_record_1
698
+  (0.0ms) SAVEPOINT active_record_1
699
+ TodoItem Create (0.3ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
701
+  (0.0ms) SAVEPOINT active_record_1
702
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
704
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
705
+  (0.9ms) rollback transaction
706
+  (0.0ms) begin transaction
707
+  (0.1ms) commit transaction
708
+  (0.0ms) begin transaction
709
+  (0.0ms) SAVEPOINT active_record_1
710
+ TodoList Create (0.6ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ TodoItem Create (0.3ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
715
+  (0.0ms) SAVEPOINT active_record_1
716
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
718
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
719
+  (0.3ms) rollback transaction
720
+  (0.0ms) begin transaction
721
+  (0.0ms) commit transaction
722
+  (0.0ms) begin transaction
723
+  (0.0ms) SAVEPOINT active_record_1
724
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
726
+  (0.0ms) SAVEPOINT active_record_1
727
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
729
+  (0.1ms) SAVEPOINT active_record_1
730
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
733
+  (0.3ms) rollback transaction
734
+  (2.7ms) SELECT sqlite_version(*)
735
+  (7.5ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
736
+  (1.1ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
737
+  (2.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
738
+  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
739
+ ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
740
+  (0.1ms) begin transaction
741
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:33:47.613774"], ["updated_at", "2026-01-09 03:33:47.613774"]]
742
+  (0.8ms) commit transaction
743
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
744
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
745
+  (0.0ms) begin transaction
746
+  (0.0ms) commit transaction
747
+  (0.2ms) PRAGMA foreign_keys
748
+  (0.1ms) PRAGMA foreign_keys = OFF
749
+  (0.6ms) TRUNCATE TABLE "todo_lists"
750
+  (1.7ms) DELETE FROM "todo_lists"
751
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
752
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
753
+  (0.1ms) TRUNCATE TABLE "todo_items"
754
+  (1.4ms) DELETE FROM "todo_items"
755
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
756
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
757
+  (0.1ms) PRAGMA foreign_keys = 1
758
+  (0.0ms) begin transaction
759
+  (0.0ms) commit transaction
760
+  (0.0ms) begin transaction
761
+  (0.1ms) SAVEPOINT active_record_1
762
+ TodoList Create (0.7ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
763
+  (0.4ms) RELEASE SAVEPOINT active_record_1
764
+  (0.0ms) SAVEPOINT active_record_1
765
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
767
+  (0.0ms) SAVEPOINT active_record_1
768
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
770
+ TodoList Load (0.2ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
771
+  (0.9ms) rollback transaction
772
+  (0.1ms) begin transaction
773
+  (0.0ms) commit transaction
774
+  (0.0ms) begin transaction
775
+  (0.0ms) SAVEPOINT active_record_1
776
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
778
+  (0.0ms) SAVEPOINT active_record_1
779
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (0.0ms) SAVEPOINT active_record_1
782
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
785
+  (3.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+  (0.0ms) commit transaction
788
+  (0.0ms) begin transaction
789
+  (0.1ms) SAVEPOINT active_record_1
790
+ TodoList Create (2.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
792
+  (0.1ms) SAVEPOINT active_record_1
793
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
795
+  (0.1ms) SAVEPOINT active_record_1
796
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
797
+  (0.0ms) RELEASE SAVEPOINT active_record_1
798
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
799
+  (0.4ms) rollback transaction
800
+  (2.4ms) SELECT sqlite_version(*)
801
+  (7.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
802
+  (1.0ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
803
+  (2.4ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
804
+  (1.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
805
+ ActiveRecord::InternalMetadata Load (1.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
806
+  (0.1ms) begin transaction
807
+ ActiveRecord::InternalMetadata Create (1.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:36:10.887494"], ["updated_at", "2026-01-09 03:36:10.887494"]]
808
+  (0.9ms) commit transaction
809
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
810
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
811
+  (0.0ms) begin transaction
812
+  (0.0ms) commit transaction
813
+  (0.1ms) PRAGMA foreign_keys
814
+  (0.1ms) PRAGMA foreign_keys = OFF
815
+  (0.3ms) TRUNCATE TABLE "todo_lists"
816
+  (1.7ms) DELETE FROM "todo_lists"
817
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
818
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
819
+  (0.1ms) TRUNCATE TABLE "todo_items"
820
+  (1.2ms) DELETE FROM "todo_items"
821
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
822
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
823
+  (0.1ms) PRAGMA foreign_keys = 1
824
+  (0.0ms) begin transaction
825
+  (0.0ms) commit transaction
826
+  (0.0ms) begin transaction
827
+  (0.1ms) SAVEPOINT active_record_1
828
+ TodoList Create (0.7ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
829
+  (0.3ms) RELEASE SAVEPOINT active_record_1
830
+  (0.0ms) SAVEPOINT active_record_1
831
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
833
+  (0.0ms) SAVEPOINT active_record_1
834
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
836
+ TodoList Load (0.2ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
837
+  (1.0ms) rollback transaction
838
+  (0.0ms) begin transaction
839
+  (0.0ms) commit transaction
840
+  (0.0ms) begin transaction
841
+  (0.0ms) SAVEPOINT active_record_1
842
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
844
+  (0.0ms) SAVEPOINT active_record_1
845
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
847
+  (0.0ms) SAVEPOINT active_record_1
848
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
850
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
851
+ TodoItem Load (0.2ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
852
+  (0.3ms) rollback transaction
853
+  (0.0ms) begin transaction
854
+  (0.0ms) commit transaction
855
+  (0.0ms) begin transaction
856
+  (0.0ms) SAVEPOINT active_record_1
857
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
862
+  (0.0ms) SAVEPOINT active_record_1
863
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
864
+  (0.3ms) RELEASE SAVEPOINT active_record_1
865
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
866
+  (0.3ms) rollback transaction
867
+  (3.2ms) SELECT sqlite_version(*)
868
+  (0.0ms) SELECT sqlite_version(*)
869
+  (0.0ms) SELECT sqlite_version(*)
870
+  (8.7ms) CREATE TABLE "todo_lists" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
871
+  (1.0ms) CREATE TABLE "todo_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "todo_list_id" integer)
872
+  (2.6ms) CREATE INDEX "index_todo_items_on_todo_list_id" ON "todo_items" ("todo_list_id")
873
+  (1.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)
874
+ ActiveRecord::InternalMetadata Load (1.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
875
+  (0.1ms) begin transaction
876
+ ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-01-09 03:36:38.740351"], ["updated_at", "2026-01-09 03:36:38.740351"]]
877
+  (0.8ms) commit transaction
878
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
879
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
880
+  (0.1ms) SELECT sqlite_version(*)
881
+  (0.1ms) PRAGMA foreign_keys
882
+  (0.0ms) PRAGMA defer_foreign_keys
883
+  (0.0ms) PRAGMA defer_foreign_keys = ON
884
+  (0.0ms) PRAGMA foreign_keys = OFF
885
+  (0.5ms) TRUNCATE TABLE "todo_lists"
886
+  (1.6ms) DELETE FROM "todo_lists"
887
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
888
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'todo_lists';
889
+  (0.1ms) TRUNCATE TABLE "todo_items"
890
+  (0.8ms) DELETE FROM "todo_items"
891
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
892
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'todo_items';
893
+  (0.0ms) PRAGMA defer_foreign_keys = 0
894
+  (0.0ms) PRAGMA foreign_keys = 1
895
+  (0.0ms) begin transaction
896
+  (0.1ms) SAVEPOINT active_record_1
897
+ TodoList Create (0.8ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
898
+  (0.3ms) RELEASE SAVEPOINT active_record_1
899
+  (0.0ms) SAVEPOINT active_record_1
900
+ TodoItem Create (0.4ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
902
+  (0.0ms) SAVEPOINT active_record_1
903
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
905
+ TodoList Load (0.1ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
906
+  (1.2ms) rollback transaction
907
+  (0.0ms) begin transaction
908
+  (0.0ms) SAVEPOINT active_record_1
909
+ TodoList Create (0.5ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
911
+  (0.0ms) SAVEPOINT active_record_1
912
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
914
+  (0.0ms) SAVEPOINT active_record_1
915
+ TodoItem Create (0.1ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
917
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
918
+ TodoItem Load (0.2ms) SELECT "todo_items".* FROM "todo_items" WHERE "todo_items"."todo_list_id" = ? [["todo_list_id", 1]]
919
+  (0.3ms) rollback transaction
920
+  (0.0ms) begin transaction
921
+  (0.0ms) SAVEPOINT active_record_1
922
+ TodoList Create (0.4ms) INSERT INTO "todo_lists" ("name") VALUES (?) [["name", "Groceries"]]
923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
924
+  (0.0ms) SAVEPOINT active_record_1
925
+ TodoItem Create (0.2ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Celery"], ["todo_list_id", 1]]
926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
927
+  (0.0ms) SAVEPOINT active_record_1
928
+ TodoItem Create (0.0ms) INSERT INTO "todo_items" ("name", "todo_list_id") VALUES (?, ?) [["name", "Carrots"], ["todo_list_id", 1]]
929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
930
+ TodoList Load (0.0ms) SELECT "todo_lists".* FROM "todo_lists" ORDER BY "todo_lists"."id" ASC LIMIT ? [["LIMIT", 1]]
931
+  (0.3ms) rollback transaction