galaeth-draft/Galaeth.Core/Infrastructure/IDatabaseMigrator.cs

14 lines
366 B
C#
Raw Permalink Normal View History

2024-11-17 10:31:01 +01:00
namespace Galaeth.Core.Infrastructure;
/// <summary>
/// Database migration process.
/// </summary>
public interface IDatabaseMigrator
{
/// <summary>
/// Run database migrations.
/// </summary>
/// <param name="migrationsPath">The directory where migrations are found.</param>
Task MigrateDatabaseAsync(string migrationsPath = "Migrations");
}