bindbox-game/migrations/20260206_add_task_tier_quota.sql
2026-02-06 16:49:27 +08:00

7 lines
310 B
SQL
Raw 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.

-- 任务限量领取功能 - 数据库迁移脚本
-- 为 task_center_task_tiers 表添加限额字段
ALTER TABLE task_center_task_tiers
ADD COLUMN quota INT DEFAULT 0 COMMENT '总限额0表示不限' AFTER activity_id,
ADD COLUMN claimed_count INT DEFAULT 0 COMMENT '已领取数' AFTER quota;