feat: 执行记录 增加索引

This commit is contained in:
taojinlong 2021-10-11 11:51:39 +08:00
parent 158b3a1e29
commit 7a9132e3c1

View File

@ -50,3 +50,7 @@ INSERT INTO `system_parameter` VALUES ('oidc.open', NULL, 'text', 9);
COMMIT;
ALTER TABLE `sys_user` ADD COLUMN `sub` varchar(255) COMMENT 'oidc用户ID' AFTER `from`;
CREATE INDEX dataset_table_task_log_index ON dataset_table_task_log (id,task_id,table_id);
CREATE INDEX dataset_table_task_index ON dataset_table_task (id);
CREATE INDEX dataset_table_index ON dataset_table (id);