aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/DatabaseManagement/IDatabaseCustomMigrator.cs
blob: 5eb43b92f48e265812de334e855a56de281be6ab (plain)
1
2
3
4
5
6
7
8
9
10
using System.Threading;
using System.Threading.Tasks;

namespace Timeline.Services.DatabaseManagement
{
    public interface IDatabaseCustomMigrator
    {
        Task MigrateAsync(CancellationToken cancellationToken = default);
    }
}