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