Skip to content

Commit

Permalink
fix: cyclic import
Browse files Browse the repository at this point in the history
  • Loading branch information
seitau committed Jan 31, 2022
1 parent 218638b commit 316436f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions migrations/internal/m20211220/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package m20211220
import (
"time"

"github.com/flow-hydraulics/flow-wallet-api/jobs"
"github.com/google/uuid"
"gorm.io/datatypes"
"gorm.io/gorm"
Expand All @@ -16,7 +15,7 @@ const ID = "20211220"
type Job struct {
ID uuid.UUID `gorm:"column:id;primary_key;type:uuid;"`
Type string `gorm:"column:type"`
State jobs.State `gorm:"column:state;default:INIT"`
State string `gorm:"column:state;default:INIT"`
Error string `gorm:"column:error"`
Result string `gorm:"column:result"`
TransactionID string `gorm:"column:transaction_id"`
Expand Down

0 comments on commit 316436f

Please sign in to comment.