mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
8 lines
194 B
C#
8 lines
194 B
C#
namespace Bit.Core.Utilities;
|
|
|
|
public interface IDbMigrator
|
|
{
|
|
bool MigrateDatabase(bool enableLogging = true,
|
|
CancellationToken cancellationToken = default(CancellationToken));
|
|
}
|