Files
nl-pms-api/migrations/20260815_user_avatar_history.sql
2026-08-15 17:04:47 +08:00

16 lines
927 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.
-- ============================================================
-- 用户头像历史(与线上账号关联,可多端回选)
-- 用法mysql -u root -p code_count < migrations/20260815_user_avatar_history.sql
-- 或:在已选中库后执行本文件内容。
-- 可重复执行CREATE IF NOT EXISTS
-- ============================================================
CREATE TABLE IF NOT EXISTS user_avatar_history(
id BIGINT PRIMARY KEY AUTO_INCREMENT COMMENT '历史记录ID',
user_id BIGINT NOT NULL COMMENT '所属用户ID',
mode VARCHAR(16) NOT NULL DEFAULT 'url' COMMENT '存储模式url | base64',
value MEDIUMTEXT NOT NULL COMMENT '头像内容URL 或 dataURL',
created_at VARCHAR(32) NOT NULL COMMENT '写入时间RFC3339',
KEY idx_uah_user_id(user_id, id DESC)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户头像历史(每人保留最近若干条)';