mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-04 19:49:16 +00:00
1. 修复Bark通知,会出现code找不到的报错; 2. 修改邮箱与推送重复的问题; 3. 修复服务监视ServiceTimer报错的问题; 4. 修复不发使用用户编辑页面的问题; 5. 修复订单回调处理出错的问题
21 lines
758 B
SQL
21 lines
758 B
SQL
-- 添加码支付配置
|
|
update `config` SET `name` = 'codepay_url', `value` = 'https://codepay.fateqq.com/creat_order/?' where `config`.`id` = 43;
|
|
update `config` SET `name` = 'codepay_id', `value` = '' where `config`.`id` = 44;
|
|
update `config` SET `name` = 'codepay_key', `value` = '' where `config`.`id` = 45;
|
|
|
|
-- 添加 支付回调链接自定义
|
|
update `config` SET `name` = 'website_callback_url', `value` = '' where `config`.`id` = 50;
|
|
|
|
-- 在线支付数据库 简化
|
|
alter table `payment`
|
|
drop `order_sn`,
|
|
drop `pay_way`,
|
|
drop `qr_id`,
|
|
drop `qr_url`,
|
|
drop `qr_code`,
|
|
drop `qr_local_url`;
|
|
|
|
drop table `order_goods`;
|
|
|
|
ALTER TABLE `payment`
|
|
ADD COLUMN `qr_code` text COLLATE utf8mb4_unicode_ci COMMENT '支付二维码' AFTER `amount`; |