Made strong/em handling more forgiving against unbalanced ticks
[mediawiki.git] / maintenance / boardvote.sql
bloba365c4893291f9caeecfa578bc51657547f0b6fd
1 -- Board of Trustees vote
3 CREATE TABLE log (
4         log_id int(5) not null auto_increment,
5         log_user int(5) not null default 0,
6         log_user_text varchar(255) binary not null default '',
7         log_user_key varchar(255) binary not null default '',
8         log_wiki char(32) not null default '',
9         log_edits int(5) not null default 0,
10         log_days int(5) not null default 0,
11         log_record blob not null default '',
12         log_ip char(16) not null default '',
13         log_xff varchar(255) not null default '',
14         log_ua varchar(255) not null default '',
15         log_timestamp char(14) not null default '',
16         unique key log_id (log_id)
19 CREATE TABLE vote (
20         vote_key varchar(255) not null default '',
21         vote_record blob not null default '',
22         vote_contributing text not null default '',
23         vote_volunteer text not null default '',
24         unique key vote_key (vote_key)