diff --git a/sql/shop/dev/202506027_ddl.sql b/sql/shop/dev/202506027_ddl.sql index 93cba430..88c7a9c1 100644 --- a/sql/shop/dev/202506027_ddl.sql +++ b/sql/shop/dev/202506027_ddl.sql @@ -1,2 +1,2 @@ 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 `is_special` (`is_special`) USING BTREE; +alter table shop_product_index add index `index_is_special` (`is_special`) USING BTREE; diff --git a/sql/shop/dev/202506028_ddl.sql b/sql/shop/dev/202506028_ddl.sql index 51e12521..09055664 100644 --- a/sql/shop/dev/202506028_ddl.sql +++ b/sql/shop/dev/202506028_ddl.sql @@ -4,4 +4,4 @@ alter table store_db_config add store_name varchar(64) NOT NULL COMMENT '店铺 alter table product_mapping add store_name varchar(64) NOT NULL COMMENT '店铺名称'; -alter table product_mapping add index `is_store_name` (`store_name`) USING BTREE; \ No newline at end of file +alter table product_mapping add index `index_store_name` (`store_name`) USING BTREE; \ No newline at end of file