This is an automated email from the ASF dual-hosted git repository. lynwee pushed a commit to branch 10-cp in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 4a2c03390bc4c8fce0cf853c50c094c16ef4ec50 Author: d4x1 <[email protected]> AuthorDate: Tue Jul 9 15:38:12 2024 +0800 fix(jira): fix migration scripts --- .../20240709_add_tmp_account_id_to_issue_changelog_item.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/plugins/jira/models/migrationscripts/20240709_add_tmp_account_id_to_issue_changelog_item.go b/backend/plugins/jira/models/migrationscripts/20240709_add_tmp_account_id_to_issue_changelog_item.go index 594ec38f2..1f8fcf274 100644 --- a/backend/plugins/jira/models/migrationscripts/20240709_add_tmp_account_id_to_issue_changelog_item.go +++ b/backend/plugins/jira/models/migrationscripts/20240709_add_tmp_account_id_to_issue_changelog_item.go @@ -31,7 +31,7 @@ type jiraIssueChangelogItems20240709 struct { } func (jiraIssueChangelogItems20240709) TableName() string { - return "_tool_jira_issue_changelogs" + return "_tool_jira_issue_changelog_items" } type addTmpAccountIdToJiraIssueChangelogItem struct{} @@ -45,5 +45,5 @@ func (*addTmpAccountIdToJiraIssueChangelogItem) Version() uint64 { } func (*addTmpAccountIdToJiraIssueChangelogItem) Name() string { - return "add TmpFromAccountId and TmpToAccountId to _tool_jira_issue_changelogs" + return "add TmpFromAccountId and TmpToAccountId to _tool_jira_issue_changelog_items" }
