1
0
mirror of https://github.com/elisspace/core.git synced 2026-09-12 14:08:36 +00:00
Files
core/homeassistant/components/recorder/const.py
2021-03-09 11:16:19 -10:00

11 lines
260 B
Python

"""Recorder constants."""
DATA_INSTANCE = "recorder_instance"
SQLITE_URL_PREFIX = "sqlite://"
DOMAIN = "recorder"
CONF_DB_INTEGRITY_CHECK = "db_integrity_check"
# The maximum number of rows (events) we purge in one delete statement
MAX_ROWS_TO_PURGE = 1000