Files
ProxyPanel/sql/update/20190408.sql
兔姬桑 a0922521cf 初始化
2020-08-05 03:19:28 +08:00

7 lines
240 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 加入中转节点废弃无用的is_udp字段
ALTER TABLE `ss_node`
DROP COLUMN `is_udp`;
ALTER TABLE `ss_node`
ADD COLUMN `is_transit` TINYINT(4) NOT NULL DEFAULT '0' COMMENT '是否中转节点0-否、1-是' AFTER `is_nat`;