32 lines
814 B
Python
32 lines
814 B
Python
import sqlite3
|
|
|
|
from services.database import get_user_db_path
|
|
|
|
USER_ID = "alwrity"
|
|
db_path = get_user_db_path(USER_ID)
|
|
|
|
conn = sqlite3.connect(db_path)
|
|
cursor = conn.cursor()
|
|
|
|
# Check tables
|
|
cursor.execute("SELECT name FROM sqlite_master WHERE type='table' AND name LIKE 'daily_%'")
|
|
tables = cursor.fetchall()
|
|
print(f"Daily tables: {tables}")
|
|
|
|
if tables:
|
|
cursor.execute("PRAGMA table_info(daily_workflow_plans)")
|
|
cols = cursor.fetchall()
|
|
col_names = [c[1] for c in cols]
|
|
print(f"\nColumns in daily_workflow_plans: {col_names}")
|
|
|
|
required = ['generation_mode', 'committee_agent_count', 'fallback_used']
|
|
for col in required:
|
|
if col in col_names:
|
|
print(f" ✓ {col}")
|
|
else:
|
|
print(f" ✗ {col}")
|
|
else:
|
|
print("No daily tables found")
|
|
|
|
conn.close()
|