X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=doc%2FtableStructure.sql;h=9ad4d13474a831bddc1770070df2400a27349cf1;hp=2d5fa6c38421d2f304f8d9dc8ef524ae0ed4b88c;hb=74f10c9db6cf2fcb5002ef4d2fa7f3c43abd6fb0;hpb=446d3aa82c177eb844f6f19c8f85d4a6e631efe7 diff --git a/doc/tableStructure.sql b/doc/tableStructure.sql index 2d5fa6c3..9ad4d134 100644 --- a/doc/tableStructure.sql +++ b/doc/tableStructure.sql @@ -13,6 +13,7 @@ CREATE TABLE `users` ( `regid` int(5) NOT NULL DEFAULT '0', `locid` int(7) NOT NULL DEFAULT '0', `listme` int(1) NOT NULL DEFAULT '0', + `contactinfo` varchar(255) NOT NULL DEFAULT '', `admin` tinyint(1) NOT NULL DEFAULT '0', `language` varchar(5) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -78,6 +79,7 @@ CREATE TABLE `pingconfig` ( `domainid` int(11) NOT NULL, `type` enum('email', 'ssl', 'http', 'dns') NOT NULL, `info` varchar(255) NOT NULL, + `reping` enum('y','n') NOT NULL DEFAULT 'n', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -87,7 +89,7 @@ CREATE TABLE `domainPinglog` ( `when` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `configId` int(13) NOT NULL, `state` enum('open', 'success', 'failed') NOT NULL, - `challenge` varchar(16) NOT NULL, + `challenge` varchar(16), `result` varchar(255) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; @@ -213,20 +215,25 @@ 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', +# total points that have been entered `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', +# awarded and the "experience points" are calculated virtually +# Face to Face is default, TOPUP is for the remaining 30Points after two TTP +# TTP is default ttp assurance + `method` enum('Face to Face Meeting', 'TOPUP', 'TTP-Assisted') NOT NULL DEFAULT 'Face to Face Meeting', `location` varchar(255) NOT NULL DEFAULT '', `date` varchar(255) NOT NULL DEFAULT '', +# date when assurance was entered `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', +# date when assurance was deleted (or 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;