update: shadowsocks obfs pre support

This commit is contained in:
tokumeikoi
2022-05-12 02:39:59 +08:00
parent c09ab693bb
commit bd0834bd3f
6 changed files with 21 additions and 8 deletions

View File

@ -204,6 +204,8 @@ CREATE TABLE `v2_server_shadowsocks` (
`port` int(11) NOT NULL,
`server_port` int(11) NOT NULL,
`cipher` varchar(255) NOT NULL,
`obfs` char(11) DEFAULT NULL,
`obfs_settings` varchar(255) DEFAULT NULL,
`show` tinyint(4) NOT NULL DEFAULT '0',
`sort` int(11) DEFAULT NULL,
`created_at` int(11) NOT NULL,
@ -376,4 +378,4 @@ CREATE TABLE `v2_user` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 2022-05-01 17:06:46
-- 2022-05-10 17:13:24

View File

@ -569,3 +569,7 @@ DROP `settings`;
ALTER TABLE `v2_ticket`
DROP `last_reply_user_id`;
ALTER TABLE `v2_server_shadowsocks`
ADD `obfs` char(11) NULL AFTER `cipher`,
ADD `obfs_settings` varchar(255) NULL AFTER `obfs`;