Fix metadata name

This commit is contained in:
Lunny Xiao 2024-04-08 14:48:11 +08:00
parent 1c478e6e8b
commit 61087a2496
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 3 additions and 3 deletions

View File

@ -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"`
ProjectTitle string `json:"project_title"`
ProjectColumnID int64 `json:"project_column_id"`
ProjectColumnTitle string `json:"project_column_title"`
ProjectTitle string `json:"project_title"`
}
func AddCommentMetaDataColumn(x *xorm.Engine) error {