3 lines
217 B
SQL
3 lines
217 B
SQL
alter table shop_product_index add column `is_special` varchar(2) NOT NULL DEFAULT '0' COMMENT '是否特价商品,0否,1是';
|
||
alter table shop_product_index add index `index_is_special` (`is_special`) USING BTREE;
|