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

Added VoIP watch from browser (executes background PHP file process.php)

This commit is contained in:
azammitdcarf
2008-12-01 23:42:50 +00:00
parent bf03b51bca
commit 30557ffadf
8 changed files with 449 additions and 2 deletions

View File

@@ -429,6 +429,21 @@ INSERT INTO `outcome_type` VALUES(5, 'Appointments');
-- --------------------------------------------------------
--
-- Table structure for table `process`
--
CREATE TABLE `process` (
`process_id` bigint(20) NOT NULL auto_increment,
`start` datetime NOT NULL,
`stop` datetime default NULL,
`kill` tinyint(1) NOT NULL default '0',
`data` longtext collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`process_id`)
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `questionnaire`
--