github.com/yuukihogo/migrate@v3.0.0+incompatible/migrate/direction/direction.go (about) 1 // Deprecated: package direction is deprecated. 2 // Will be removed soon. 3 package direction 4 5 type Direction int 6 7 const ( 8 Up Direction = +1 9 Down = -1 10 )