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

10 lines
367 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.
-- 移除节点无用字段、加入是否nat机字段
ALTER TABLE `ss_node`
ADD COLUMN `is_nat` TINYINT NOT NULL DEFAULT '0' COMMENT '是否为NAT机0-否、1-是' AFTER `is_subscribe`,
DROP COLUMN `icmp`,
DROP COLUMN `tcp`,
DROP COLUMN `udp`;
ALTER TABLE `ss_node`
CHANGE COLUMN `traffic` `traffic` INT(11) NOT NULL DEFAULT '1000' COMMENT '每月可用流量单位G' AFTER `bandwidth`;