Skip to content

Commit

Permalink
feat 增加注释
Browse files Browse the repository at this point in the history
  • Loading branch information
wyt1215819315 committed Jan 5, 2024
1 parent 0a09e90 commit ff52bb7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/sqls/v3.0.9_update.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# 将task_id列改名为log_id列,并修改索引
ALTER TABLE `log_push_result`
CHANGE COLUMN `task_id` `log_id` bigint NULL DEFAULT NULL COMMENT '日志id' AFTER `user_id`,
DROP INDEX `IDX_LOG_RES_TASKID`,
ADD INDEX `IDX_LOG_RES_LOGID` (`log_id`) USING BTREE;

# 增加webhook_id列和索引
ALTER TABLE `log_push_result`
ADD COLUMN `webhook_id` bigint NULL COMMENT 'webhook Id' AFTER `log_id`,
ADD INDEX `IDX_LOG_RES_WEBHOOKID`(`webhook_id`);

0 comments on commit ff52bb7

Please sign in to comment.