openid identifier table

This commit is contained in:
Christian Weiske 2012-01-22 01:21:16 +01:00
parent 16c08eb3b6
commit 14640ed8a5

View File

@ -79,6 +79,15 @@ CREATE TABLE `sc_users` (
-- -------------------------------------------------------- -- --------------------------------------------------------
CREATE TABLE `sc_users_openids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uId` int(11) NOT NULL,
`url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) CHARACTER SET utf8 COLLATE utf8_general_ci;
-- --------------------------------------------------------
CREATE TABLE `sc_users_sslclientcerts` ( CREATE TABLE `sc_users_sslclientcerts` (
`id` INT NOT NULL AUTO_INCREMENT , `id` INT NOT NULL AUTO_INCREMENT ,
`uId` INT NOT NULL , `uId` INT NOT NULL ,