同步商品添加特价商品标志sql

This commit is contained in:
liyj 2025-06-14 16:36:13 +08:00
parent 1502460438
commit 68081a180e

View File

@ -0,0 +1,2 @@
alter table shop_product_base add column `is_special` varchar(2) NOT NULL DEFAULT '0' COMMENT '是否特价商品,0否1是';
alter table shop_product_base add index `is_special` (`is_special`) USING BTREE;