From 28b71e04aa6b6c7a059c8b9bba7cb1d9295a9a41 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 25 Oct 2015 15:07:37 +0100 Subject: [PATCH] Update titles --- source/_components/history.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/history.markdown b/source/_components/history.markdown index 14448b44076..2ec3792e469 100644 --- a/source/_components/history.markdown +++ b/source/_components/history.markdown @@ -30,7 +30,7 @@ history: Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transferred to anyone at any time.

-### Implementation details +#### {% linkable_title Implementation details %} The history is stored in a SQLite databse `home-assistant.db` within your config directory. @@ -46,7 +46,7 @@ The history is stored in a SQLite databse `home-assistant.db` within your config When the history component queries the states table it only selects states where the state has changed: `WHERE last_changed=last_updated` -#### On dates +#### {% linkable_title On dates %} SQLite databases do not support native dates. That's why all the dates are saved in seconds since the UNIX epoch. Convert them manually using this site or in Python: