mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package forgejo_migrations
 | |
| 
 | |
| import "xorm.io/xorm"
 | |
| 
 | |
| func AddSSHKeypairToPushMirror(x *xorm.Engine) error {
 | |
| 	type PushMirror struct {
 | |
| 		ID         int64  `xorm:"pk autoincr"`
 | |
| 		PublicKey  string `xorm:"VARCHAR(100)"`
 | |
| 		PrivateKey []byte `xorm:"BLOB"`
 | |
| 	}
 | |
| 
 | |
| 	return x.Sync(&PushMirror{})
 | |
| }
 |