From 72cd066414f2a84c7a69b2b50b3fd3f4fea86575 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 5 Feb 2026 01:38:35 +0900 Subject: [PATCH] example-config.toml: fix sqlite default path --- example-config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-config.toml b/example-config.toml index 0a82593..6bcae09 100644 --- a/example-config.toml +++ b/example-config.toml @@ -8,7 +8,7 @@ input_encoding = 'utf8' type = 'sqlite' [database.sqlite] -path = 'sqlite:///test.db' +path = 'test.db' [database.postgresql] host = 'localhost'