Skip to content

Commit f1cddd9

Browse files
committed
Missing context complete
(cherry picked from commit fdb9cfa)
1 parent a43db4f commit f1cddd9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Umbraco.Infrastructure/Migrations/Upgrade/V_14_0_0/AddGuidsToUserGroups.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ protected override void Migrate()
2323
// If the new column already exists we'll do nothing.
2424
if (ColumnExists(Constants.DatabaseSchema.Tables.UserGroup, NewColumnName))
2525
{
26+
Context.Complete();
2627
return;
2728
}
2829

@@ -31,10 +32,12 @@ protected override void Migrate()
3132
if (DatabaseType != DatabaseType.SQLite)
3233
{
3334
MigrateSqlServer();
35+
Context.Complete();
3436
return;
3537
}
3638

3739
MigrateSqlite();
40+
Context.Complete();
3841
}
3942

4043
private void MigrateSqlServer()

0 commit comments

Comments
 (0)