diff options
Diffstat (limited to 'data/tables.sql')
-rw-r--r-- | data/tables.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/data/tables.sql b/data/tables.sql index 7a9c5bd..d53945e 100644 --- a/data/tables.sql +++ b/data/tables.sql @@ -77,6 +77,17 @@ CREATE TABLE `sc_users` ( -- -------------------------------------------------------- +CREATE TABLE `sc_users_sslclientcerts` ( + `id` INT NOT NULL AUTO_INCREMENT , + `uId` INT NOT NULL , + `sslSerial` VARCHAR( 32 ) NOT NULL , + `sslClientIssuerDn` VARCHAR( 1024 ) 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` -- |