|
@@ -598,6 +598,7 @@ CREATE TABLE IF NOT EXISTS package_orders (
|
|
|
package_name VARCHAR(100) COMMENT '套餐名称',
|
|
package_name VARCHAR(100) COMMENT '套餐名称',
|
|
|
price INT NOT NULL COMMENT '支付金额(分)',
|
|
price INT NOT NULL COMMENT '支付金额(分)',
|
|
|
platform_fee INT DEFAULT 0 COMMENT '平台服务费(分)',
|
|
platform_fee INT DEFAULT 0 COMMENT '平台服务费(分)',
|
|
|
|
|
+ user_coupon_id BIGINT COMMENT '使用的用户优惠券ID',
|
|
|
guide_id BIGINT COMMENT '成长规划师ID',
|
|
guide_id BIGINT COMMENT '成长规划师ID',
|
|
|
status VARCHAR(20) DEFAULT 'pending' COMMENT '状态: pending/paid/cancelled/refunded',
|
|
status VARCHAR(20) DEFAULT 'pending' COMMENT '状态: pending/paid/cancelled/refunded',
|
|
|
pay_method VARCHAR(20) COMMENT '支付方式',
|
|
pay_method VARCHAR(20) COMMENT '支付方式',
|
|
@@ -2530,3 +2531,20 @@ CREATE TABLE IF NOT EXISTS five_dimension_scores (
|
|
|
INDEX idx_family_time (family_id, assessed_at),
|
|
INDEX idx_family_time (family_id, assessed_at),
|
|
|
INDEX idx_source (source_type, source_id)
|
|
INDEX idx_source (source_type, source_id)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='五维能量分数历史记录';
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='五维能量分数历史记录';
|
|
|
|
|
+
|
|
|
|
|
+-- 家庭邀请令牌表
|
|
|
|
|
+CREATE TABLE IF NOT EXISTS family_invitations (
|
|
|
|
|
+ id BIGINT AUTO_INCREMENT PRIMARY KEY,
|
|
|
|
|
+ family_id BIGINT NOT NULL COMMENT '家庭ID',
|
|
|
|
|
+ token VARCHAR(64) NOT NULL UNIQUE COMMENT '邀请令牌(UUID)',
|
|
|
|
|
+ created_by BIGINT NOT NULL COMMENT '创建人用户ID',
|
|
|
|
|
+ status VARCHAR(16) DEFAULT 'active' COMMENT '状态: active/used/expired/revoked',
|
|
|
|
|
+ expires_at DATETIME COMMENT '过期时间',
|
|
|
|
|
+ max_use_count INT DEFAULT 1 COMMENT '最大使用次数',
|
|
|
|
|
+ used_count INT DEFAULT 0 COMMENT '已使用次数',
|
|
|
|
|
+ created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
+ updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
|
|
|
+ INDEX idx_family_id (family_id),
|
|
|
|
|
+ INDEX idx_token (token),
|
|
|
|
|
+ INDEX idx_status (status)
|
|
|
|
|
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='家庭邀请令牌';
|