refactor: rename database → storage

More semantically accurate: contains SQLite files, schema, fixtures, test data.
Updated all references in code, scripts, docs.
This commit is contained in:
Théophile Gervreau-Mercier
2026-02-12 12:12:58 +01:00
parent 0e4921583e
commit 7fca85d1c1
38 changed files with 131 additions and 131 deletions

View File

@@ -186,7 +186,7 @@ include 'inc/header.php';
### Test Database
Development uses `database/test.db` (gitignored).
Development uses `storage/test.db` (gitignored).
**Create test database:**
```bash
@@ -360,7 +360,7 @@ All will auto-refresh when you save files! ✨
### Using a Real Test Database
The test database (`database/test.db`) is gitignored. To share test data:
The test database (`storage/test.db`) is gitignored. To share test data:
```bash
# Create fixtures
@@ -479,7 +479,7 @@ just test
## 📚 Further Reading
- [Test Documentation](../tests/README.md)
- [Database Specification](../database/DATABASE_SPECIFICATION.md)
- [Database Specification](../storage/DATABASE_SPECIFICATION.md)
- [Migration Guide](../MIGRATION_GUIDE.md)
- [Deployment Guide](../nginx/DEPLOYMENT_COMPLETE.md)