update: hysteria2

This commit is contained in:
v2board
2023-09-28 13:34:58 +08:00
parent 3f24ba9917
commit 4434b13361
5 changed files with 89 additions and 3 deletions

View File

@ -231,6 +231,8 @@ CREATE TABLE `v2_server_hysteria` (
`down_mbps` int(11) NOT NULL,
`server_name` varchar(64) DEFAULT NULL,
`insecure` tinyint(1) NOT NULL DEFAULT '0',
`ignore_client_bandwidth` tinyint(1) NOT NULL DEFAULT '0',
`obfs_type` varchar(11) DEFAULT NULL,
`created_at` int(11) NOT NULL,
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`)
@ -470,4 +472,4 @@ CREATE TABLE `v2_user` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 2023-09-06 07:17:40
-- 2023-09-24 19:19:32

View File

@ -720,3 +720,7 @@ ADD `transfer_unit_price` int(11) NULL AFTER `daily_unit_price`;
ALTER TABLE `v2_order`
DROP `surplus_order_ids`;
ALTER TABLE `v2_server_hysteria`
ADD `ignore_client_bandwidth` tinyint(1) NOT NULL DEFAULT '0' AFTER `insecure`,
ADD `obfs_type` varchar(11) NULL AFTER `ignore_client_bandwidth`;