]> WPIA git - gigi.git/blob - doc/tableStructure.sql
ADD: the daemon for pinging domains. (ping via email still missing)
[gigi.git] / doc / tableStructure.sql
1 DROP TABLE IF EXISTS `users`;
2 CREATE TABLE `users` (
3   `id` int(11) NOT NULL AUTO_INCREMENT,
4   `email` varchar(255) NOT NULL DEFAULT '',
5   `password` varchar(255) NOT NULL DEFAULT '',
6   `fname` varchar(255) NOT NULL DEFAULT '',
7   `mname` varchar(255) NOT NULL DEFAULT '',
8   `lname` varchar(255) NOT NULL DEFAULT '',
9   `suffix` varchar(50) NOT NULL DEFAULT '',
10   `dob` date NOT NULL DEFAULT '0000-00-00',
11   `verified` int(1) NOT NULL DEFAULT '0',
12   `ccid` int(3) NOT NULL DEFAULT '0',
13   `regid` int(5) NOT NULL DEFAULT '0',
14   `locid` int(7) NOT NULL DEFAULT '0',
15   `listme` int(1) NOT NULL DEFAULT '0',
16   `admin` tinyint(1) NOT NULL DEFAULT '0',
17   `language` varchar(5) NOT NULL DEFAULT '',
18   `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
19   `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
20   `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
21   `locked` tinyint(1) NOT NULL DEFAULT '0',
22   `assurer_blocked` tinyint(1) NOT NULL DEFAULT '0',
23   PRIMARY KEY (`id`),
24   KEY `ccid` (`ccid`),
25   KEY `regid` (`regid`),
26   KEY `locid` (`locid`),
27   KEY `email` (`email`),
28   KEY `stats_users_created` (`created`),
29   KEY `stats_users_verified` (`verified`),
30   KEY `userverified` (`verified`)
31 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
32
33
34 DROP TABLE IF EXISTS `domains`;
35 CREATE TABLE `domains` (
36   `id` int(11) NOT NULL AUTO_INCREMENT,
37   `memid` int(11) NOT NULL,
38   `domain` varchar(255) NOT NULL,
39   `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
40   `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
41   `deleted` datetime DEFAULT NULL,
42   PRIMARY KEY (`id`),
43   KEY `memid` (`memid`),
44   KEY `domain` (`domain`),
45   KEY `stats_domains_deleted` (`deleted`)
46 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
47
48 DROP TABLE IF EXISTS `emails`;
49 CREATE TABLE `emails` (
50   `id` int(11) NOT NULL AUTO_INCREMENT,
51   `memid` int(11) NOT NULL DEFAULT '0',
52   `email` varchar(255) NOT NULL DEFAULT '',
53   `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
54   `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
55   `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
56   `hash` varchar(50) NOT NULL DEFAULT '',
57   `attempts` int(1) NOT NULL DEFAULT '0',
58   PRIMARY KEY (`id`),
59   KEY `memid` (`memid`),
60   KEY `stats_email_hash` (`hash`),
61   KEY `stats_email_deleted` (`deleted`),
62   KEY `email` (`email`)
63 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
64
65 DROP TABLE IF EXISTS `emailPinglog`;
66 CREATE TABLE `emailPinglog` (
67   `when` datetime NOT NULL,
68   `uid` int(11) NOT NULL,
69   `emailid` int(11) NOT NULL,
70   `type` enum('fast', 'active') NOT NULL,
71   `status` enum('open', 'success', 'failed') NOT NULL,
72   `result` varchar(255) NOT NULL
73 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
74
75 DROP TABLE IF EXISTS `pingconfig`;
76 CREATE TABLE `pingconfig` (
77   `id` int(13) NOT NULL AUTO_INCREMENT,
78   `domainid` int(11) NOT NULL,
79   `type` enum('email', 'ssl', 'http', 'dns') NOT NULL,
80   `info` varchar(255) NOT NULL,
81   PRIMARY KEY (`id`)
82 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
83
84
85 DROP TABLE IF EXISTS `domainPinglog`;
86 CREATE TABLE `domainPinglog` (
87   `when` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
88   `configId` int(13) NOT NULL,
89   `state` enum('open', 'success', 'failed') NOT NULL,
90   `result` varchar(255) NOT NULL
91 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
92
93 DROP TABLE IF EXISTS `baddomains`;
94 CREATE TABLE `baddomains` (
95   `domain` varchar(255) NOT NULL DEFAULT ''
96 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
97
98
99 DROP TABLE IF EXISTS `alerts`;
100 CREATE TABLE `alerts` (
101   `memid` int(11) NOT NULL DEFAULT '0',
102   `general` tinyint(1) NOT NULL DEFAULT '0',
103   `country` tinyint(1) NOT NULL DEFAULT '0',
104   `regional` tinyint(1) NOT NULL DEFAULT '0',
105   `radius` tinyint(1) NOT NULL DEFAULT '0',
106   PRIMARY KEY (`memid`)
107 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
108
109 DROP TABLE IF EXISTS `user_agreements`;
110 CREATE TABLE `user_agreements` (
111   `id` int(11) NOT NULL AUTO_INCREMENT,
112   `memid` int(11) NOT NULL,
113   `secmemid` int(11) DEFAULT NULL,
114   `document` varchar(50) DEFAULT NULL,
115   `date` datetime DEFAULT NULL,
116   `active` int(1) NOT NULL,
117   `method` varchar(100) NOT NULL,
118   `comment` varchar(100) DEFAULT NULL,
119   PRIMARY KEY (`id`)
120 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
121
122 DROP TABLE IF EXISTS `certs`;
123 CREATE TABLE `certs` (
124   `id` int(11) NOT NULL AUTO_INCREMENT,
125   `memid` int(11) NOT NULL DEFAULT '0',
126   `serial` varchar(50) NOT NULL DEFAULT '',
127   `CN` varchar(255) NOT NULL DEFAULT '',
128   `subject` text NOT NULL,
129   `keytype` char(2) NOT NULL DEFAULT 'NS',
130   `codesign` tinyint(1) NOT NULL DEFAULT '0',
131   `md` enum('md5','sha1','sha256','sha512') NOT NULL DEFAULT 'sha512',
132   `profile` int(3) NOT NULL,
133
134   `csr_name` varchar(255) NOT NULL DEFAULT '',
135   `csr_type` enum('CSR', 'SPKAC') NOT NULL,
136   `crt_name` varchar(255) NOT NULL DEFAULT '',
137   `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
138   `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
139   `revoked` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
140   `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
141   `renewed` tinyint(1) NOT NULL DEFAULT '0',
142   `disablelogin` int(1) NOT NULL DEFAULT '0',
143   `pkhash` char(40) DEFAULT NULL,
144   `certhash` char(40) DEFAULT NULL,
145   `description` varchar(100) NOT NULL DEFAULT '',
146   PRIMARY KEY (`id`),
147   KEY `emailcerts_pkhash` (`pkhash`),
148   KEY `revoked` (`revoked`),
149   KEY `created` (`created`),
150   KEY `memid` (`memid`),
151   KEY `serial` (`serial`),
152   KEY `stats_emailcerts_expire` (`expire`),
153   KEY `emailcrt` (`crt_name`)
154 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
155
156 DROP TABLE IF EXISTS `clientcerts`;
157 CREATE TABLE `clientcerts` (
158   `id` int(11) NOT NULL,
159   `disablelogin` int(1) NOT NULL DEFAULT '0',
160
161   PRIMARY KEY (`id`)
162 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
163
164 DROP TABLE IF EXISTS `profiles`;
165 CREATE TABLE `profiles` (
166   `id` int(3) NOT NULL AUTO_INCREMENT,
167   `keyname` varchar(60) NOT NULL,
168   `keyUsage` varchar(100) NOT NULL,
169   `extendedKeyUsage` varchar(100) NOT NULL,
170   `rootcert` int(2) NOT NULL DEFAULT '1',
171   `name` varchar(100) NOT NULL,
172   PRIMARY KEY (`id`),
173   UNIQUE (`keyname`)
174 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
175 INSERT INTO `profiles` SET rootcert=0, keyname='client', name='ssl-client (unassured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='clientAuth';
176 INSERT INTO `profiles` SET rootcert=0, keyname='mail',  name='mail (unassured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='emailProtection';
177 INSERT INTO `profiles` SET rootcert=0, keyname='client-mail', name='ssl-client + mail (unassured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='clientAuth, emailProtection';
178 INSERT INTO `profiles` SET rootcert=0, keyname='server', name='ssl-server (unassured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='serverAuth';
179
180 INSERT INTO `profiles` SET rootcert=1, keyname='client-a', name='ssl-client (assured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='clientAuth';
181 INSERT INTO `profiles` SET rootcert=1, keyname='mail-a',  name='mail (assured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='emailProtection';
182 INSERT INTO `profiles` SET rootcert=1, keyname='client-mail-a', name='ssl-client + mail(assured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='clientAuth, emailProtection';
183 INSERT INTO `profiles` SET rootcert=1, keyname='server-a', name='ssl-server (assured)', keyUsage='digitalSignature, keyEncipherment, keyAgreement', extendedKeyUsage='serverAuth';
184
185 -- 0=unassured, 1=assured, 2=codesign, 3=orga, 4=orga-sign
186 DROP TABLE IF EXISTS `subjectAlternativeNames`;
187 CREATE TABLE `subjectAlternativeNames` (
188   `certId` int(11) NOT NULL,
189   `contents` varchar(50) NOT NULL,
190   `type` enum('email','DNS') NOT NULL
191 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
192
193
194
195
196 DROP TABLE IF EXISTS `jobs`;
197 CREATE TABLE `jobs` (
198   `id` int(11) NOT NULL AUTO_INCREMENT,
199   `targetId` int(11) NOT NULL,
200   `task` enum('sign','revoke') NOT NULL,
201   `state` enum('open', 'done', 'error') NOT NULL DEFAULT 'open',
202   `warning` int(2) NOT NULL DEFAULT '0',
203   `executeFrom` DATE,
204   `executeTo` VARCHAR(11),
205   PRIMARY KEY (`id`),
206   KEY `state` (`state`)
207 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
208
209
210 DROP TABLE IF EXISTS `notary`;
211 CREATE TABLE `notary` (
212   `id` int(11) NOT NULL AUTO_INCREMENT,
213   `from` int(11) NOT NULL DEFAULT '0',
214   `to` int(11) NOT NULL DEFAULT '0',
215   `awarded` int(3) NOT NULL DEFAULT '0',
216   `points` int(3) NOT NULL DEFAULT '0',
217   `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',
218   `location` varchar(255) NOT NULL DEFAULT '',
219   `date` varchar(255) NOT NULL DEFAULT '',
220   `when` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
221   `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
222   `sponsor` int(11) NOT NULL DEFAULT '0',
223   `deleted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
224   PRIMARY KEY (`id`),
225   KEY `from` (`from`),
226   KEY `to` (`to`),
227   KEY `from_2` (`from`),
228   KEY `to_2` (`to`),
229   KEY `stats_notary_when` (`when`),
230   KEY `stats_notary_method` (`method`)
231 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
232
233
234 DROP TABLE IF EXISTS `cats_passed`;
235 CREATE TABLE `cats_passed` (
236   `id` int(11) NOT NULL AUTO_INCREMENT,
237   `user_id` int(11) NOT NULL,
238   `variant_id` int(11) NOT NULL,
239   `pass_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
240   PRIMARY KEY (`id`),
241   UNIQUE KEY `test_passed` (`user_id`,`variant_id`,`pass_date`)
242 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
243
244 # --------------------------------------------------------
245
246 #
247 # Table structure for table `cats_type`
248 #
249
250 DROP TABLE IF EXISTS `cats_type`;
251 CREATE TABLE `cats_type` (
252   `id` int(11) NOT NULL AUTO_INCREMENT,
253   `type_text` varchar(255) NOT NULL,
254   PRIMARY KEY (`id`),
255   UNIQUE KEY `type_text` (`type_text`)
256 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;