git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
14 lines
493 B
SQL
14 lines
493 B
SQL
--
|
|
-- Table structure for table `process_queue`
|
|
--
|
|
|
|
CREATE table `process_queue` (
|
|
`document_id` int(11) NOT NULL,
|
|
`date_added` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
`date_processed` timestamp,
|
|
`status_msg` mediumtext,
|
|
`process_type` varchar(20),
|
|
PRIMARY KEY (`document_id`),
|
|
CONSTRAINT `process_queue_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|