Lines 987-993
CREATE TABLE `background_jobs` (
Link Here
|
987 |
`enqueued_on` datetime DEFAULT NULL, |
987 |
`enqueued_on` datetime DEFAULT NULL, |
988 |
`started_on` datetime DEFAULT NULL, |
988 |
`started_on` datetime DEFAULT NULL, |
989 |
`ended_on` datetime DEFAULT NULL, |
989 |
`ended_on` datetime DEFAULT NULL, |
990 |
PRIMARY KEY (`id`) |
990 |
PRIMARY KEY (`id`), |
|
|
991 |
KEY `borrowernumber` (`borrowernumber`), |
992 |
KEY `queue` (`queue`), |
993 |
KEY `status` (`status`) |
991 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
994 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
992 |
/*!40101 SET character_set_client = @saved_cs_client */; |
995 |
/*!40101 SET character_set_client = @saved_cs_client */; |
993 |
|
996 |
|
994 |
- |
|
|