mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +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>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package v1_15
 | 
						|
 | 
						|
import (
 | 
						|
	"forgejo.org/modules/timeutil"
 | 
						|
 | 
						|
	"xorm.io/xorm"
 | 
						|
)
 | 
						|
 | 
						|
func CreateProtectedTagTable(x *xorm.Engine) error {
 | 
						|
	type ProtectedTag struct {
 | 
						|
		ID               int64 `xorm:"pk autoincr"`
 | 
						|
		RepoID           int64
 | 
						|
		NamePattern      string
 | 
						|
		AllowlistUserIDs []int64 `xorm:"JSON TEXT"`
 | 
						|
		AllowlistTeamIDs []int64 `xorm:"JSON TEXT"`
 | 
						|
 | 
						|
		CreatedUnix timeutil.TimeStamp `xorm:"created"`
 | 
						|
		UpdatedUnix timeutil.TimeStamp `xorm:"updated"`
 | 
						|
	}
 | 
						|
 | 
						|
	return x.Sync(new(ProtectedTag))
 | 
						|
}
 |