1.4 KiB
1.4 KiB
Implementer Artefact — Feature: F-003
Summary
Replaced the tracked raw SQL snapshot with a small sanitized development baseline. Kept the same tracked SQL path for compatibility. Added docs for safe local SQL handling and private raw dump storage outside git.
Changes
- replaced
project/sql/db-25052026.sqlcontent with sanitized schema and synthetic seed data - added
project/sql/README.md - updated
.gitignorewith ignored private SQL path - updated
project/README.md - updated design docs for development baseline
Evidence
- tracked SQL file size changed from about
229Mto6.8K - data risk scan on tracked SQL file found no customer/order/production URL patterns
- sanitized SQL baseline contains
11table definitions - sanitized SQL baseline contains
10seed insert blocks ./scripts/verify.sh-> OK
Checks run
ls -lh project/sql/db-25052026.sqlhead -n 40 project/sql/db-25052026.sqlrg -n "(@|CLIENTE|order_id=|mercadodevida\.es|stripe|hotmail|gmail|phone=|oo6478022A|admin_natural)" project/sql/db-25052026.sqlpython3table and insert count check onproject/sql/db-25052026.sql./scripts/verify.sh
Notes
- Current tracked tree is safe for local module work.
- Earlier raw dump still exists in git history from past commits and would need history rewrite if full purge is required.
- Private raw snapshots should stay outside git or under ignored local paths only.