update: remove useless field

This commit is contained in:
tokumeikoi 2022-05-02 03:50:36 +08:00
parent 12caada8dd
commit fae1e1f945
2 changed files with 4 additions and 2 deletions

View File

@ -246,7 +246,6 @@ CREATE TABLE `v2_server_v2ray` (
`tags` varchar(255) DEFAULT NULL,
`rate` varchar(11) NOT NULL,
`network` text NOT NULL,
`settings` text,
`rules` text,
`networkSettings` text,
`tlsSettings` text,
@ -377,4 +376,4 @@ CREATE TABLE `v2_user` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 2022-04-27 16:56:19
-- 2022-05-01 17:06:46

View File

@ -564,3 +564,6 @@ ALTER TABLE `v2_notice`
ALTER TABLE `v2_ticket`
DROP `last_reply_user_id`,
ADD `reply_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0:待回复 1:已回复' AFTER `status`;
ALTER TABLE `v2_server_v2ray`
DROP `settings`;