Database Table: pollquestion2

From Dreamwidth Notes
Revision as of 15:45, 26 December 2011 by Exor674Bot (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is a clustered table.

Definition

CREATE TABLE pollquestion2 (
    journalid INT UNSIGNED NOT NULL,
    pollid INT UNSIGNED NOT NULL,
    pollqid TINYINT UNSIGNED NOT NULL,
    sortorder TINYINT UNSIGNED NOT NULL DEFAULT '0',
    TYPE ENUM('check','radio','drop','text','scale') NOT NULL,
    opts VARCHAR(255) DEFAULT NULL,
    qtext TEXT,
 
    PRIMARY KEY  (journalid,pollid,pollqid)
)

Relationships