Subversion Repositories VORC

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
208 - 1
## Table: general_survey_question
2
#
3
# +----------+------------------+------+-----+---------+----------------+
4
# | Field    | Type             | Null | Key | Default | Extra          |
5
# +----------+------------------+------+-----+---------+----------------+
6
# | qid      | int(10) unsigned | NO   | PRI | NULL    | auto_increment |
7
# | qorder   | int(10) unsigned | NO   |     | NULL    |                |
8
# | question | varchar(255)     | NO   |     | NULL    |                |
9
# | type     | varchar(45)      | NO   |     | NULL    |                |
10
# | required | tinyint(4)       | NO   |     | NULL    |                |
11
# | private  | tinyint(4)       | NO   |     | 0       |                |
12
# | added    | datetime         | NO   |     | NULL    |                |
13
# +----------+------------------+------+-----+---------+----------------+
14
 
15
CREATE TABLE `general_survey_question` (
16
  `qid` int(10) unsigned NOT NULL AUTO_INCREMENT,
17
  `qorder` int(10) unsigned NOT NULL,
18
  `question` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
19
  `type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
20
  `required` tinyint(4) NOT NULL,
21
  `private` tinyint(4) NOT NULL DEFAULT '0',
22
  `added` datetime NOT NULL,
23
  PRIMARY KEY (`qid`),
24
  UNIQUE KEY `qid_UNIQUE` (`qid`)
25
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci