namespace Galaeth.Core.Infrastructure; /// /// Database migration process. /// public interface IDatabaseMigrator { /// /// Run database migrations. /// /// The directory where migrations are found. Task MigrateDatabaseAsync(string migrationsPath = "Migrations"); }