* Added explicit migration for AddOpenIddict and * Renamed the UmbracoOpenIddictDbContextModelSnapshot to UmbracoDbContextModelSnapshot to align with the name of the DBContext * Added comment to UmbracoDbContext about it is for internal use * Only execute all migrations at initial install time --------- Co-authored-by: kjac <kja@umbraco.dk>
8 lines
131 B
C#
8 lines
131 B
C#
namespace Umbraco.Cms.Persistence.EFCore.Migrations;
|
|
|
|
public enum EFCoreMigration
|
|
{
|
|
InitialCreate = 0,
|
|
AddOpenIddict = 1
|
|
}
|