update: vless

This commit is contained in:
v2board
2023-07-17 15:50:33 +08:00
parent 4c865d0262
commit c1097ad48f
4 changed files with 7 additions and 4 deletions

View File

@ -306,7 +306,7 @@ CREATE TABLE `v2_server_vless` (
`server_port` int(11) NOT NULL,
`tls` tinyint(1) NOT NULL,
`tls_settings` text,
`flow` varchar(11) DEFAULT NULL,
`flow` varchar(64) DEFAULT NULL,
`network` varchar(11) NOT NULL,
`network_settings` text,
`tags` text,

View File

@ -710,3 +710,6 @@ CREATE TABLE `v2_server_vless` (
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
ALTER TABLE `v2_server_vless`
CHANGE `flow` `flow` varchar(64) COLLATE 'utf8mb4_general_ci' NULL AFTER `tls_settings`;