summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2013-08-04 15:08:05 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2013-08-22 17:47:51 +0200
commit9ff082be25d444535ce99410363e63f6cca5f30d (patch)
tree8a0ba4c58dadad8ffe86888da7e6156739f098f5 /UPGRADING
parent6844f6c1d2965cd5ec2ad72c887baeed9517c246 (diff)
downloadaur-9ff082be25d444535ce99410363e63f6cca5f30d.tar.gz
aur-9ff082be25d444535ce99410363e63f6cca5f30d.tar.xz
Store the number of TUs when starting a vote
This will be used for automated calculation of vote participation later. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING7
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index d8527e34..c5846473 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -10,6 +10,13 @@ From 2.2.0 to 2.3.0
ALTER TABLE Users ADD COLUMN InactivityTS BIGINT NOT NULL DEFAULT 0;
----
+2. Add a field to store the total number of TUs to the "TU_VoteInfo" table:
+
+----
+ALTER TABLE TU_VoteInfo
+ ADD COLUMN ActiveTUs tinyint(3) unsigned NOT NULL default '0';
+----
+
From 2.1.0 to 2.2.0
-------------------