Files
mokeegateway/sql/prod_alter_20260613.sql
2026-07-15 16:13:27 +08:00

4 lines
286 B
SQL
Raw Permalink 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.
-- 生产环境新增列
ALTER TABLE sys_login_log ADD COLUMN real_name VARCHAR(64) DEFAULT NULL COMMENT '用户真实姓名' AFTER username;
ALTER TABLE sys_operation_log ADD COLUMN response_body TEXT DEFAULT NULL COMMENT '接口返回报文截断至2000字符' AFTER error_msg;