Skip to content

Add issue comment when moving issues from one column to another of the project #29311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Aug 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix metadata name
  • Loading branch information
lunny committed May 28, 2024
commit 58b4698ad5bba55e4b61534fa9b62099340622ca
6 changes: 3 additions & 3 deletions models/migrations/v1_23/v300.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

// CommentMetaData stores metadata for a comment, these data will not be changed once inserted into database
type CommentMetaData struct {
ProjectColumnID int64 `json:"project_column_id"`
ProjectColumnName string `json:"project_column_name"`
ProjectName string `json:"project_name"`
ProjectColumnID int64 `json:"project_column_id"`
ProjectColumnTitle string `json:"project_column_title"`
ProjectTitle string `json:"project_title"`
}

func AddCommentMetaDataColumn(x *xorm.Engine) error {
Expand Down