mirror of
https://github.com/cassandra/home-information.git
synced 2026-04-17 21:19:45 -04:00
* Working on improving AI agent docs. * Update dev/docs and claude agent configs. * Updated claude commands.
462 B
462 B
Database Conventions
Indexing Strategy
class Meta:
indexes = [
models.Index(fields=['integration_name', 'integration_id']),
models.Index(fields=['timestamp']),
models.Index(fields=['entity', '-timestamp']),
]
db_table = 'entity_sensor_response'
Related Documentation
- Backend guidelines: Backend Guidelines
- Coding patterns: Django Patterns