diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2011-05-04 17:08:25 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-04 17:08:25 +0200 |
| commit | 4e63a9a6793583c7f7f4959724be2653ddc85f49 (patch) | |
| tree | 2f6ee12531276bd6ed47909325df3238969fb75c /data/tables.sql | |
| parent | dda05f5cc7e1d984564e5154f6ceda762c2224a3 (diff) | |
| download | semanticscuttle-4e63a9a6793583c7f7f4959724be2653ddc85f49.tar.gz semanticscuttle-4e63a9a6793583c7f7f4959724be2653ddc85f49.tar.bz2 | |
part of request #3163623: add support to login via ssl client certificate. web interface to register certificates is still missing
Diffstat (limited to 'data/tables.sql')
| -rw-r--r-- | data/tables.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/tables.sql b/data/tables.sql index 7a9c5bd..af0c81b 100644 --- a/data/tables.sql +++ b/data/tables.sql @@ -77,6 +77,16 @@ CREATE TABLE `sc_users` ( -- -------------------------------------------------------- +CREATE TABLE `sc_users_sslclientcerts` ( + `id` INT NOT NULL AUTO_INCREMENT , + `uId` INT NOT NULL , + `sslSerial` VARCHAR( 32 ) NOT NULL , + `sslName` VARCHAR( 64 ) NOT NULL , + `sslEmail` VARCHAR( 64 ) NOT NULL , + PRIMARY KEY ( `id` ) , + UNIQUE (`id`) +) CHARACTER SET utf8 COLLATE utf8_general_ci; + -- -- Table structure for table `sc_watched` -- |
