mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Added new outcome codes and sample variable type
This commit is contained in:
14
CHANGELOG
14
CHANGELOG
@@ -8,10 +8,22 @@ Database updates:
|
||||
ALTER TABLE `case` ADD `token` VARCHAR( 36 ) NOT NULL ;
|
||||
ALTER TABLE `case` ADD UNIQUE (`token`);
|
||||
|
||||
To allow for accessing existing cases in new system, need to assign a "token" for each case
|
||||
To allow for accessing existing cases in new system, need to assign a "token" for each case:
|
||||
|
||||
UPDATE `case` SET token = case_id;
|
||||
|
||||
New outcomes for email invitation and online self completion:
|
||||
|
||||
INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES
|
||||
(34, '1.1', 'Self completed online', 0, 4, 0, 1, 1, 1, 0, 'I'),
|
||||
(35, '2.36', 'Self completion email invitation sent', 10080, 1, 0, 1, 1, 1, 0, 'O');
|
||||
|
||||
New sample variable type (Email address):
|
||||
|
||||
INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES
|
||||
(8, 'Email address', '');
|
||||
|
||||
|
||||
queXS 1.6.1 - Changes since 1.6.0
|
||||
|
||||
New Feature: Include paradata/metadata in data output (number call attempts, number of answering machine messages and all sample variables)
|
||||
|
||||
Reference in New Issue
Block a user