Files
home-information/docs/dev/backend/database-conventions.md
Tony C 06bddccc6a Updated docs, claude agents and commands (#193)
* Working on improving AI agent docs.

* Update dev/docs and claude agent configs.

* Updated claude commands.
2025-09-17 17:19:51 +00:00

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'