mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Forgejo Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package forgejo_migrations //nolint:revive
 | 
						|
 | 
						|
import "xorm.io/xorm"
 | 
						|
 | 
						|
func AddNormalizedFederatedURIToUser(x *xorm.Engine) error {
 | 
						|
	type User struct {
 | 
						|
		ID                     int64 `xorm:"pk autoincr"`
 | 
						|
		NormalizedFederatedURI string
 | 
						|
	}
 | 
						|
	return x.Sync(&User{})
 | 
						|
}
 |