DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL DEFAULT '', `password` varchar(255) NOT NULL DEFAULT '', `fname` varchar(255) NOT NULL DEFAULT '', `mname` varchar(255) NOT NULL DEFAULT '', `lname` varchar(255) NOT NULL DEFAULT '', `suffix` varchar(50) NOT NULL DEFAULT '', `dob` date NOT NULL DEFAULT '0000-00-00', `verified` int(1) NOT NULL DEFAULT '0', `ccid` int(3) NOT NULL DEFAULT '0', `regid` int(5) NOT NULL DEFAULT '0', `locid` int(7) NOT NULL DEFAULT '0', `listme` int(1) NOT NULL DEFAULT '0', `admin` tinyint(1) NOT NULL DEFAULT '0', `language` varchar(5) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `locked` tinyint(1) NOT NULL DEFAULT '0', `assurer_blocked` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `ccid` (`ccid`), KEY `regid` (`regid`), KEY `locid` (`locid`), KEY `email` (`email`), KEY `stats_users_created` (`created`), KEY `stats_users_verified` (`verified`), KEY `userverified` (`verified`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `domain`; CREATE TABLE `domain` ( `id` int(11) NOT NULL AUTO_INCREMENT, `memid` int(11) NOT NULL, `domain` varchar(255) NOT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `memid` (`memid`), KEY `domain` (`domain`), KEY `stats_domains_deleted` (`deleted`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `email`; CREATE TABLE `email` ( `id` int(11) NOT NULL AUTO_INCREMENT, `memid` int(11) NOT NULL DEFAULT '0', `email` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hash` varchar(50) NOT NULL DEFAULT '', `attempts` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `memid` (`memid`), KEY `stats_email_hash` (`hash`), KEY `stats_email_deleted` (`deleted`), KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `pinglog`; CREATE TABLE `pinglog` ( `when` datetime NOT NULL, `uid` int(11) NOT NULL, `email` varchar(255) NOT NULL, `result` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `baddomains`; CREATE TABLE `baddomains` ( `domain` varchar(255) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `alerts`; CREATE TABLE `alerts` ( `memid` int(11) NOT NULL DEFAULT '0', `general` tinyint(1) NOT NULL DEFAULT '0', `country` tinyint(1) NOT NULL DEFAULT '0', `regional` tinyint(1) NOT NULL DEFAULT '0', `radius` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`memid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `user_agreements`; CREATE TABLE `user_agreements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `memid` int(11) NOT NULL, `secmemid` int(11) DEFAULT NULL, `document` varchar(50) DEFAULT NULL, `date` datetime DEFAULT NULL, `active` int(1) NOT NULL, `method` varchar(100) NOT NULL, `comment` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `emailcerts`; CREATE TABLE `emailcerts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `memid` int(11) NOT NULL DEFAULT '0', `serial` varchar(50) NOT NULL DEFAULT '', `CN` varchar(255) NOT NULL DEFAULT '', `subject` text NOT NULL, `keytype` char(2) NOT NULL DEFAULT 'NS', `codesign` tinyint(1) NOT NULL DEFAULT '0', `md` enum('md5','sha1','sha256','sha512') NOT NULL DEFAULT 'sha512', `rootcert` int(2) NOT NULL DEFAULT '1', `type` enum('client', 'server') DEFAULT NULL, `csr_name` varchar(255) NOT NULL DEFAULT '', `csr_type` enum('CSR', 'SPKAC') NOT NULL, `crt_name` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `revoked` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `renewed` tinyint(1) NOT NULL DEFAULT '0', `disablelogin` int(1) NOT NULL DEFAULT '0', `pkhash` char(40) DEFAULT NULL, `certhash` char(40) DEFAULT NULL, `description` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `emailcerts_pkhash` (`pkhash`), KEY `revoked` (`revoked`), KEY `created` (`created`), KEY `memid` (`memid`), KEY `serial` (`serial`), KEY `stats_emailcerts_expire` (`expire`), KEY `emailcrt` (`crt_name`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `clientcerts`; CREATE TABLE `clientcerts` ( `id` int(11) NOT NULL, `disablelogin` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `jobs`; CREATE TABLE `jobs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `targetId` int(11) NOT NULL, `task` enum('sign','revoke') NOT NULL, `state` enum('open', 'done', 'error') NOT NULL DEFAULT 'open', `warning` int(2) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `state` (`state`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `notary`; CREATE TABLE `notary` ( `id` int(11) NOT NULL AUTO_INCREMENT, `from` int(11) NOT NULL DEFAULT '0', `to` int(11) NOT NULL DEFAULT '0', `awarded` int(3) NOT NULL DEFAULT '0', `points` int(3) NOT NULL DEFAULT '0', `method` enum('Face to Face Meeting','Trusted Third Parties','Thawte Points Transfer','Administrative Increase','CT Magazine - Germany','Temporary Increase','Unknown','TOPUP','TTP-Assisted') NOT NULL DEFAULT 'Face to Face Meeting', `location` varchar(255) NOT NULL DEFAULT '', `date` varchar(255) NOT NULL DEFAULT '', `when` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `sponsor` int(11) NOT NULL DEFAULT '0', `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `from` (`from`), KEY `to` (`to`), KEY `from_2` (`from`), KEY `to_2` (`to`), KEY `stats_notary_when` (`when`), KEY `stats_notary_method` (`method`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `cats_passed`; CREATE TABLE `cats_passed` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `variant_id` int(11) NOT NULL, `pass_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `test_passed` (`user_id`,`variant_id`,`pass_date`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; # -------------------------------------------------------- # # Table structure for table `cats_type` # DROP TABLE IF EXISTS `cats_type`; CREATE TABLE `cats_type` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type_text` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `type_text` (`type_text`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;