summaryrefslogtreecommitdiffstats
path: root/upgrading/4.1.0.txt
diff options
context:
space:
mode:
Diffstat (limited to 'upgrading/4.1.0.txt')
-rw-r--r--upgrading/4.1.0.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/upgrading/4.1.0.txt b/upgrading/4.1.0.txt
index 439562f7..26f9f65e 100644
--- a/upgrading/4.1.0.txt
+++ b/upgrading/4.1.0.txt
@@ -17,3 +17,10 @@ ALTER TABLE PackageBases
ADD COLUMN FlaggerComment VARCHAR(255) NOT NULL,
ADD FOREIGN KEY (FlaggerUID) REFERENCES Users(ID) ON DELETE SET NULL;
----
+
+3. Add field to store the state of a user's email address:
+
+----
+ALTER TABLE Users
+ ADD COLUMN HideEmail TINYINT UNSIGNED NOT NULL DEFAULT 0;
+----