2022-05-07 19:05:52 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-05-07 19:05:52 +02:00
|
|
|
|
2025-06-27 07:59:55 +02:00
|
|
|
package v1_17
|
2022-05-07 19:05:52 +02:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
|
)
|
|
|
|
|
|
2022-11-02 16:54:36 +08:00
|
|
|
func AddAutoMergeTable(x *xorm.Engine) error {
|
2022-05-07 19:05:52 +02:00
|
|
|
type MergeStyle string
|
|
|
|
|
type PullAutoMerge struct {
|
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
|
PullID int64 `xorm:"UNIQUE"`
|
|
|
|
|
DoerID int64 `xorm:"NOT NULL"`
|
|
|
|
|
MergeStyle MergeStyle `xorm:"varchar(30)"`
|
|
|
|
|
Message string `xorm:"LONGTEXT"`
|
|
|
|
|
CreatedUnix int64 `xorm:"created"`
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-13 21:17:21 +02:00
|
|
|
return x.Sync(&PullAutoMerge{})
|
2022-05-07 19:05:52 +02:00
|
|
|
}
|