Skip to content

Commit

Permalink
fix: fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
chuang8511 committed Nov 1, 2024
1 parent a6f43f4 commit 778ca3d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/db/migration/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000029"
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000031"
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000032"
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000033"
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000034"
"github.com/instill-ai/pipeline-backend/pkg/db/migration/convert/convert000036"
"github.com/instill-ai/pipeline-backend/pkg/external"
Expand Down Expand Up @@ -78,6 +79,8 @@ func Migrate(version uint) error {
m = &convert000031.SlackSetupConverter{Basic: bc}
case 32:
m = &convert000032.ConvertToWeb{Basic: bc}
case 33:
m = &convert000033.ConvertWebFields{Basic: bc}
case 34:
m = &convert000034.RenameHTTPComponent{Basic: bc}
case 36:
Expand Down

0 comments on commit 778ca3d

Please sign in to comment.