[34288f42] Keine Zusammenfassung angegeben.

Keine Zusammenfassung angegeben.
This commit is contained in:
2026-05-04 06:53:45 +00:00
parent 7cb29cd8da
commit d90d856620
10 changed files with 96 additions and 51 deletions

9
check_tables.py Normal file
View File

@@ -0,0 +1,9 @@
import sqlite3
db_path = "/app/fotograf-de-scraper/backend/data/fotograf_jobs.db"
conn = sqlite3.connect(db_path)
cursor = conn.cursor()
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
tables = cursor.fetchall()
print(f"Tables: {[t[0] for t in tables]}")
conn.close()