diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-08-09 09:29:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 01:29:02 +0000 |
commit | 791d7fc76aa41370860126e861cf14d98efe710e (patch) | |
tree | 066bde9247eaa6b91878c818901c378b65f5ecb1 /models/migrations/migrations.go | |
parent | aa1055fe16e2a11b4ab9503854be96e776231d93 (diff) | |
download | gitea-791d7fc76aa41370860126e861cf14d98efe710e.tar.gz gitea-791d7fc76aa41370860126e861cf14d98efe710e.zip |
Add issue comment when moving issues from one column to another of the project (#29311)
Fix #27278
Replace #27816
This PR adds a meta-comment for an issue when dragging an issue from one
column to another of a project.
<img width="600" alt="image"
src="https://github.com/go-gitea/gitea/assets/81045/5fc1d954-430e-4db0-aaee-a00006fa91f5">
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: yp05327 <576951401@qq.com>
Diffstat (limited to 'models/migrations/migrations.go')
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index a57b4da031..a3264160e5 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -597,6 +597,8 @@ var migrations = []Migration{ NewMigration("Add skip_secondary_authorization option to oauth2 application table", v1_23.AddSkipSecondaryAuthColumnToOAuth2ApplicationTable), // v302 -> v303 NewMigration("Add index to action_task stopped log_expired", v1_23.AddIndexToActionTaskStoppedLogExpired), + // v303 -> v304 + NewMigration("Add metadata column for comment table", v1_23.AddCommentMetaDataColumn), } // GetCurrentDBVersion returns the current db version |