Lines 976-982
DROP TABLE IF EXISTS `background_jobs`;
Link Here
|
976 |
/*!40101 SET character_set_client = utf8 */; |
976 |
/*!40101 SET character_set_client = utf8 */; |
977 |
CREATE TABLE `background_jobs` ( |
977 |
CREATE TABLE `background_jobs` ( |
978 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
978 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
979 |
`status` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
979 |
`status` ENUM('new','started','finished','cancelled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new' COMMENT 'Job status', |
980 |
`progress` int(11) DEFAULT NULL, |
980 |
`progress` int(11) DEFAULT NULL, |
981 |
`size` int(11) DEFAULT NULL, |
981 |
`size` int(11) DEFAULT NULL, |
982 |
`borrowernumber` int(11) DEFAULT NULL, |
982 |
`borrowernumber` int(11) DEFAULT NULL, |
983 |
- |
|
|