Jump to content

Extension:SecurePoll/securepoll lists table

From mediawiki.org
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Stores the eligibility lists, override lists, and exclude lists that can be entered on the Voter Eligibility page of SecurePoll.

mysql> describe securepoll_lists;
+-----------+----------------+------+-----+---------+-------+
| Field     | Type           | Null | Key | Default | Extra |
+-----------+----------------+------+-----+---------+-------+
| li_name   | varbinary(255) | YES  | MUL | NULL    |       |
| li_member | int(11)        | NO   | MUL | NULL    |       |
+-----------+----------------+------+-----+---------+-------+

li_name

Stores the election number and the type of list. The eligibility list maps to "need-list", the override list maps to "include-list", and the exclude list maps to "exclude-list". Examples:

1/list/exclude-list
1/list/include-list
1/list/need-list

li_member

Stores the user_id of the voter on that list.