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

Added case status and assignment feature which lists cases when they are available and allows the assignment to operators (requires database change)

This commit is contained in:
Adam Zammit
2013-07-04 14:54:12 +10:00
parent 0b22c5206d
commit ffcc9c3b4e
4 changed files with 285 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
CREATE TABLE IF NOT EXISTS `case_queue` (
`case_queue_id` bigint(20) NOT NULL AUTO_INCREMENT,
`case_id` bigint(20) NOT NULL,
`operator_id` bigint(20) NOT NULL,
`sortorder` int(11) NOT NULL,
PRIMARY KEY (`case_queue_id`),
UNIQUE KEY `case_id` (`case_id`),
KEY `operator_id` (`operator_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE IF NOT EXISTS `sample_import_var_restrict` (
`sample_import_id` bigint(20) NOT NULL,
`var` char(128) collate utf8_unicode_ci NOT NULL,