2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Changed varchars to text in respondent selection text

This commit is contained in:
azammitdcarf
2010-01-15 01:54:31 +00:00
parent d1b139d315
commit 12254c09ff

View File

@@ -458,11 +458,11 @@ CREATE TABLE `questionnaire` (
`restrict_work_shifts` tinyint(1) NOT NULL default '1',
`testing` tinyint(1) NOT NULL default '0' COMMENT 'Whether this questionnaire is just for testing',
`respondent_selection` tinyint(1) NOT NULL default '1',
`rs_intro` varchar(1024) NOT NULL,
`rs_project_intro` varchar(1024) NOT NULL,
`rs_project_end` varchar(1024) NOT NULL,
`rs_callback` varchar(1024) NOT NULL,
`rs_answeringmachine` varchar(1024) NOT NULL,
`rs_intro` text collate utf8_unicode_ci NOT NULL,
`rs_project_intro` text collate utf8_unicode_ci NOT NULL,
`rs_project_end` text collate utf8_unicode_ci NOT NULL,
`rs_callback` text collate utf8_unicode_ci NOT NULL,
`rs_answeringmachine` text collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`questionnaire_id`)
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;