java-mall/sql/shop/dev/202506027_ddl.sql
2025-06-28 11:39:48 +08:00

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

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;