summaryrefslogtreecommitdiffstats
path: root/upgrading/4.3.0.txt
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2016-06-02 08:51:29 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2016-06-08 22:23:57 +0200
commite3670ef1888a3f030452b229e8d48b83bb83b240 (patch)
treea781f46adae963a5b19112e2928e87088394781b /upgrading/4.3.0.txt
parent9fec03d65598cf13d0efda6b9361d7b9e0ee7e36 (diff)
downloadaurweb-e3670ef1888a3f030452b229e8d48b83bb83b240.tar.xz
Add a homepage field to accounts
Allow users to add a link to their homepage to their profile. Implements FS#22774. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'upgrading/4.3.0.txt')
-rw-r--r--upgrading/4.3.0.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/upgrading/4.3.0.txt b/upgrading/4.3.0.txt
index f7f3e08..6c1753d 100644
--- a/upgrading/4.3.0.txt
+++ b/upgrading/4.3.0.txt
@@ -15,3 +15,9 @@ ALTER TABLE Users MODIFY LastLoginIPAddress VARCHAR(45) NULL DEFAULT NULL;
----
ALTER TABLE OfficialProviders ADD COLUMN Repo VARCHAR(64) NOT NULL;
----
+
+4. Add a column to store users' homepages:
+
+----
+ALTER TABLE Users ADD COLUMN Homepage TEXT NULL DEFAULT NULL;
+----