bindbox-game/migrations/20260218_add_product_show_in_miniapp.sql

8 lines
247 B
SQL
Executable File

-- 添加商品小程序显示属性
-- 用途: 控制商品是否在小程序端显示
ALTER TABLE `products`
ADD COLUMN `show_in_miniapp` TINYINT(1) NOT NULL DEFAULT 1
COMMENT '是否在小程序显示: 1显示 0不显示'
AFTER `description`;