diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-06-03 16:37:50 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-12-27 12:42:12 +0100 |
commit | 253e76d8cc718acef6bab802c76c4a70623b59cc (patch) | |
tree | df58aad0e2846690f12a23b56e1a5472602d6721 /upgrading | |
parent | 1af375828f7c4ef11e63e09e1070a9f77b679d71 (diff) | |
download | aurweb-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.txt | 5 |
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; +---- |