mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
296f1c3c71
* fix: smaller outage on events migration first part * fix: fill old events with sequence * fix: migration add transactions * fix: mig * rename mig * replace migration with setup step * regenerate mock * add step 20 to config * log * simplify step * limit 1000 * limit 500
29 lines
307 B
Go
29 lines
307 B
Go
package domain
|
|
|
|
type Step int
|
|
|
|
const (
|
|
Step1 Step = iota + 1
|
|
Step2
|
|
Step3
|
|
Step4
|
|
Step5
|
|
Step6
|
|
Step7
|
|
Step8
|
|
Step9
|
|
Step10
|
|
Step11
|
|
Step12
|
|
Step13
|
|
Step14
|
|
Step15
|
|
Step16
|
|
Step17
|
|
Step18
|
|
Step19
|
|
Step20
|
|
//StepCount marks the the length of possible steps (StepCount-1 == last possible step)
|
|
StepCount
|
|
)
|