Files
GovAI/server/migrations/000012_add_usage_log_messages.up.sql
2026-06-15 23:48:37 +08:00

4 lines
209 B
SQL

-- 给使用日志表添加消息内容字段
ALTER TABLE app_usage_logs ADD COLUMN IF NOT EXISTS user_message TEXT DEFAULT '';
ALTER TABLE app_usage_logs ADD COLUMN IF NOT EXISTS ai_response TEXT DEFAULT '';