astral-api/Astral.Core/Infrastructure/IDatabaseMigrator.cs

18 lines
528 B
C#
Raw Normal View History

2024-12-11 21:36:30 +01:00
// <copyright file="IDatabaseMigrator.cs" company="alveus.dev">
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
// </copyright>
namespace Astral.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");
}