We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c7d77 commit 5cd5d48Copy full SHA for 5cd5d48
homeassistant/components/recorder/auto_repairs/statistics/schema.py
@@ -26,6 +26,9 @@ def validate_db_schema(instance: Recorder) -> set[str]:
26
schema_errors |= validate_table_schema_supports_utf8(
27
instance, StatisticsMeta, (StatisticsMeta.statistic_id,)
28
)
29
+ schema_errors |= validate_table_schema_has_correct_collation(
30
+ instance, StatisticsMeta
31
+ )
32
for table in (Statistics, StatisticsShortTerm):
33
schema_errors |= validate_db_schema_precision(instance, table)
34
schema_errors |= validate_table_schema_has_correct_collation(instance, table)
0 commit comments