|
Lines 944-950
CREATE TABLE `background_jobs` (
Link Here
|
| 944 |
`size` int(11) DEFAULT NULL, |
944 |
`size` int(11) DEFAULT NULL, |
| 945 |
`borrowernumber` int(11) DEFAULT NULL, |
945 |
`borrowernumber` int(11) DEFAULT NULL, |
| 946 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
946 |
`type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| 947 |
`data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
947 |
`data` LONGTEXT COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| 948 |
`enqueued_on` datetime DEFAULT NULL, |
948 |
`enqueued_on` datetime DEFAULT NULL, |
| 949 |
`started_on` datetime DEFAULT NULL, |
949 |
`started_on` datetime DEFAULT NULL, |
| 950 |
`ended_on` datetime DEFAULT NULL, |
950 |
`ended_on` datetime DEFAULT NULL, |
| 951 |
- |
|
|