From: Tim Starling Date: Sun, 9 May 2004 04:10:01 +0000 (+0000) Subject: table definitions for board vote X-Git-Tag: 1.3.0beta1~117 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=361edda09ca6502e8a09dce8e2d1258bd159f4ef;p=lhc%2Fweb%2Fwiklou.git table definitions for board vote --- diff --git a/maintenance/boardvote.sql b/maintenance/boardvote.sql new file mode 100644 index 0000000000..a365c48932 --- /dev/null +++ b/maintenance/boardvote.sql @@ -0,0 +1,27 @@ +-- Board of Trustees vote + +CREATE TABLE log ( + log_id int(5) not null auto_increment, + log_user int(5) not null default 0, + log_user_text varchar(255) binary not null default '', + log_user_key varchar(255) binary not null default '', + log_wiki char(32) not null default '', + log_edits int(5) not null default 0, + log_days int(5) not null default 0, + log_record blob not null default '', + log_ip char(16) not null default '', + log_xff varchar(255) not null default '', + log_ua varchar(255) not null default '', + log_timestamp char(14) not null default '', + unique key log_id (log_id) +); + +CREATE TABLE vote ( + vote_key varchar(255) not null default '', + vote_record blob not null default '', + vote_contributing text not null default '', + vote_volunteer text not null default '', + unique key vote_key (vote_key) +); + +