From 589082cfdcad085274a8b6a922ef38f9a4bb3fed Mon Sep 17 00:00:00 2001 From: Daniel Covington Date: Thu, 20 Aug 2026 12:51:40 -0400 Subject: [PATCH] Stop tracking db/webdata.accdb in git Schema changes go through db/migrations/; the live Access file itself should never be committed or overwritten by a deploy. Its history was purged from all commits/branches with git-filter-repo. Co-Authored-By: Claude Sonnet 5 --- .gitignore | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 9f338bd..e0f8c72 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,12 @@ -/_bmad -/_bmad* -/.agents -/.github - -# Access lock file (created while the .accdb is open) -*.laccdb - -# Personal Claude Code permission grants for this machine/session - not team config +/_bmad +/_bmad* +/.agents +/.github + +# Access database and its lock file - contains live order data, never committed. +# Schema changes go through db/migrations/ instead; deploy never touches this file. +db/webdata.accdb +*.laccdb + +# Personal Claude Code permission grants for this machine/session - not team config .claude/settings.local.json \ No newline at end of file