change RAW to history

master
Sebastian Serfling 2025-03-31 16:02:58 +02:00
parent 32bc04fed8
commit 1f282a848a
1 changed files with 1 additions and 1 deletions

View File

@ -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}`")