mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
12 lines
411 B
SQL
12 lines
411 B
SQL
-- 触发审计规则后强制跳转地址
|
|
INSERT INTO `config` VALUES ('112', 'redirect_url', '');
|
|
|
|
-- 移除审计规则无用字段
|
|
ALTER TABLE `rule`
|
|
DROP COLUMN `created_at`,
|
|
DROP COLUMN `updated_at`;
|
|
|
|
-- 加入新审计规则条目:外汇交易类
|
|
INSERT INTO `rule` (`id`, `type`, `name`, `pattern`)
|
|
VALUES (18, '1', '外汇交易类', '(.*\.||)(metatrader4|metatrader5|mql5)\.(org|com|net)');
|