1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

new module creation

This commit is contained in:
mcfly
2006-12-02 04:36:16 +00:00
commit e149b35fcc
2196 changed files with 182987 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
CREATE TABLE polls (
poll_id int(10) unsigned NOT NULL auto_increment,
poll_datestamp int(10) unsigned NOT NULL default '0',
poll_start_datestamp int(10) unsigned NOT NULL default '0',
poll_end_datestamp int(10) unsigned NOT NULL default '0',
poll_admin_id int(10) unsigned NOT NULL default '0',
poll_title varchar(250) NOT NULL default '',
poll_options text NOT NULL,
poll_votes text NOT NULL,
poll_ip text NOT NULL,
poll_type tinyint(1) unsigned NOT NULL default '0',
poll_comment tinyint(1) unsigned NOT NULL default '1',
poll_allow_multiple tinyint(1) unsigned NOT NULL default '0',
poll_result_type tinyint(2) unsigned NOT NULL default '0',
poll_vote_userclass tinyint(3) unsigned NOT NULL default '0',
poll_storage_method tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (poll_id)
) TYPE=MyISAM;