diff options
author | friendica <info@friendica.com> | 2012-02-13 18:02:43 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-13 18:02:43 -0800 |
commit | c87aa8f9276652e28dd8c77babe1b4a27cee566c (patch) | |
tree | 4effb1da84cdeb7b40bb58c9395263aa9fd56c45 /database.sql | |
parent | 23f5abfa1fb40e5037fc4c6e2147bcc1ba2fa1d8 (diff) | |
download | volse-hubzilla-c87aa8f9276652e28dd8c77babe1b4a27cee566c.tar.gz volse-hubzilla-c87aa8f9276652e28dd8c77babe1b4a27cee566c.tar.bz2 volse-hubzilla-c87aa8f9276652e28dd8c77babe1b4a27cee566c.zip |
poll structures
Diffstat (limited to 'database.sql')
-rwxr-xr-x | database.sql | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/database.sql b/database.sql index 0b03149e9..32d7cf40b 100755 --- a/database.sql +++ b/database.sql @@ -781,3 +781,31 @@ INDEX ( `uid` ), INDEX ( `mid` ) ) ENGINE = MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `poll_result` ( +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`poll_id` INT NOT NULL , +`choice` INT NOT NULL , +INDEX ( `poll_id` ), +INDEX ( `choice` ) +) ENGINE = MyISAM DEFAULT CHARSET=utf8; + + +CREATE TABLE IF NOT EXISTS `poll` ( +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`uid` INT NOT NULL , +`q0` MEDIUMTEXT NOT NULL , +`q1` MEDIUMTEXT NOT NULL , +`q2` MEDIUMTEXT NOT NULL , +`q3` MEDIUMTEXT NOT NULL , +`q4` MEDIUMTEXT NOT NULL , +`q5` MEDIUMTEXT NOT NULL , +`q6` MEDIUMTEXT NOT NULL , +`q7` MEDIUMTEXT NOT NULL , +`q8` MEDIUMTEXT NOT NULL , +`q9` MEDIUMTEXT NOT NULL , +INDEX ( `uid` ) +) ENGINE = MyISAM DEFAULT CHARSET=utf8; + + + + |