mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Added process_log table to database
Log process data to a separate table for speed and better display (don't have to do too many updates) Updated VoIP watching process to more gracefully handle socket timeouts/errors
This commit is contained in:
@@ -453,6 +453,15 @@ CREATE TABLE `process` (
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
CREATE TABLE `process_log` (
|
||||
`process_log_id` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`process_id` BIGINT NOT NULL ,
|
||||
`datetime` DATETIME NOT NULL ,
|
||||
`data` TEXT NOT NULL ,
|
||||
INDEX ( `process_id` )
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
|
||||
--
|
||||
-- Table structure for table `questionnaire`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user