Skip to content

Commit

Permalink
fix: dirty fix for orchestration upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyrag authored and flemzord committed Jul 19, 2023
1 parent fc551af commit 9b14075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/orchestration/internal/storage/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func registerMigrations(migrator *migrations.Migrator) {
migrations.Migration{
Up: func(tx bun.Tx) error {
if _, err := tx.Exec(`
alter table "workflows" add column deleted_at timestamp default null;
alter table "workflows" add column if not exists deleted_at timestamp default null;
`); err != nil {
return err
}
Expand Down

1 comment on commit 9b14075

@vercel
Copy link

@vercel vercel bot commented on 9b14075 Jul 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.