mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package v1_21 //nolint
 | 
						|
import (
 | 
						|
	"forgejo.org/modules/timeutil"
 | 
						|
 | 
						|
	"xorm.io/xorm"
 | 
						|
)
 | 
						|
 | 
						|
func AddActionScheduleTable(x *xorm.Engine) error {
 | 
						|
	type ActionSchedule struct {
 | 
						|
		ID            int64
 | 
						|
		Title         string
 | 
						|
		Specs         []string
 | 
						|
		RepoID        int64 `xorm:"index"`
 | 
						|
		OwnerID       int64 `xorm:"index"`
 | 
						|
		WorkflowID    string
 | 
						|
		TriggerUserID int64
 | 
						|
		Ref           string
 | 
						|
		CommitSHA     string
 | 
						|
		Event         string
 | 
						|
		EventPayload  string `xorm:"LONGTEXT"`
 | 
						|
		Content       []byte
 | 
						|
		Created       timeutil.TimeStamp `xorm:"created"`
 | 
						|
		Updated       timeutil.TimeStamp `xorm:"updated"`
 | 
						|
	}
 | 
						|
 | 
						|
	type ActionScheduleSpec struct {
 | 
						|
		ID         int64
 | 
						|
		RepoID     int64 `xorm:"index"`
 | 
						|
		ScheduleID int64 `xorm:"index"`
 | 
						|
		Spec       string
 | 
						|
		Next       timeutil.TimeStamp `xorm:"index"`
 | 
						|
		Prev       timeutil.TimeStamp
 | 
						|
 | 
						|
		Created timeutil.TimeStamp `xorm:"created"`
 | 
						|
		Updated timeutil.TimeStamp `xorm:"updated"`
 | 
						|
	}
 | 
						|
 | 
						|
	return x.Sync(
 | 
						|
		new(ActionSchedule),
 | 
						|
		new(ActionScheduleSpec),
 | 
						|
	)
 | 
						|
}
 |