Last active
October 25, 2017 15:56
-
-
Save gustavonecore/a19f047fc25afa8c9d6c05a937c88ed4 to your computer and use it in GitHub Desktop.
Codeigniter job table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `jobs` ( | |
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT, | |
`name` VARCHAR(45) NOT NULL, | |
`payload` TEXT NULL COMMENT 'JSON payload', | |
`response` TEXT NULL, | |
`status` ENUM('running', 'queued', 'done') NOT NULL DEFAULT 'queued', | |
`run_time` DOUBLE NULL, | |
`created_dt` DATETIME NOT NULL, | |
PRIMARY KEY (`id`)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment