diff options
author | Mark Pemberton <mpemberton5@gmail.com> | 2011-05-14 23:08:46 -0400 |
---|---|---|
committer | Mark Pemberton <mpemberton5@gmail.com> | 2011-05-14 23:08:46 -0400 |
commit | 16791766dee4f9c03700b7c817063071e4d0ed33 (patch) | |
tree | 0040112a76dd9239be3b2c4b63343e023813b903 /data/schema | |
parent | 6ed90e647a0a513def828ec66f17df2b724c518e (diff) | |
download | semanticscuttle-16791766dee4f9c03700b7c817063071e4d0ed33.tar.gz semanticscuttle-16791766dee4f9c03700b7c817063071e4d0ed33.tar.bz2 |
Fixed SQL structure for PrivateKey
Diffstat (limited to 'data/schema')
-rw-r--r-- | data/schema/6.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/schema/6.sql b/data/schema/6.sql index e4acd53..cf9dd37 100644 --- a/data/schema/6.sql +++ b/data/schema/6.sql @@ -15,5 +15,5 @@ CREATE TABLE `sc_users_sslclientcerts` ( ) CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_users` ADD `privateKey` VARCHAR(33) NULL; -CREATE INDEX `privateKey` ON `sc_users` (`privateKey`); +CREATE UNIQUE INDEX `privateKey` ON `sc_users` (`privateKey`); |