Skip to content
ispconfig3.sql 39.6 KiB
Newer Older
-- --------------------------------------------------------

--
-- Table for attempts login 
--

CREATE TABLE `attempts_login` (
  `ip` varchar(12) NOT NULL,
  `times` tinyint(1) NOT NULL default '1',
  `login_time` timestamp NOT NULL default '0000-00-00 00:00:00'
);
daniel's avatar
daniel committed

SET FOREIGN_KEY_CHECKS = 1;