fix: update funnel migration number

Signed-off-by: Shivanshu Raj Shrivastava <shivanshu1333@gmail.com>
This commit is contained in:
Shivanshu Raj Shrivastava 2025-05-22 17:14:36 +05:30
parent 77b330cfe9
commit 22fdeb1381
No known key found for this signature in database
GPG Key ID: D34D26C62AC3E9AE

View File

@ -80,6 +80,11 @@ func (migration *addTraceFunnels) Up(ctx context.Context, db *bun.DB) error {
return fmt.Errorf("failed to create trace_funnel table: %v", err)
}
err = tx.Commit()
if err != nil {
return err
}
return nil
}