// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.Core.Infrastructure; /// /// Database migration process. /// public interface IDatabaseMigrator { /// /// Run database migrations. /// /// The directory where migrations are found. Task MigrateDatabaseAsync(string migrationsPath = "Migrations"); }