mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-01 11:49:20 +02:00
7 lines
206 B
SQL
7 lines
206 B
SQL
CREATE TABLE `z_polls_answers` (
|
|
`poll_id` int(11) NOT NULL,
|
|
`answer_id` int(11) NOT NULL,
|
|
`answer` varchar(255) NOT NULL,
|
|
`votes` int(11) NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
|