HaniBlindBox/server/scripts/alter_goods_describe.sql
2026-02-28 00:08:06 +08:00

3 lines
192 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.

-- 将 goods_describe 字段从 varchar(300) 改为 text以支持富文本HTML内容
ALTER TABLE `goods` MODIFY COLUMN `goods_describe` text DEFAULT NULL COMMENT '商品详情(富文本)';