peixue-dev/peidu/Archive/一次性文件/[一次性]添加coupon缺失字段-2026-01-25.sql

15 lines
434 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.

-- 添加coupon表缺失的字段
-- 2026-01-25
-- 检查字段是否存在
SELECT COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_SCHEMA = 'peixue'
AND TABLE_NAME = 'coupon'
AND COLUMN_NAME = 'limit_per_user';
-- 如果上面查询结果为空,执行下面的语句添加字段
ALTER TABLE coupon
ADD COLUMN limit_per_user INT DEFAULT -1 COMMENT '每人限领数量(-1表示不限制'
AFTER used_quantity;