Lines 3619-3625
CREATE TABLE `message_queue` (
Link Here
|
3619 |
`from_address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3619 |
`from_address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3620 |
`reply_address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3620 |
`reply_address` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3621 |
`content_type` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3621 |
`content_type` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3622 |
`delivery_note` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3622 |
`failure_code` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
3623 |
PRIMARY KEY (`message_id`), |
3623 |
PRIMARY KEY (`message_id`), |
3624 |
KEY `borrowernumber` (`borrowernumber`), |
3624 |
KEY `borrowernumber` (`borrowernumber`), |
3625 |
KEY `message_transport_type` (`message_transport_type`), |
3625 |
KEY `message_transport_type` (`message_transport_type`), |
3626 |
- |
|
|