mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	models/migrations: fix little logic error
This commit is contained in:
		@@ -65,7 +65,7 @@ func Migrate(x *xorm.Engine) error {
 | 
				
			|||||||
		return fmt.Errorf("get: %v", err)
 | 
							return fmt.Errorf("get: %v", err)
 | 
				
			||||||
	} else if !has {
 | 
						} else if !has {
 | 
				
			||||||
		// If the user table does not exist it is a fresh installation and we
 | 
							// If the user table does not exist it is a fresh installation and we
 | 
				
			||||||
		// can skip all migrations
 | 
							// can skip all migrations.
 | 
				
			||||||
		needsMigration, err := x.IsTableExist("user")
 | 
							needsMigration, err := x.IsTableExist("user")
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return err
 | 
								return err
 | 
				
			||||||
@@ -76,7 +76,7 @@ func Migrate(x *xorm.Engine) error {
 | 
				
			|||||||
				return err
 | 
									return err
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			// If the user table is empty it is a fresh installation and we can
 | 
								// If the user table is empty it is a fresh installation and we can
 | 
				
			||||||
			// skip all migrations
 | 
								// skip all migrations.
 | 
				
			||||||
			needsMigration = !isEmpty
 | 
								needsMigration = !isEmpty
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if !needsMigration {
 | 
							if !needsMigration {
 | 
				
			||||||
@@ -102,6 +102,13 @@ func Migrate(x *xorm.Engine) error {
 | 
				
			|||||||
	return nil
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func sessionRelease(sess *xorm.Session) {
 | 
				
			||||||
 | 
						if !sess.IsCommitedOrRollbacked {
 | 
				
			||||||
 | 
							sess.Rollback()
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						sess.Close()
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func accessToCollaboration(x *xorm.Engine) error {
 | 
					func accessToCollaboration(x *xorm.Engine) error {
 | 
				
			||||||
	type Collaboration struct {
 | 
						type Collaboration struct {
 | 
				
			||||||
		ID      int64 `xorm:"pk autoincr"`
 | 
							ID      int64 `xorm:"pk autoincr"`
 | 
				
			||||||
@@ -118,12 +125,7 @@ func accessToCollaboration(x *xorm.Engine) error {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sess := x.NewSession()
 | 
						sess := x.NewSession()
 | 
				
			||||||
	defer func() {
 | 
						defer sessionRelease(sess)
 | 
				
			||||||
		if sess.IsCommitedOrRollbacked {
 | 
					 | 
				
			||||||
			sess.Rollback()
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		sess.Close()
 | 
					 | 
				
			||||||
	}()
 | 
					 | 
				
			||||||
	if err = sess.Begin(); err != nil {
 | 
						if err = sess.Begin(); err != nil {
 | 
				
			||||||
		return err
 | 
							return err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user