mirror of
https://github.com/v2board/v2board.git
synced 2025-06-14 13:47:49 +08:00
fix trojan server online
This commit is contained in:
@ -27,6 +27,7 @@ CREATE TABLE `v2_coupon` (
|
||||
`type` tinyint(1) NOT NULL,
|
||||
`value` int(11) NOT NULL,
|
||||
`limit_use` int(11) DEFAULT NULL,
|
||||
`limit_plan_ids` varchar(255) DEFAULT NULL,
|
||||
`started_at` int(11) NOT NULL,
|
||||
`ended_at` int(11) NOT NULL,
|
||||
`created_at` int(11) NOT NULL,
|
||||
@ -281,4 +282,4 @@ CREATE TABLE `v2_user` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
-- 2020-06-11 12:38:33
|
||||
-- 2020-06-13 10:43:44
|
||||
|
@ -280,3 +280,6 @@ ADD `rate` varchar(11) COLLATE 'utf8mb4_general_ci' NOT NULL AFTER `name`;
|
||||
|
||||
ALTER TABLE `v2_server_log`
|
||||
ADD `method` varchar(255) NOT NULL AFTER `rate`;
|
||||
|
||||
ALTER TABLE `v2_coupon`
|
||||
ADD `limit_plan_ids` varchar(255) NULL AFTER `limit_use`;
|
||||
|
Reference in New Issue
Block a user