`proxy_used` enum('Y','N') NOT NULL DEFAULT 'N' COMMENT 'Proxy used?',
`first_attempt` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'First attempt',
`last_attempt` TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Last attempt',
- `count` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Counter',
+ `count` bigint(20) unsigned NOT NULL DEFAULT '1' COMMENT 'Counter',
PRIMARY KEY (`id`),
KEY `remote_addr` (`remote_addr`)
) TYPE=InnoDB COMMENT='Gathered data of attack';