| 1 | namespace AgentForge.Abstractions; |
| 2 | |
| 3 | /// <summary>Plugin-orchestrated WitDB schema steps (ADR-0014 Phase B).</summary> |
| 4 | public interface IForgeMigrationContext |
| 5 | { |
| 6 | bool TableExists(string table); |
| 7 | |
| 8 | void TryAddColumn(string table, string column, string definition); |
| 9 | |
| 10 | void ExecuteSql(string sql); |
| 11 | |
| 12 | void ApplyPendingMigrations(); |
| 13 | } |
| 14 |