Commit 21452074 authored by Liu lu's avatar Liu lu

索引补全

parent b65f3e88
...@@ -34,6 +34,7 @@ class LogTraceQueue extends RedisQueueBatchHandler ...@@ -34,6 +34,7 @@ class LogTraceQueue extends RedisQueueBatchHandler
`process_info` mediumtext NOT NULL COMMENT '执行过程中输出,使用LogTraceHandler::recordProcess()记录', `process_info` mediumtext NOT NULL COMMENT '执行过程中输出,使用LogTraceHandler::recordProcess()记录',
`created_at` datetime NOT NULL COMMENT '日志记录开始时间', `created_at` datetime NOT NULL COMMENT '日志记录开始时间',
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY `created_at` (`created_at`),
UNIQUE KEY `request_id` (`request_id`) UNIQUE KEY `request_id` (`request_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5950 DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB AUTO_INCREMENT=5950 DEFAULT CHARSET=utf8mb4;
"); ");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment