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.

v78.go 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // Copyright 2019 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. "code.gitea.io/gitea/models"
  8. "code.gitea.io/gitea/modules/log"
  9. "github.com/go-xorm/core"
  10. "github.com/go-xorm/xorm"
  11. )
  12. func renameRepoIsBareToIsEmpty(x *xorm.Engine) error {
  13. type Repository struct {
  14. ID int64 `xorm:"pk autoincr"`
  15. IsBare bool
  16. IsEmpty bool `xorm:"INDEX"`
  17. }
  18. // First remove the index
  19. sess := x.NewSession()
  20. defer sess.Close()
  21. if err := sess.Begin(); err != nil {
  22. return err
  23. }
  24. var err error
  25. if models.DbCfg.Type == core.POSTGRES || models.DbCfg.Type == core.SQLITE {
  26. _, err = sess.Exec("DROP INDEX IF EXISTS IDX_repository_is_bare")
  27. } else if models.DbCfg.Type == core.MSSQL {
  28. _, err = sess.Exec(`DECLARE @ConstraintName VARCHAR(256)
  29. DECLARE @SQL NVARCHAR(256)
  30. SELECT @ConstraintName = obj.name FROM sys.columns col LEFT OUTER JOIN sys.objects obj ON obj.object_id = col.default_object_id AND obj.type = 'D' WHERE col.object_id = OBJECT_ID('repository') AND obj.name IS NOT NULL AND col.name = 'is_bare'
  31. SET @SQL = N'ALTER TABLE [repository] DROP CONSTRAINT [' + @ConstraintName + N']'
  32. EXEC sp_executesql @SQL`)
  33. if err != nil {
  34. return err
  35. }
  36. } else if models.DbCfg.Type == core.MYSQL {
  37. indexes, err := sess.QueryString(`SHOW INDEX FROM repository WHERE KEY_NAME = 'IDX_repository_is_bare'`)
  38. if err != nil {
  39. return err
  40. }
  41. if len(indexes) >= 1 {
  42. _, err = sess.Exec("DROP INDEX IDX_repository_is_bare ON repository")
  43. if err != nil {
  44. return fmt.Errorf("Drop index failed: %v", err)
  45. }
  46. }
  47. } else {
  48. _, err = sess.Exec("DROP INDEX IDX_repository_is_bare ON repository")
  49. }
  50. if err != nil {
  51. return fmt.Errorf("Drop index failed: %v", err)
  52. }
  53. if err = sess.Commit(); err != nil {
  54. return err
  55. }
  56. if err := sess.Begin(); err != nil {
  57. return err
  58. }
  59. if err := sess.Sync2(new(Repository)); err != nil {
  60. return err
  61. }
  62. if _, err := sess.Exec("UPDATE repository SET is_empty = is_bare;"); err != nil {
  63. return err
  64. }
  65. if models.DbCfg.Type != core.SQLITE {
  66. _, err = sess.Exec("ALTER TABLE repository DROP COLUMN is_bare")
  67. if err != nil {
  68. return fmt.Errorf("Drop column failed: %v", err)
  69. }
  70. }
  71. if err = sess.Commit(); err != nil {
  72. return err
  73. }
  74. if models.DbCfg.Type == core.SQLITE {
  75. log.Warn("TABLE repository's COLUMN is_bare should be DROP but sqlite is not supported, you could manually do that.")
  76. }
  77. return nil
  78. }