mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
14 lines
380 B
C#
14 lines
380 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BTCPayServer.Data;
|
|
|
|
public abstract class MigrationBase<TDbContext>(string migrationId)
|
|
where TDbContext : DbContext
|
|
{
|
|
public string MigrationId { get; } = migrationId;
|
|
|
|
public abstract Task MigrateAsync(TDbContext dbContext, CancellationToken cancellationToken);
|
|
}
|