Browse Source

修复在IPV6下的异常报错

修复在IPV6下因ip长度问题而导致的的异常报错
pull/171/head
XCwosjw 7 months ago
committed by GitHub
parent
commit
268f76f9ba
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      install.sql

2
install.sql

@ -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`),

Loading…
Cancel
Save