fix:environment_session表 索引设置错误

This commit is contained in:
zhangshuai
2024-09-04 11:01:53 +08:00
parent fec4beed2d
commit f4b22ff416

View File

@@ -514,7 +514,7 @@ CREATE TABLE `environment_session` (
`workspace_id` varchar(64) NOT NULL DEFAULT '' COMMENT '工作空间ID',
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_status` (`status`) USING BTREE,
KEY `idx_device_id` (`device_id`) USING BTREE,
KEY `idx_env_id` (`env_id`) USING BTREE,
KEY `idx_user_id` (`user_id`) USING BTREE,
KEY `idx_job_id` (`job_id`) USING BTREE,
KEY `idx_workspace_id` (`workspace_id`) USING BTREE