fix: ApplyMigration0010 reads correct migration file (0024_inbox_payload_hash_compatibility)
- Fixed: ApplyMigration0010 was reading 0022 twice (duplicate) - Correct: Now reads 0024_inbox_payload_hash_compatibility.sql - Impact: Enables proper Migration 0010 test execution - Follows AGENTS.md v16.0: Necessity-driven (only fix explicit bugs) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -563,7 +563,7 @@ public sealed class DbUpMigrationTests : IAsyncLifetime
|
||||
{
|
||||
await using var connection = await _dataSource.OpenConnectionAsync();
|
||||
await using var cmd = connection.CreateCommand();
|
||||
cmd.CommandText = File.ReadAllText(Path.Combine(AppContext.BaseDirectory, "migrations", "0022_model_operations_execution_schema.sql"));
|
||||
cmd.CommandText = File.ReadAllText(Path.Combine(AppContext.BaseDirectory, "migrations", "0024_inbox_payload_hash_compatibility.sql"));
|
||||
await cmd.ExecuteNonQueryAsync();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user