roundcube-defense/sql/mysql.sql

17 lines
442 B
MySQL
Raw Permalink Normal View History

2013-02-21 22:35:29 +04:00
-- --------------------------------------------------------
--
-- Table structure for table `defense`
--
CREATE TABLE IF NOT EXISTS `defense` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`epoch` int(11) NOT NULL,
`type` tinyint(4) NOT NULL,
2017-12-10 16:53:51 +03:00
`ipaddr` varchar(256) NOT NULL,
2013-02-21 22:35:29 +04:00
`data` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=30 ;
2017-12-10 16:53:51 +03:00
-- --------------------------------------------------------