fix: Add missing columns to daily_workflow_plans table

- Added generation_mode column (VARCHAR, default: 'llm_generation')
- Added committee_agent_count column (INTEGER, default: 0)
- Added fallback_used column (BOOLEAN, default: 0)

Also fixed:
- Imported daily_workflow_models in services/database.py to ensure models are registered
- Added _create_daily_workflow_tables() to database setup
- Created migration script to add columns to 35 existing databases
- Fixed WorkflowError type in frontend to use constructor for proper 'name' property

This resolves the 'no such column' sqlite3 errors when accessing the today-workflow API.
This commit is contained in:
ajaysi
2026-03-09 12:48:12 +05:30
parent 7747174f00
commit 9713af0c1b
8 changed files with 537 additions and 0 deletions

15
backend/check_cols.py Normal file
View File

@@ -0,0 +1,15 @@
import sqlite3
import os
db_path = r'workspace/workspace_user_33Gz1FPI86VDXhRY8QN4ragRFGN/db/alwrity_user_33Gz1FPI86VDXhRY8QN4ragRFGN.db'
if os.path.exists(db_path):
conn = sqlite3.connect(db_path)
cursor = conn.cursor()
cursor.execute("PRAGMA table_info(daily_workflow_plans)")
cols = cursor.fetchall()
col_names = [c[1] for c in cols]
print("Columns:", col_names)
conn.close()
else:
print(f"Database not found at {db_path}")