Lines 984-989
CREATE TABLE `background_jobs` (
Link Here
|
984 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
984 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
985 |
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default' COMMENT 'Name of the queue the job is sent to', |
985 |
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default' COMMENT 'Name of the queue the job is sent to', |
986 |
`data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
986 |
`data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
|
|
987 |
`context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
987 |
`enqueued_on` datetime DEFAULT NULL, |
988 |
`enqueued_on` datetime DEFAULT NULL, |
988 |
`started_on` datetime DEFAULT NULL, |
989 |
`started_on` datetime DEFAULT NULL, |
989 |
`ended_on` datetime DEFAULT NULL, |
990 |
`ended_on` datetime DEFAULT NULL, |
990 |
- |
|
|