Files
home-information/docs/dev/backend/database-conventions.md
Tony C 39c7266e77 Refactor developer documentation for role-based use (#126)
* Refactored dev documentation extensivekly.

* Style tweaks and link removals.
2025-08-26 23:17:26 +00:00

451 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'