mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	(cherry picked from commit86b26436af) (cherry picked from commit479cba59ac) (cherry picked from commit4765f9a889) (cherry picked from commitaf771410bf) (cherry picked from commitd1ea9305d8) (cherry picked from commitf77e1bb7ab)
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package forgejo_v1_20 //nolint:revive
 | |
| 
 | |
| import (
 | |
| 	"xorm.io/xorm"
 | |
| )
 | |
| 
 | |
| func CreateSemVerTable(x *xorm.Engine) error {
 | |
| 	type ForgejoSemVer struct {
 | |
| 		Version string
 | |
| 	}
 | |
| 
 | |
| 	return x.Sync(new(ForgejoSemVer))
 | |
| }
 |