diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2007-12-30 08:56:33 +0900 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-20 00:21:19 -0600 |
commit | 5f4afcc8cb6dcc5dcbe4d5161fad5372eb5f6435 (patch) | |
tree | 0dda6299fba24cad2778b793eab2cb5a461aea76 /support | |
parent | a8e574ef2897e9ca709c2cfa5ff78d2f69464092 (diff) | |
download | aurweb-5f4afcc8cb6dcc5dcbe4d5161fad5372eb5f6435.tar.xz |
Add support for variable length votes in voting application
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/schema/aur-schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index d48917c..c5790a8 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -217,6 +217,7 @@ CREATE TABLE IF NOT EXISTS TU_VoteInfo ( Agenda text collate latin1_general_ci NOT NULL, User char(32) collate latin1_general_ci NOT NULL, Submitted bigint(20) unsigned NOT NULL, + End bigint(20) unsigned NOT NULL, SubmitterID int(10) unsigned NOT NULL, Yes tinyint(3) unsigned NOT NULL default '0', No tinyint(3) unsigned NOT NULL default '0', |