From dcaf953a045ba90e4368f4f6f8a372102812486d Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 13 Nov 2024 13:37:36 +0100 Subject: [PATCH] chore: update .gitignore for database journals Add *.sqlite3-journal to .gitignore to prevent SQLite journal files from being tracked by version control. This helps in maintaining a cleaner repository by excluding temporary files generated during database transactions. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2fa008d..19c9aeb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ __pycache__/ venv/ *.sqlite3 +*.sqlite3-journal migrations/ data/ .vscode/ \ No newline at end of file