feat: implement migration tracking and history management for PostgreSQL

This commit is contained in:
2026-05-04 12:47:12 -04:00
parent e67c191843
commit 4ccd84342b
12 changed files with 191 additions and 192 deletions
@@ -113,7 +113,6 @@ public sealed class BulkOperationTransaction : IAsyncDisposable, IDisposable
_transaction?.Dispose();
_transaction = null;
_disposed = true;
GC.SuppressFinalize(this);
}
/// <summary>
@@ -134,7 +133,6 @@ public sealed class BulkOperationTransaction : IAsyncDisposable, IDisposable
_transaction = null;
_disposed = true;
GC.SuppressFinalize(this);
}
}