diff --git a/api/core/types/config.go b/api/core/types/config.go
index 34287bae..f3882769 100644
--- a/api/core/types/config.go
+++ b/api/core/types/config.go
@@ -143,10 +143,6 @@ type SystemConfig struct {
RegisterWays []string `json:"register_ways,omitempty"` // 注册方式:支持手机(mobile),邮箱注册(email),账号密码注册
EnabledRegister bool `json:"enabled_register,omitempty"` // 是否开放注册
- RewardImg string `json:"reward_img,omitempty"` // 众筹收款二维码地址
- EnabledReward bool `json:"enabled_reward,omitempty"` // 启用众筹功能
- PowerPrice float64 `json:"power_price,omitempty"` // 算力单价
-
OrderPayTimeout int `json:"order_pay_timeout,omitempty"` //订单支付超时时间
VipInfoText string `json:"vip_info_text,omitempty"` // 会员页面充值说明
DefaultModels []int `json:"default_models,omitempty"` // 默认开通的 AI 模型
diff --git a/database/update-v4.1.2.sql b/database/update-v4.1.2.sql
index d3e2c2bd..b9d54215 100644
--- a/database/update-v4.1.2.sql
+++ b/database/update-v4.1.2.sql
@@ -1,7 +1,9 @@
ALTER TABLE `chatgpt_suno_jobs` MODIFY `id` INT AUTO_INCREMENT;
ALTER TABLE `chatgpt_mj_jobs` CHANGE `channel_id` `channel_id` VARCHAR(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '频道ID';
-ALTER TABLE chatgpt_reward RENAME TO chatgpt_redeems;
+truncate table chatgpt_rewards; -- 清空数据表
+
+ALTER TABLE chatgpt_rewards RENAME TO chatgpt_redeems;
ALTER TABLE chatgpt_redeems COMMENT '兑换码';
ALTER TABLE `chatgpt_redeems` CHANGE `tx_id` `power` INT NOT NULL COMMENT '算力';
ALTER TABLE `chatgpt_redeems` DROP `remark`;
diff --git a/web/src/store/cache.js b/web/src/store/cache.js
index 5a67b5c5..327f7be7 100644
--- a/web/src/store/cache.js
+++ b/web/src/store/cache.js
@@ -80,7 +80,7 @@ export function getLicenseInfo() {
httpGet('/api/config/license').then(res => {
item.data = res
// cache expires after 10 minutes
- item.expire = Date.now() + 1000 * 60 * 60
+ item.expire = Date.now() + 1000 * 60 * 10
Storage.set(licenseInfoKey, item)
resolve(item.data)
}).catch(err => {
diff --git a/web/src/views/Member.vue b/web/src/views/Member.vue
index 1a9aad89..5cfca464 100644
--- a/web/src/views/Member.vue
+++ b/web/src/views/Member.vue
@@ -13,7 +13,7 @@