diff --git a/mysql_timestamp_check.py b/mysql_timestamp_check.py index 98f14b7..98c7828 100644 --- a/mysql_timestamp_check.py +++ b/mysql_timestamp_check.py @@ -27,7 +27,7 @@ def get_tables_from_db(connection): tables = [] for (table,) in cursor.fetchall(): - if 'RAW.' in table: + if 'history.' in table: # Tabellennamen mit Backticks versehen tables.append(f"Kunden.`{table}`")