Lines 1041-1047
CREATE TABLE `background_jobs` (
Link Here
|
1041 |
`enqueued_on` datetime DEFAULT NULL, |
1041 |
`enqueued_on` datetime DEFAULT NULL, |
1042 |
`started_on` datetime DEFAULT NULL, |
1042 |
`started_on` datetime DEFAULT NULL, |
1043 |
`ended_on` datetime DEFAULT NULL, |
1043 |
`ended_on` datetime DEFAULT NULL, |
1044 |
PRIMARY KEY (`id`) |
1044 |
PRIMARY KEY (`id`), |
|
|
1045 |
KEY `borrowernumber` (`borrowernumber`), |
1046 |
KEY `status` (`status`) |
1045 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1047 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1046 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1048 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1047 |
|
1049 |
|
1048 |
- |
|
|