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.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/upgrading/4.1.0.txt b/upgrading/4.1.0.txt
index 78620304..c0bf5732 100644
--- a/upgrading/4.1.0.txt
+++ b/upgrading/4.1.0.txt
@@ -7,3 +7,11 @@ ALTER TABLE PackageComments
ADD COLUMN EditedUsersID INTEGER UNSIGNED NULL DEFAULT NULL,
ADD FOREIGN KEY (EditedUsersID) REFERENCES Users(ID) ON DELETE SET NULL;
----
+
+2. Add a field to store the ID of the last user who flagged a package
+out-of-date:
+
+----
+ALTER TABLE PackageBases
+ ADD COLUMN FlaggerUID BIGINT UNSIGNED NULL DEFAULT NULL;
+----