implement variables API
full CRUD for variables with endpoints:
- POST /api/variables/ (create)
- POST /api/variables/filter (list)
- POST /api/variables/count
- GET /api/variables/{id}
- GET /api/variables/name/{name}
- PATCH /api/variables/{id}
- PATCH /api/variables/name/{name}
- DELETE /api/variables/{id}
- DELETE /api/variables/name/{name}
adds variable table to both sqlite and postgres schemas with:
- id, name (unique), value (json), tags (json array)
- created/updated timestamps
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>