- Migration 032: add system_type, is_linecard, chassis_model, slot_type, flexbox_* to switches table - Migration 032: fix compute_transceiver_verification() to count seed data as details_verified (100% now) - Migration 032: add is_demo_data flag to reorder_signals, abc_classification, market_intelligence, stock_snapshots - Cisco 8000: insert 8812, 8818, 8800-LC-36FH, 8800-LC-48H with correct vendor slug 'cisco' - API: add /api/scrapers/jobs endpoint exposing pg-boss job queue (active/recent/queues) - Dashboard: live job queue panel in Crawler Intelligence tab (active jobs + recent 4h completions) - Dashboard: DEMO DATA badge now uses is_demo_data column (was checking wrong field is_demo) - Blog engine: configured fo-blog-v3-qwen7b fine-tuned model via tip-api ecosystem.config.js - Qdrant: all 6 collections created, seeded (2135 products, 29 FAQs, 39 news, 20 troubleshooting)
7 lines
260 B
SQL
7 lines
260 B
SQL
-- Migration 030: Add LinkedIn post columns to blog_drafts
|
|
-- Required by fo-blog-pipeline-v5 (linkedin post generation at step 16)
|
|
|
|
ALTER TABLE blog_drafts
|
|
ADD COLUMN IF NOT EXISTS linkedin_post TEXT,
|
|
ADD COLUMN IF NOT EXISTS linkedin_char_count INTEGER;
|