You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

v47.go 746B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package migrations
  5. import (
  6. "fmt"
  7. "xorm.io/xorm"
  8. )
  9. func addDeletedBranch(x *xorm.Engine) (err error) {
  10. // DeletedBranch contains the deleted branch information
  11. type DeletedBranch struct {
  12. ID int64 `xorm:"pk autoincr"`
  13. RepoID int64 `xorm:"UNIQUE(s) INDEX NOT NULL"`
  14. Name string `xorm:"UNIQUE(s) NOT NULL"`
  15. Commit string `xorm:"UNIQUE(s) NOT NULL"`
  16. DeletedByID int64 `xorm:"INDEX NOT NULL"`
  17. DeletedUnix int64 `xorm:"INDEX"`
  18. }
  19. if err = x.Sync2(new(DeletedBranch)); err != nil {
  20. return fmt.Errorf("Sync2: %v", err)
  21. }
  22. return nil
  23. }