From 9ff082be25d444535ce99410363e63f6cca5f30d Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sun, 4 Aug 2013 15:08:05 +0200 Subject: 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 --- support/schema/aur-schema.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'support/schema/aur-schema.sql') diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index 68db93f4..51f9601d 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -202,6 +202,7 @@ CREATE TABLE IF NOT EXISTS TU_VoteInfo ( Yes tinyint(3) unsigned NOT NULL default '0', No tinyint(3) unsigned NOT NULL default '0', Abstain tinyint(3) unsigned NOT NULL default '0', + ActiveTUs tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (ID), FOREIGN KEY (SubmitterID) REFERENCES Users(ID) ON DELETE CASCADE ) ENGINE = InnoDB; -- cgit v1.2.3-24-g4f1b