aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Pemberton <mpemberton5@gmail.com>2011-05-14 23:08:46 -0400
committerMark Pemberton <mpemberton5@gmail.com>2011-05-14 23:08:46 -0400
commit16791766dee4f9c03700b7c817063071e4d0ed33 (patch)
tree0040112a76dd9239be3b2c4b63343e023813b903 /doc
parent6ed90e647a0a513def828ec66f17df2b724c518e (diff)
downloadsemanticscuttle-16791766dee4f9c03700b7c817063071e4d0ed33.tar.gz
semanticscuttle-16791766dee4f9c03700b7c817063071e4d0ed33.tar.bz2
Fixed SQL structure for PrivateKey
Diffstat (limited to 'doc')
-rw-r--r--doc/UPGRADE.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/UPGRADE.txt b/doc/UPGRADE.txt
index fe8624a..53ccbf4 100644
--- a/doc/UPGRADE.txt
+++ b/doc/UPGRADE.txt
@@ -13,7 +13,7 @@ Database updates: Apply data/schema/6.sql or do the following:
INSERT INTO `sc_version` (`schema_version`) VALUES ('6');
ALTER TABLE `sc_users` ADD `privateKey` VARCHAR(33) NULL;
- CREATE INDEX `privateKey` ON `sc_users` (`privateKey`);
+ CREATE UNIQUE INDEX `privateKey` ON `sc_users` (`privateKey`);
From version 0.96 to 0.97