You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
450 B
9 lines
450 B
5 years ago
|
CREATE TABLE `config_ip_blacklist` (
|
||
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
|
`ip` varchar(64) NOT NULL DEFAULT '' COMMENT 'ip',
|
||
|
`remark` varchar(128) DEFAULT NULL COMMENT '备注',
|
||
|
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
|
||
|
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||
|
PRIMARY KEY (`id`),
|
||
|
UNIQUE KEY `uk_ip` (`ip`) USING BTREE
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='IP黑名单';
|