Remove database files from version control and update .gitignore

- Remove numerology.db from Git tracking (keep local file)
- Add comprehensive database file patterns to .gitignore
- Include *.db, *.sqlite, *.sqlite3 patterns
- Prevent future database files from being committed
This commit is contained in:
patdelphi
2025-08-19 22:29:54 +08:00
parent a22b38babb
commit c577114fcd
2 changed files with 5 additions and 0 deletions

5
.gitignore vendored
View File

@@ -48,5 +48,10 @@ temp/
*.njsproj
*.sln
*.sw?
# Database files
numerology.db
numerology.db-shm
numerology.db-wal
*.db
*.sqlite
*.sqlite3

Binary file not shown.