mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
15 lines
352 B
Go
15 lines
352 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
func AddExternalURLColumnToAttachmentTable(x *xorm.Engine) error {
|
||
|
type Attachment struct {
|
||
|
ID int64 `xorm:"pk autoincr"`
|
||
|
ExternalURL string
|
||
|
}
|
||
|
return x.Sync(new(Attachment))
|
||
|
}
|