Files
Mycontent/soul-api/scripts/add_persons_avatar.sql

7 lines
359 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.

-- 链接人与事 - persons 表新增 avatar 字段
-- 有 user_id 时头像从 users 表取;无 user_id 时用本字段(管理端可编辑)
-- 执行mysql -u user -p db < soul-api/scripts/add_persons_avatar.sql
-- 若已存在则忽略错误
ALTER TABLE persons ADD COLUMN avatar VARCHAR(512) DEFAULT '' COMMENT '头像URL无user_id时使用';