Oroqen-CMD/db/add_product_video_field.sql
2025-08-10 21:47:23 +08:00

10 lines
288 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.

-- 为商品表添加产品视频URL字段
-- 执行时间2025-01-19
-- 添加产品视频字段
ALTER TABLE `oroqen_product`
ADD COLUMN `product_video` varchar(500) DEFAULT NULL COMMENT '产品视频URL'
AFTER `images`;
-- 验证字段是否添加成功
DESCRIBE `oroqen_product`;