mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 15:04:00 +01:00 
			
		
		
		
	Set MySQL rowtype to dynamic for new tables (#10833)
* Set mysql rowtype to dynamic for new tables * Update models.go
This commit is contained in:
		
							parent
							
								
									453f6e6e5a
								
							
						
					
					
						commit
						a3f90948d8
					
				@ -142,6 +142,9 @@ func getEngine() (*xorm.Engine, error) {
 | 
				
			|||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return nil, err
 | 
							return nil, err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						if setting.Database.Type == "mysql" {
 | 
				
			||||||
 | 
							engine.Dialect().SetParams(map[string]string{"rowFormat": "DYNAMIC"})
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	engine.SetSchema(setting.Database.Schema)
 | 
						engine.SetSchema(setting.Database.Schema)
 | 
				
			||||||
	return engine, nil
 | 
						return engine, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user