修复在IPV6下的异常报错

修复在IPV6下因ip长度问题而导致的的异常报错
This commit is contained in:
XCwosjw 2024-02-23 10:14:56 +08:00 committed by GitHub
parent 7d32833431
commit 268f76f9ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ CREATE TABLE `cloud_white` (
DROP TABLE IF EXISTS `cloud_record`;
CREATE TABLE `cloud_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(20) NOT NULL,
`ip` varchar(200) NOT NULL,
`addtime` datetime NOT NULL,
`usetime` datetime NOT NULL,
PRIMARY KEY (`id`),