xinli/sql/添加AI分析字段.sql
2025-12-19 09:03:26 +08:00

6 lines
377 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 为测评报告表添加AI分析结果字段
ALTER TABLE psy_assessment_report ADD COLUMN ai_analysis LONGTEXT COMMENT 'AI分析结果HTML格式' AFTER generate_time;
-- 为问卷报告表添加AI分析结果字段如果有的话
ALTER TABLE psy_questionnaire_report ADD COLUMN ai_analysis LONGTEXT COMMENT 'AI分析结果HTML格式' AFTER generate_time;