blob: 2c14945a499865f39b72c182f315385bd3650765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--
-- Main table for storing password admissions.
--
CREATE TABLE IF NOT EXISTS `passwordadmissions` (
`rule_id` varchar(32),
`message` text NOT NULL,
`start_time` INT(11) NOT NULL DEFAULT 0,
`end_time` INT(11) NOT NULL DEFAULT 0,
`password` varchar(255) NOT NULL,
`mkdate` int(11) NOT NULL DEFAULT 0,
`chdate` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`rule_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci;
|