diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-08-23 12:51:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-23 12:51:55 +0800 |
commit | 3ed8c292c2923c676f8ceebbb4fe9b55b32b434c (patch) | |
tree | cf4e5b54baedbe9a870ac66eab15c734b2ae2e44 /internal/db/migrations/v14.go | |
parent | 13ae25b785bc2545c30a13f6e28f4a44d3287b98 (diff) |
migrations: remove old migrations before 0.12.0 (#6270)
Diffstat (limited to 'internal/db/migrations/v14.go')
-rw-r--r-- | internal/db/migrations/v14.go | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/internal/db/migrations/v14.go b/internal/db/migrations/v14.go deleted file mode 100644 index de8babed..00000000 --- a/internal/db/migrations/v14.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2016 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package migrations - -import ( - "fmt" - - "xorm.io/xorm" -) - -func setCommentUpdatedWithCreated(x *xorm.Engine) (err error) { - type Comment struct { - UpdatedUnix int64 - } - - if err = x.Sync2(new(Comment)); err != nil { - return fmt.Errorf("Sync2: %v", err) - } else if _, err = x.Exec("UPDATE comment SET updated_unix = created_unix"); err != nil { - return fmt.Errorf("set update_unix: %v", err) - } - return nil -} |