We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a43db4f commit f1cddd9Copy full SHA for f1cddd9
src/Umbraco.Infrastructure/Migrations/Upgrade/V_14_0_0/AddGuidsToUserGroups.cs
@@ -23,6 +23,7 @@ protected override void Migrate()
23
// If the new column already exists we'll do nothing.
24
if (ColumnExists(Constants.DatabaseSchema.Tables.UserGroup, NewColumnName))
25
{
26
+ Context.Complete();
27
return;
28
}
29
@@ -31,10 +32,12 @@ protected override void Migrate()
31
32
if (DatabaseType != DatabaseType.SQLite)
33
34
MigrateSqlServer();
35
36
37
38
39
MigrateSqlite();
40
41
42
43
private void MigrateSqlServer()
0 commit comments