Some checks failed
Build docker and publish / build (20.15.1) (push) Has been cancelled
refactor: 重构用户模型和密码验证逻辑 feat(epay): 添加支付类型支持 docs: 添加安装和配置指南文档 fix: 修复优惠券过期检查逻辑 perf: 优化设备解绑缓存清理流程 test: 添加密码验证测试用例 chore: 更新依赖版本
8 lines
334 B
SQL
8 lines
334 B
SQL
INSERT INTO `system` (`category`, `key`, `value`, `type`, `desc`, `created_at`, `updated_at`)
|
|
SELECT 'site', 'CustomData', '{
|
|
"kr_website_id": ""
|
|
}', 'string', 'Custom Data', '2025-04-22 14:25:16.637', '2025-10-14 15:47:19.187'
|
|
WHERE NOT EXISTS (
|
|
SELECT 1 FROM `system` WHERE `category` = 'site' AND `key` = 'CustomData'
|
|
);
|