Files
Umbraco-CMS/src/Umbraco.Infrastructure/Migrations/IEFCoreMigrationExecutor.cs
Bjarke Berg 2973f9fe5a Add OpenIddict tables to database (#14449)
* Added migrations to install EF Core OpenIddict tables

* Handle Install of ef core data (Needs to be outside of transaction

* Cleanup and renaming, as these things will be reused for more than openiddict in the future

* Cleanup

* Extract db context setup

* Minor cleanup

---------

Co-authored-by: Nikolaj <nikolajlauridsen@protonmail.ch>
2023-06-26 13:50:57 +02:00

11 lines
256 B
C#

using Umbraco.Cms.Persistence.EFCore.Migrations;
namespace Umbraco.Cms.Infrastructure.Migrations;
public interface IEFCoreMigrationExecutor
{
Task ExecuteSingleMigrationAsync(EFCoreMigration efCoreMigration);
Task ExecuteAllMigrationsAsync();
}