change RAW to history

This commit is contained in:
Sebastian Serfling
2025-03-31 16:02:58 +02:00
parent 32bc04fed8
commit 1f282a848a
+1 -1
View File
@@ -27,7 +27,7 @@ def get_tables_from_db(connection):
tables = [] tables = []
for (table,) in cursor.fetchall(): for (table,) in cursor.fetchall():
if 'RAW.' in table: if 'history.' in table:
# Tabellennamen mit Backticks versehen # Tabellennamen mit Backticks versehen
tables.append(f"Kunden.`{table}`") tables.append(f"Kunden.`{table}`")