-- ===================================================== -- 修复数据和表结构,确保与后端服务一致 -- ===================================================== -- 1. 检查观看历史表名 SHOW TABLES LIKE '%history%'; SHOW TABLES LIKE '%view%'; -- 2. 检查 eb_works_relation 的 type 字段类型 DESCRIBE eb_works_relation; -- 3. 检查 eb_follow_record 的 follow_status 字段 SELECT DISTINCT follow_status FROM eb_follow_record LIMIT 10; -- 4. 检查直播间表名 SHOW TABLES LIKE '%room%'; SHOW TABLES LIKE '%live%';