Merge pull request #1079 from sfossen/patch-4

defaults for jobs table
pull/1092/head
Andras Iklody 2016-04-14 08:50:16 +02:00
commit 2b305c9ea1
1 changed files with 2 additions and 2 deletions

View File

@ -194,8 +194,8 @@ CREATE TABLE IF NOT EXISTS `jobs` (
`retries` int(11) NOT NULL DEFAULT '0',
`message` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`progress` int(11) NOT NULL DEFAULT '0',
`org_id` int(11) NOT NULL,
`process_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`org_id` int(11) NOT NULL DEFAULT '0',
`process_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`date_created` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`id`)