From 68081a180e65fa11b1011de914084ed6e3404e7f Mon Sep 17 00:00:00 2001 From: liyj <1617420630@qq.com> Date: Sat, 14 Jun 2025 16:36:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=95=86=E5=93=81=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=89=B9=E4=BB=B7=E5=95=86=E5=93=81=E6=A0=87=E5=BF=97?= =?UTF-8?q?sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/shop/dev/202506014_ddl.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/shop/dev/202506014_ddl.sql diff --git a/sql/shop/dev/202506014_ddl.sql b/sql/shop/dev/202506014_ddl.sql new file mode 100644 index 00000000..45d13dfb --- /dev/null +++ b/sql/shop/dev/202506014_ddl.sql @@ -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; \ No newline at end of file