mirror of
https://github.com/v2board/v2board.git
synced 2025-06-15 14:17:48 +08:00
update: hysteria2
This commit is contained in:
@ -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
|
||||
|
@ -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`;
|
||||
|
Reference in New Issue
Block a user