mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Sync() will act on the given struct and the ID field should be exactly as it is in the Gitea migration when a Gitea table is modified.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package v1_22 //nolint
 | |
| 
 | |
| import (
 | |
| 	"xorm.io/xorm"
 | |
| )
 | |
| 
 | |
| func AddUserRepoUnitHintsSetting(x *xorm.Engine) error {
 | |
| 	type User struct {
 | |
| 		ID                  int64 `xorm:"pk autoincr"`
 | |
| 		EnableRepoUnitHints bool  `xorm:"NOT NULL DEFAULT true"`
 | |
| 	}
 | |
| 
 | |
| 	return x.Sync(&User{})
 | |
| }
 |