summaryrefslogtreecommitdiffstats
path: root/upgrading
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-06-03 16:37:50 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-12-27 12:42:12 +0100
commit253e76d8cc718acef6bab802c76c4a70623b59cc (patch)
treedf58aad0e2846690f12a23b56e1a5472602d6721 /upgrading
parent1af375828f7c4ef11e63e09e1070a9f77b679d71 (diff)
downloadaurweb-253e76d8cc718acef6bab802c76c4a70623b59cc.tar.xz
Add support for adding SSH public keys to profiles
Users can now add an SSH public key on the account edit page. This will later be used to authenticate users via SSH. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'upgrading')
-rw-r--r--upgrading/4.0.0.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/upgrading/4.0.0.txt b/upgrading/4.0.0.txt
new file mode 100644
index 0000000..543fbac
--- /dev/null
+++ b/upgrading/4.0.0.txt
@@ -0,0 +1,5 @@
+1. Add a field for the SSH public key to the Users table:
+
+----
+ALTER TABLE Users ADD COLUMN SSHPubKey VARCHAR(4096) NULL DEFAULT NULL;
+----