Lines 976-981
CREATE TABLE `background_jobs` (
Link Here
|
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 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
978 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
|
|
979 |
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default' COMMENT 'Name of the queue the job is sent to', |
979 |
`data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
980 |
`data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
980 |
`enqueued_on` datetime DEFAULT NULL, |
981 |
`enqueued_on` datetime DEFAULT NULL, |
981 |
`started_on` datetime DEFAULT NULL, |
982 |
`started_on` datetime DEFAULT NULL, |
982 |
- |
|
|