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

Added chat details to operator list and editing

Updated database schema
This commit is contained in:
Adam Zammit
2013-07-17 12:33:04 +10:00
parent 2404fe1046
commit 6625668195
3 changed files with 20 additions and 4 deletions

View File

@@ -1177,6 +1177,9 @@ CREATE TABLE `operator` (
`voip` tinyint(1) NOT NULL default '1',
`voip_status` tinyint(1) NOT NULL default '0',
`next_case_id` bigint(20) default NULL,
`chat_enable` tinyint(1) default '0',
`chat_user` varchar(255) collate utf8_unicode_ci default NULL,
`chat_password` varchar(255) collate utf8_unicode_ci default NULL,
PRIMARY KEY (`operator_id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `extension` (`extension`)