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

This commit is contained in:
liyj 2025-06-14 16:36:13 +08:00
parent 97d321fcb2
commit 7d1193f6be

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;